├── Audio ├── AUDIO_LICENSE ├── rapshell1.mp3 └── rapshell1.wav ├── CHANGELOG ├── Cool Commands ├── Exploits ├── dirtycow32.c └── dirtycow64.c ├── Graphics └── badges │ ├── blackhat-europe-2015.svg │ ├── blackhat-europe-2016.svg │ └── blackhat-europe-2017.svg ├── Hello_Shell ├── admin │ ├── helloshell.php │ ├── index.html │ └── sql │ │ ├── index.html │ │ └── updates │ │ ├── index.html │ │ └── mysql │ │ ├── 0.0.1.sql │ │ └── index.html ├── helloshell.xml └── site │ ├── helloshell.php │ └── index.html ├── LICENSE ├── Payloads └── javascript │ ├── generic_payload.js │ ├── joomla_admin.js │ ├── joomla_backdoor.js │ ├── test_payload.js │ ├── vbulletin_legacy.js │ ├── wordpress_legacy.js │ ├── wordpress_plugin.js │ └── wordpress_theme.js ├── README.md ├── Shells ├── meterpreter │ ├── LICENSE │ └── meterpreter.php └── php-reverse-shell-1.0 │ ├── CHANGELOG │ ├── COPYING.GPL │ ├── COPYING.PHP-REVERSE-SHELL │ ├── php-reverse-shell-notify.php │ └── php-reverse-shell.php ├── js_alert.sh ├── requirements-all-libraries-used.txt ├── requirements.txt └── xsser.py /Audio/AUDIO_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Audio/AUDIO_LICENSE -------------------------------------------------------------------------------- /Audio/rapshell1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Audio/rapshell1.mp3 -------------------------------------------------------------------------------- /Audio/rapshell1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Audio/rapshell1.wav -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Cool Commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Cool Commands -------------------------------------------------------------------------------- /Exploits/dirtycow32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Exploits/dirtycow32.c -------------------------------------------------------------------------------- /Exploits/dirtycow64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Exploits/dirtycow64.c -------------------------------------------------------------------------------- /Graphics/badges/blackhat-europe-2015.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Graphics/badges/blackhat-europe-2015.svg -------------------------------------------------------------------------------- /Graphics/badges/blackhat-europe-2016.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Graphics/badges/blackhat-europe-2016.svg -------------------------------------------------------------------------------- /Graphics/badges/blackhat-europe-2017.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Graphics/badges/blackhat-europe-2017.svg -------------------------------------------------------------------------------- /Hello_Shell/admin/helloshell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Hello_Shell/admin/helloshell.php -------------------------------------------------------------------------------- /Hello_Shell/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Hello_Shell/admin/index.html -------------------------------------------------------------------------------- /Hello_Shell/admin/sql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Hello_Shell/admin/sql/index.html -------------------------------------------------------------------------------- /Hello_Shell/admin/sql/updates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Hello_Shell/admin/sql/updates/index.html -------------------------------------------------------------------------------- /Hello_Shell/admin/sql/updates/mysql/0.0.1.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hello_Shell/admin/sql/updates/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Hello_Shell/admin/sql/updates/mysql/index.html -------------------------------------------------------------------------------- /Hello_Shell/helloshell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Hello_Shell/helloshell.xml -------------------------------------------------------------------------------- /Hello_Shell/site/helloshell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Hello_Shell/site/helloshell.php -------------------------------------------------------------------------------- /Hello_Shell/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Hello_Shell/site/index.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/LICENSE -------------------------------------------------------------------------------- /Payloads/javascript/generic_payload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Payloads/javascript/generic_payload.js -------------------------------------------------------------------------------- /Payloads/javascript/joomla_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Payloads/javascript/joomla_admin.js -------------------------------------------------------------------------------- /Payloads/javascript/joomla_backdoor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Payloads/javascript/joomla_backdoor.js -------------------------------------------------------------------------------- /Payloads/javascript/test_payload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Payloads/javascript/test_payload.js -------------------------------------------------------------------------------- /Payloads/javascript/vbulletin_legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Payloads/javascript/vbulletin_legacy.js -------------------------------------------------------------------------------- /Payloads/javascript/wordpress_legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Payloads/javascript/wordpress_legacy.js -------------------------------------------------------------------------------- /Payloads/javascript/wordpress_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Payloads/javascript/wordpress_plugin.js -------------------------------------------------------------------------------- /Payloads/javascript/wordpress_theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Payloads/javascript/wordpress_theme.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/README.md -------------------------------------------------------------------------------- /Shells/meterpreter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Shells/meterpreter/LICENSE -------------------------------------------------------------------------------- /Shells/meterpreter/meterpreter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Shells/meterpreter/meterpreter.php -------------------------------------------------------------------------------- /Shells/php-reverse-shell-1.0/CHANGELOG: -------------------------------------------------------------------------------- 1 | 2 | 2007-05-26 php-reverse-shell v1.0 3 | 4 | * Initial public release 5 | 6 | -------------------------------------------------------------------------------- /Shells/php-reverse-shell-1.0/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Shells/php-reverse-shell-1.0/COPYING.GPL -------------------------------------------------------------------------------- /Shells/php-reverse-shell-1.0/COPYING.PHP-REVERSE-SHELL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Shells/php-reverse-shell-1.0/COPYING.PHP-REVERSE-SHELL -------------------------------------------------------------------------------- /Shells/php-reverse-shell-1.0/php-reverse-shell-notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Shells/php-reverse-shell-1.0/php-reverse-shell-notify.php -------------------------------------------------------------------------------- /Shells/php-reverse-shell-1.0/php-reverse-shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/Shells/php-reverse-shell-1.0/php-reverse-shell.php -------------------------------------------------------------------------------- /js_alert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/js_alert.sh -------------------------------------------------------------------------------- /requirements-all-libraries-used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/requirements-all-libraries-used.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/requirements.txt -------------------------------------------------------------------------------- /xsser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varbaek/xsser/HEAD/xsser.py --------------------------------------------------------------------------------