-
Notifications
You must be signed in to change notification settings - Fork 56
Troubleshooting
Rupert Edwards edited this page Sep 26, 2020
·
76 revisions
Phase | Detect | Deny | Disrupt | Degrade | Deceive | Destroy |
---|---|---|---|---|---|---|
Reconnaissance | Web Analytics | Firewall ACL | ||||
Weaponization | NIDS | NIPS | ||||
Delivery | Vigilant User | Proxy Filter | In-line AV | Queuing | ||
Exploitation | HIDS | Patch | DEP | |||
Installation | HIDS | "chroot" jail | AV | |||
Command & Control | NIDS | Firewall ACL | NIPS | Tarpit | DNS Redirect | |
Actions on Objectives | Audit Log | Quality of Service | Honeypot |
Expand for troubleshooting
Expand for OpenVas
[Fixed] OpenVAS – sudo: openvas-setup: command not found.
The Fix: Kali Linux 2020.2
OpenVAS is changing the name, the new command gvm will replace all openvas commands.
Since Kali Rolling updated repository, we now should use gvm instead of openvas commands.
sudo apt install gvm -y
sudo gvm-setup
Other gvm commands:
sudo gvm-feed-update
sudo gvm-start
Expand for Veil-Evasion
[Fixed]:
[*] Check your path /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
[!] Can't find veil-evasion, Permission denied Aborting!
root@kali:~/killchain#
The Fix:
Method One: Destructive
Change the tool name from veil-evasion
in the killchain.py
file to veil
.
sed -i 's/veil-evasion/veil/' killchain.py
Method Two: Nondestructive
Create the file /usr/local/bin/veil-evasion
and make it executable.
From the command-line copy/paste
echo '#!/bin/bash' > /usr/local/bin/veil-evasion
echo 'cd /usr/share/veil/ && ./Veil.py "$@"' >> /usr/local/bin/veil-evasion
Change mode: Copy/paste
cd /usr/local/bin && chmod +x veil-evasion
- Veil Evasion is no longer supported, use Veil 3.0!