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-2026-7028-SQLI — Proof-of-concept exploit for SQL injection in CodeAstro Online Job Portal allowing authenticated deletion of all job records via crafted GET request. | Kitploit
Tools/GitHubGitHub/xmyronn/cve-2026-7028-sqli
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration Testing
GitHubxmyronn/cve-2026-7028-sqli

CVE-2026-7028-SQLI

Proof-of-concept exploit for SQL injection in CodeAstro Online Job Portal allowing authenticated deletion of all job records via crafted GET request.

View Repository
4 months 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

CodeAstro-Online-Job-Portal-SQLi-Delete-All

Details

  • Vendor: CodeAstro
  • Product: Online Job Portal Project in PHP MySQL
  • Version: 1.0
  • Vulnerability Type: SQL Injection
  • CWE: CWE-89
  • Affected Endpoint: /admin/jobs-admins/delete-jobs.php
  • Parameter: id (GET)
  • Impact: Allows deletion of all job records in the database

Description

A SQL injection vulnerability was identified in the admin job deletion feature of the CodeAstro Online Job Portal.

The application uses the id parameter directly in the SQL query without proper validation or parameter binding. Because of this, an attacker can modify the query by injecting malicious input.

By exploiting this issue, an authenticated user can alter the intended query logic and delete all job records from the database instead of just a single entry.

Proof of Concept

Step 1: Login as Admin

Login to the admin panel.

Step 2: Navigate to Jobs Section

Go to: /admin/jobs-admins/show-jobs.php Screenshot 2026-04-06 205206

Verify multiple job entries exist.

Step 3: Exploit the Vulnerability

Send the following request:

GET /admin/jobs-admins/delete-jobs.php?id=48' OR '1'='1 HTTP/1.1
Host: target Screenshot 2026-04-06 205239

Step 4: Observe the Result

All job entries are deleted from the database instead of only one. Screenshot 2026-04-06 205252

Payload

' OR '1'='1

Impact

An authenticated attacker can delete all job postings in the system, leading to complete data loss and disruption of service.

Reference

https://codeastro.com/online-job-portal-project-in-php-mysql-with-source-code/

Download Tool