Достигнут лимит просмотров для гостей
  • Вы набрали максимальное разрешенное количество просмотров для гостей
  • Пожалуйста, зарегистрируйтесь ниже, чтобы снять это ограничение
  • [ Регистрация ]Открытая и бесплатная
  • Tg admin@ALPHV_Admin (обязательно подтверждение в ЛС форума)

Nessus Professional for Linux 10.5.4

Guys
Для просмотра ссылки Войди или Зарегистрируйся
{"success":false,"statusCode":404,"error":"Not Found","message":"Download Not Found","trace":{"correlationId":"3593cec1-fbc9-44d8-be3d-bd87a3a3460a","traceId":"Root=1-6466ba47-361e9635132fd2405d29112d","rayId":"7c9803db7aaf3ac2-IAD"}}

?
 
The script works just with updating the version number to the current version of nessus and there are also kiddie-friendly installers which have been shared in the pwn3rzs-chat channel.
 
Do any of you have the link to the correct version? and how do i become a VIP?
 
Nessus is publicly available from their site.

One the other topic, I'm going to remove vip it was a mistake to have such a thing because it has been dilute of it's meaning by other forums and venue where such a thing is paid for or earned by things without substance.
 
This package is broke! update it !!

Problem: Nessus server unreachable? Trying again..

Problem: Nessus server unreachable? Trying again..
 
The package is not broken, just visit the Для просмотра ссылки Войди или Зарегистрируйся
I have another problem: the username (admin), the password (cyberarsenal) are wrong (i get invalid credentials error). Do I need to change them from some config file?

EDIT:
# /opt/nessus/sbin/nessuscli adduser 1 ⨯
Login: USERNAME
Login password:
Login password (again):

and then you just login.
 
Hello,
is there an easy way to update the plugins via script ( not the complete setup)?
luke,
 
yes, use the nessuscli update command
"nessuscli update --plugins-only" forces updates for plugins only.
 
Nessus-10.5.2-ubuntu1404_amd64.deb
(Script "edit" n New Nessus)

#!/bin/bash
if [[ $(id -u) -ne 0 ]] ; then echo "Please run as root" ; exit 1 ; fi
echo //==============================================================
echo Nessus 10.5.2 DOWNLOAD, INSTALL, and CRACK -Zen 20230123
echo special thanks to John Doe for showing this works on Debian
echo //==============================================================
echo " o stopping old nessusd in case there is one!"
/bin/systemctl stop nessusd.service &>/dev/null


echo " o making sure we have prerequisites.."
apt update &>/dev/null
apt -y install curl dpkg expect &>/dev/null
{ if [ ! -f Nessus-10.5.2-ubuntu1404_amd64.deb ]; then
echo " o downloading Nessus.."
curl -A Mozilla --request GET \
--url 'Для просмотра ссылки Войди или Зарегистрируйся
--output 'Nessus-10.5.2-ubuntu1404_amd64.deb' &>/dev/null
#--url 'Для просмотра ссылки Войди или Зарегистрируйся' \
else
echo " o nessus download exiting."
echo " o installing Nessus.."
dpkg -i Nessus-10.4.2-ubuntu1404_amd64.deb &>/dev/null
#exit 0
fi }

