
Python के लिए विशेषाधिकार वृद्धि हेतु Python स्क्रिप्ट
Linux के लिए विशेषाधिकार वृद्धि (privilege escalation) हेतु Python स्क्रिप्ट
मूल लेखक: Mike Czumak (T_v3rn1x) -- @SecuritySift.
--fast विकल्प .sh फ़ाइलों में पासवर्ड की जाँच नहीं करता है।
Kali (या अन्य Linux) पर pyinstaller स्थापित करें:
$ pip install pyinstaller
$ pip3 install pyinstaller
फिर स्क्रिप्ट को संकलित करें:
$ python -m PyInstaller --onefile linuxprivchecker.py
$ python3 -m PyInstaller --onefile linuxprivchecker3.py
स्टैंडअलोन ELF ./dist/ में होगा
यदि आपको SUID और cronjob सूचियों में सहायता चाहिए तो इस रिपॉजिटरी को देखें: https://github.com/cervoise/suid-bin/ या यह प्रोजेक्ट: https://github.com/TH3xACE/SUDO_KILLER।
यदि आपको पासवर्ड खोजने की आवश्यकता है तो आप https://github.com/AlessandroZ/LaZagne या https://github.com/0xmitsurugi/gimmecredz पर देख सकते हैं।