Skip to content

Am0rphous/nessus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Cracked Nessus in Docker


Work and creds goes to elliot-bia. Twitter: Elliot58616851

Do not use it for illegal purposes. If any infringement, please create a new issue with the title "Infringement".

Setup

docker pull ramisec/nessus
docker run -d --name=nessus -p 8834:8834 ramisec/nessus
docker exec -it nessus /bin/bash /nessus/update.sh

Migration

If you need to migrate from old versions to new, use the following commands:

#Crate dir
mkdir ~/nessus_data

#Stop container
docker stop nessus

#copy data
docker cp nessus:/opt/nessus/var/nessus/ ~/nessus_data

#delete old container
docker rm nessus

#run new container
docker run -itd --name=nessus -v ~/nessus_data/nessus/:/opt/nessus/var/nessus/ -p 8834:8834 ramisec/nessus

#update plugins
docker exec -it nessus /bin/bash /nessus/update.sh

Username & Password

Username: admin

Reset password by running docker exec -it nessus /opt/nessus/sbin/nessuscli chpasswd

Example output:

Login to change: admin 
New password: Password123!
New password (again): Password123!
Password changed for admin

Now open your browser to https://localhost:8834

Releases

No releases published

Packages

No packages published