# look I tried to just make changes and run but it doesnt work. if you can optimize
# what im doing here, let me know. but this was it for me, it had to be run once :/
echo " o starting service once FIRST TIME INITIALIZATION (we have to do this)"
/bin/systemctl start nessusd.service &>/dev/null
echo " o let's allow Nessus time to initalize - we'll give it like 20 seconds..."
sleep 20
echo " o stopping the nessus service.."
/bin/systemctl stop nessusd.service &>/dev/null
echo " o changing nessus settings to Zen preferences (freedom fighter mode)"
echo " listen port: 11127"
/opt/nessus/sbin/nessuscli fix --set xmlrpc_listen_port=11127 &>/dev/null
echo " theme: dark"
/opt/nessus/sbin/nessuscli fix --set ui_theme=dark &>/dev/null
echo " safe checks: off"
/opt/nessus/sbin/nessuscli fix --set safe_checks=false &>/dev/null
echo " logs: performance"
/opt/nessus/sbin/nessuscli fix --set backend_log_level=performance &>/dev/null
echo " updates: off"
/opt/nessus/sbin/nessuscli fix --set auto_update=false &>/dev/null
/opt/nessus/sbin/nessuscli fix --set auto_update_ui=false &>/dev/null
/opt/nessus/sbin/nessuscli fix --set disable_core_updates=true &>/dev/null
echo " telemetry: off"
/opt/nessus/sbin/nessuscli fix --set report_crashes=false &>/dev/null
/opt/nessus/sbin/nessuscli fix --set send_telemetry=false &>/dev/null
echo " o adding a user you can change this later (u:admin,p:cyberarsenal)"
cat > expect.tmp <<'EOF'
spawn /opt/nessus/sbin/nessuscli adduser admin
expect "Login password:"
send "cyberarsenal\r"
expect "Login password (again):"
send "cyberarsenal\r"
expect "(can upload plugins, etc.)? (y/n)"
send "y\r"
expect "*(the user can have an empty rules set)"
send "\r"
expect "Is that ok*"
send "y\r"
expect eof
EOF
expect -f expect.tmp &>/dev/null
rm -rf expect.tmp &>/dev/null
{ if [ ! -f all-2.0.tar.gz ]; then
echo " o downloading new plugins.."
curl -A Mozilla -o all-2.0.tar.gz \
--url 'Для просмотра ссылки Войди или Зарегистрируйся' &>/dev/null
else
echo " o plugins all-2.0.tar.gz download exiting."
echo " o installing plugins.."
/opt/nessus/sbin/nessuscli update all-2.0.tar.gz &>/dev/null
#sexit 0
fi }

echo " o fetching version number.."
# i have seen this not be correct for the download. hrm. but, it works for me.
vernum=$(curl Для просмотра ссылки Войди или Зарегистрируйся 2> /dev/null)
echo " o building plugin feed..."

cat > /opt/nessus/var/nessus/plugin_feed_info.inc <<'EOF'
# Error...error...error
PLUGIN_SET = "${vernum}";
PLUGIN_FEED = "ProfessionalFeed (Direct)";
PLUGIN_FEED_TRANSPORT = "Tenable Network Security Lightning";
EOF
echo " o protecting files.."
chattr -i /opt/nessus/lib/nessus/plugins/plugin_feed_info.inc &>/dev/null
cp /opt/nessus/var/nessus/plugin_feed_info.inc /opt/nessus/lib/nessus/plugins/plugin_feed_info.inc &>/dev/null
cp /opt/nessus/var/nessus/plugin_feed_info.inc /opt/nessus/var/nessus/.plugin_feed_info.inc &>/dev/null
echo " o let's set everything immutable..."
chattr +i /opt/nessus/var/nessus/plugin_feed_info.inc /opt/nessus/var/nessus/.plugin_feed_info.inc &>/dev/null

chattr +i -R /opt/nessus/lib/nessus/plugins &>/dev/null
echo " o but unsetting key files.."
chattr -i /opt/nessus/lib/nessus/plugins/plugin_feed_info.inc &>/dev/null
chattr -i /opt/nessus/lib/nessus/plugins &>/dev/null
echo " o starting service.."
/bin/systemctl start nessusd.service &>/dev/null
echo " o Let's sleep for another 20 seconds to let the server have time to start!"
sleep 20
echo " o Monitoring Nessus progress. Following line updates every 10 seconds until 100%"
zen=0
while [ $zen -ne 100 ]
do
statline=curl -sL -k [URL='https://localhost:11127/server/status%7Cawk']https://localhost:11127/server/status|awk[/URL] -F"," -v k="engine_status" '{ gsub(/{|}/,""); for(i=1;i<=NF;i++) { if ( $i ~ k ){printf $i} } }'
if [[ $statline != "engine_status" ]]; then echo -ne "\n Problem: Nessus server unreachable? Trying again..\n"; fi
echo -ne "\r $statline"
if [[ $statline == "100" ]]; then zen=100; else sleep 10; fi
done
echo -ne '\n o Done!\n'
echo
echo " Access your Nessus: Для просмотра ссылки Войди или Зарегистрируйся (or your VPS IP)"
echo " username: admin"
echo " password: cyberarsenal"
echo " you can change this any time"
echo
read -p "Press enter to continue"
 
