leebaird / discover

Custom bash scripts used to automate various penetration testing tasks including recon, scanning, enumeration, and malicious payload creation using Metasploit. For use with Kali Linux.
MIT License
3.39k stars 820 forks source link

result page error #197

Closed Gazel1 closed 1 year ago

Gazel1 commented 1 year ago

The results page does not open

[ ayuda

Gazel1 commented 1 year ago

I run discover as sudo too

Gray-0men commented 1 year ago

Make sure whatever HTTP service you're using is also running as sudo since the data was written to disk with sudo permissions. I usually just used the python -m http.server 80 command to get the job done to look at the data

leebaird commented 1 year ago

The issue is Kali won't let you open a local webpage as root.

When your scan completes, do the following as root: mv /root/data/acme.org /home/kali/ chown -R kali:kali /home/kali/acme.org Open a new tab in Terminal. open acme.org/index.htm &

I may add this functionality soon.