Skip to content
KitploitKITPLOIT
ToolsBlog
Einreichen
ToolsBlog
Einreichen

Hacking-, PenTest- und Cybersicherheits-Tools für Ihr Sicherheitsarsenal!

Kitploit ist ein Verzeichnis von Hacking-, Cybersicherheits- und Pentesting-Tools. Entdecken Sie die neuesten Projekt-Updates, um Schwachstellen zu finden, Systeme zu analysieren, Tests zu automatisieren und Ihre Sicherheit zu stärken.

··Feeds·Kontakt·Datenschutz·© 2026 Kitploit

Tool-Verzeichnis

Kategorien

Alle Kategorien anzeigen
Loading categories
sccm_sql_backdoor — Nutzen Sie CVE-2024-43468 und CVE-2025-59213 aus, um eine kontrollierte Hintertür in die SQL-Stored-Prozedur des SCCM Management Point zu implantieren, wodurch Remote-SQL-Ausführung über HTTP ermöglicht wird. | Kitploit
Tools/GitHubGitHub/synacktiv/sccm_sql_backdoor
PersistenzmechanismenExploitationPost-ExploitationPenetrationstestsCommand and ControlRed Teaming
GitHubsynacktiv/sccm_sql_backdoor

sccm_sql_backdoor

Nutzen Sie CVE-2024-43468 und CVE-2025-59213 aus, um eine kontrollierte Hintertür in die SQL-Stored-Prozedur des SCCM Management Point zu implantieren, wodurch Remote-SQL-Ausführung über HTTP ermöglicht wird.

Repository anzeigen
3vor 1 MonatNoch nicht geprüft

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
Teilen

sccm_sql_backdoor

Ein Proof-of-Concept-Tool, das eine kontrollierte Hintertür in eine gespeicherte Prozedur des Management Points einpflanzt und so eine indirekte SQL-Ausführung über einen legitimen MP-HTTP-Dienst ermöglicht.

Installation

Sie können das Tool installieren, indem Sie das Repository klonen und die Abhängigkeiten installieren.

root@kitploit:~
$ git clone --recurse-submodules https://github.com/synacktiv/sccm_sql_backdoor
$ cd sccm_sql_backdoor
$ python3 -m venv .venv && source .venv/bin/activate
$ pip install -e .

Verwendung

root@kitploit:~
$ python3 sccm_sql_backdoor.py -h 
usage: sccm_sql_backdoor.py [-h] -t TARGET [-debug] {CVE-2024-43468,CVE-2025-59213,revert} ...

SCCM SQL Backdoor

positional arguments:
  {CVE-2024-43468,CVE-2025-59213,revert}
    CVE-2024-43468      Use CVE-2024-43468 to inject the SPO backdoor
    CVE-2025-59213      Use CVE-2025-59213 to inject the SPO backdoor
    revert              Revert the changes to the original SPO

options:
  -h, --help            show this help message and exit
  -t, --target TARGET   Target (http://sccm-mp.local/)
  -debug                Turn DEBUG output ON

CVE-2025-59213

root@kitploit:~
$ python3 sccm_sql_backdoor.py CVE-2025-59213 -h                
usage: sccm_sql_backdoor.py CVE-2025-59213 [-h] [-a] [-m MARKER] [-k KEY] [-c CERT] [-sk SIGKEY] [-v] -cn CLIENT_NAME [-rs REGISTRATION_SLEEP]

options:
  -h, --help            show this help message and exit
  -a, --altauth         Use the MP's alternate authentication endpoint (Default: False)
  -m, --marker MARKER   Override marker to trigger the backdoor (Default: ABC)
  -k, --key KEY         Private key file for mTLS
  -c, --cert CERT       Certificate file
  -sk, --sigkey SIGKEY  SMS signature key
  -v, --verbose         Verbose output, print requests
  -cn, --client-name CLIENT_NAME
                        Name of the client that will be created in SCCM
  -rs, --registration-sleep REGISTRATION_SLEEP
                        The amount of time, in seconds, that should be waited after registrating a new device (2 seconds by default)

CVE-2024-43468

root@kitploit:~
$ python3 sccm_sql_backdoor.py CVE-2024-43468 -h                  
usage: sccm_sql_backdoor.py CVE-2024-43468 [-h] [-a] [-m MARKER] [-k KEY] [-c CERT]

options:
  -h, --help           show this help message and exit
  -a, --altauth        Use the MP's alternate authentication endpoint (Default: False)
  -m, --marker MARKER  Override marker to trigger the backdoor (Default: ABC)
  -k, --key KEY        Private key file for mTLS
  -c, --cert CERT      Certificate file

revert

root@kitploit:~
$ python3 sccm_sql_backdoor.py revert -h         
usage: sccm_sql_backdoor.py revert [-h] [-m MARKER]

options:
  -h, --help           show this help message and exit
  -a, --altauth        Use the MP's alternate authentication endpoint (Default: False)
  -m, --marker MARKER  Override marker to trigger the backdoor (Default: ABC)
  -k, --key KEY        Private key file for mTLS
  -c, --cert CERT      Certificate file
Tool herunterladen