NOTE: in the above post since it isn't in a code box the long urls will show on the screen with "..." in the middle so if you are copying and pasting be sure to fix the urls (right click and copy the url, paste it in your script correctly.) Also I didn't look too closely (though at a glance it looks fine) and generally do plan to set up a more robust system for helping our friends install the latest Nessus on their platforms.
 
on kali fail



┌──(root㉿123)-[/home/dev/Desktop/Nessus]
└─# curl --request GET \
--url 'Для просмотра ссылки Войди или Зарегистрируйся' \
--output 'Nessus-10.5.2-ubuntu1404_amd64.deb'
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 62.2M 0 62.2M 0 0 11.7M 0 --:--:-- 0:00:05 --:--:-- 12.9M

┌──(root㉿x)-[/home/dev/Desktop/Nessus]
└─# wget -O - Для просмотра ссылки Войди или Зарегистрируйся | bash
--2023-06-09 02:38:40-- Для просмотра ссылки Войди или Зарегистрируйся
Resolving cyberarsenal.org (cyberarsenal.org)... 2606:4700:3035::6815:27cf, 2606:4700:3036::ac43:947d, 172.67.148.125, ...
Connecting to cyberarsenal.org (cyberarsenal.org)|2606:4700:3035::6815:27cf|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 5260 (5.1K) [text/x-sh]
Saving to: ‘STDOUT’

- 100%[====================================>] 5.14K --.-KB/s in 0s

2023-06-09 02:38:41 (34.3 MB/s) - written to stdout [5260/5260]

//==============================================================
Nessus 10.4.2 DOWNLOAD, INSTALL, and CRACK -Zen 20230123
special thanks to John Doe for showing this works on Debian
//==============================================================
o making sure we have prerequisites..
o stopping old nessusd in case there is one!
o downloading Nessus..
o installing Nessus..
o starting service once FIRST TIME INITIALIZATION (we have to do this)
o let's allow Nessus time to initalize - we'll give it like 20 seconds...
o stopping the nessus service..
o changing nessus settings to Zen preferences (freedom fighter mode)
listen port: 11127
theme: dark
safe checks: off
logs: performance
updates: off
telemetry: off
o adding a user you can change this later (u:admin,p:cyberarsenal)
o downloading new plugins..
o installing plugins..
o fetching version number..
o building plugin feed...
bash: line 76: /opt/nessus/var/nessus/plugin_feed_info.inc: No such file or directory
o protecting files..
o let's set everything immutable...
o but unsetting key files..
o starting service..
o Let's sleep for another 20 seconds to let the server have time to start!
o Monitoring Nessus progress. Following line updates every 10 seconds until 100%

Problem: Nessus server unreachable? Trying again..
 
It happened error and couldn't install :(
Screenshot from 2023-06-27 11-34-40.png
 
u need curl:
#apt install curl
 
it does not helps on Kali.
 
@zen Problem: Nessus server unreachable? Try Again.

Ubuntu 20.04 + update+ upgrade is full.
Curl is here

Help pls.
 
ok so... the download link is dead.
1690512209908.png

image by ductrifx

hope zen get another download link :)
 
Script is pointing to the wrong release version of Nessus. You should either modify the script to accomodate the new version, or install it all manually and then get the crack knowledge from the script.

None of us put too much effort into this, it is a batch file after all, and even so it was already ripped off several times with my credit removed so I'm disinclined to make more robust versions that detect the current version and architecture and platform and download and do it all for you - besides, fate would have it the day I do that Tenable will change the loophole and the "crack" won't work anymore anyway and it'll require a proper crack to work.
 
I got it now ;)
 
Hey zen did what you mentioned, modded the script and worked perfect also the new scan button works too, all perfect thank you :)
 
what did you edit exactly? I changed the version in the script and still not working on kali linux (
 
Activity
So far there's no one here
Сверху Снизу