├── .gitignore ├── AUTHORS ├── CHANGELOG ├── CREDITS ├── INSTALL ├── LICENSE ├── README.md ├── amun_server.py ├── conf ├── amun.conf ├── amun_db.sql ├── log-hpfeeds.conf ├── log-mail.conf ├── log-mysql.conf ├── log-pgsql.conf ├── log-sarcophagus.conf ├── log-surfnet.conf ├── submit-anubis.conf ├── submit-cwsandbox.conf ├── submit-joebox.conf └── submit-mwportal.conf ├── core ├── amun_bindport_core.py ├── amun_config_parser.py ├── amun_logging.py ├── amun_rdp_core.py ├── amun_request_handler.py ├── amun_smb_core.py ├── download_core.py ├── ftp_download_core.py ├── iprange.py ├── shellcode_mgr_core.py ├── shellemulator.py ├── tftp_download_core.py ├── utils.py └── vulngenerator.py ├── docs ├── Makefile ├── build │ ├── doctrees │ │ ├── configuration.doctree │ │ ├── environment.pickle │ │ ├── index.doctree │ │ └── installation.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _sources │ │ ├── configuration.txt │ │ ├── index.txt │ │ └── installation.txt │ │ ├── _static │ │ ├── ajax-loader.gif │ │ ├── basic.css │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── comment.png │ │ ├── default.css │ │ ├── doctools.js │ │ ├── down-pressed.png │ │ ├── down.png │ │ ├── file.png │ │ ├── jquery.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── sidebar.js │ │ ├── underscore.js │ │ ├── up-pressed.png │ │ ├── up.png │ │ └── websupport.js │ │ ├── configuration.html │ │ ├── genindex.html │ │ ├── index.html │ │ ├── installation.html │ │ ├── objects.inv │ │ ├── search.html │ │ └── searchindex.js └── source │ ├── conf.py │ ├── configuration.rst │ ├── index.rst │ └── installation.rst ├── hexdumps └── .empty ├── http_images ├── logo_right.png └── style.css.phpmyadmin ├── log_modules ├── log-blastomat │ └── log_blastomat.py ├── log-hpfeeds │ ├── log_hpfeeds.py │ └── log_hpfeeds.py.new_channels ├── log-mail │ └── log_mail.py ├── log-mysql │ └── log_mysql.py ├── log-pgsql │ └── log_pgsql.py ├── log-sarcophagus │ └── log_sarcophagus.py ├── log-surfnet │ └── log_surfnet.py └── log-syslog │ └── log_syslog.py ├── malware └── md5sum │ └── .empty ├── shellcodes └── decoders.py ├── submit_modules ├── submit-anubis │ └── submit_anubis.py ├── submit-cwsandbox │ └── submit_cwsandbox.py ├── submit-joebox │ └── submit_joebox.py ├── submit-md5 │ └── submit_md5.py ├── submit-mwportal │ └── submit_mwportal.py └── submit-mysql │ └── submit_mysql.py ├── utils ├── checkCode.py ├── cut_file.py ├── listIPs.py └── xml_vuln_creator │ ├── vuln_creator.py │ ├── xml_arc.xml │ ├── xml_arkeia.xml │ ├── xml_bagle.xml │ ├── xml_ca.xml │ ├── xml_dameware.xml │ ├── xml_ftpd.xml │ ├── xml_helix.xml │ ├── xml_http.xml │ ├── xml_iis.xml │ ├── xml_imail.xml │ ├── xml_lsass.xml │ ├── xml_maxdb.xml │ ├── xml_mercurymail.xml │ ├── xml_ms08067.xml │ ├── xml_msmq.xml │ ├── xml_openview.xml │ ├── xml_pnp.xml │ ├── xml_rync.xml │ ├── xml_sub7.xml │ ├── xml_tivoli.xml │ ├── xml_trend.xml │ └── xml_vnc.xml └── vuln_modules ├── vuln-analyzer ├── analyzer_modul.py └── analyzer_shellcodes.py ├── vuln-arc ├── arc_modul.py └── arc_shellcodes.py ├── vuln-arkeia ├── arkeia_modul.py └── arkeia_shellcodes.py ├── vuln-axigen ├── axigen_modul.py └── axigen_shellcodes.py ├── vuln-bagle ├── bagle_modul.py └── bagle_shellcodes.py ├── vuln-ca ├── ca_modul.py └── ca_shellcodes.py ├── vuln-check ├── check_modul.py └── check_shellcodes.py ├── vuln-cyruspop3 ├── cyruspop3_modul.py └── cyruspop3_shellcodes.py ├── vuln-dameware ├── dameware_modul.py └── dameware_shellcodes.py ├── vuln-dcom ├── dcom_modul.py └── dcom_shellcodes.py ├── vuln-ftpd ├── ftpd_modul.py └── ftpd_shellcodes.py ├── vuln-goodtech ├── goodtech_modul.py └── goodtech_shellcodes.py ├── vuln-helix ├── helix_modul.py └── helix_shellcodes.py ├── vuln-hpopenview ├── hpopenview_modul.py └── hpopenview_shellcodes.py ├── vuln-http ├── http_modul.py └── http_shellcodes.py ├── vuln-iis ├── iis_modul.py └── iis_shellcodes.py ├── vuln-imail ├── imail_modul.py └── imail_shellcodes.py ├── vuln-lotusdomino ├── lotusdomino_modul.py └── lotusdomino_shellcodes.py ├── vuln-maxdb ├── maxdb_modul.py └── maxdb_shellcodes.py ├── vuln-mdaemon ├── mdaemon_modul.py └── mdaemon_shellcodes.py ├── vuln-mercury ├── mercury_modul.py └── mercury_shellcodes.py ├── vuln-msdtc ├── msdtc_modul.py └── msdtc_shellcodes.py ├── vuln-msmq ├── msmq_modul.py └── msmq_shellcodes.py ├── vuln-mssql ├── mssql_modul.py ├── mssql_modul.py.old └── mssql_shellcodes.py ├── vuln-mydoom ├── mydoom_modul.py └── mydoom_shellcodes.py ├── vuln-mysql ├── mysql_modul.py └── mysql_shellcodes.py ├── vuln-peercast ├── peercast_modul.py └── peercast_shellcodes.py ├── vuln-rdp ├── rdp_modul.py └── rdp_shellcodes.py ├── vuln-realvnc ├── realvnc_modul.py └── realvnc_shellcodes.py ├── vuln-rsync ├── rsync_modul.py └── rsync_shellcodes.py ├── vuln-sasserftpd └── sasserftpd_modul.py ├── vuln-slmail ├── slmail_modul.py └── slmail_shellcodes.py ├── vuln-smb ├── smb_modul.py └── smb_shellcodes.py ├── vuln-speedport ├── speedport_modul.py └── speedport_shellcodes.py ├── vuln-sub7 ├── sub7_modul.py └── sub7_shellcodes.py ├── vuln-symantec ├── symantec_modul.py └── symantec_shellcodes.py ├── vuln-tivoli ├── tivoli_modul.py └── tivoli_shellcodes.py ├── vuln-trend ├── trend_modul.py └── trend_shellcodes.py ├── vuln-upnp ├── upnp_modul.py └── upnp_shellcodes.py ├── vuln-veritas ├── veritas_modul.py └── veritas_shellcodes.py └── vuln-wins ├── wins_modul.py └── wins_shellcodes.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Current Developers: 2 | - Jan Goebel ( jan-go at gmx dot de ) 3 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/CREDITS -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/README.md -------------------------------------------------------------------------------- /amun_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/amun_server.py -------------------------------------------------------------------------------- /conf/amun.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/conf/amun.conf -------------------------------------------------------------------------------- /conf/amun_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/conf/amun_db.sql -------------------------------------------------------------------------------- /conf/log-hpfeeds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/conf/log-hpfeeds.conf -------------------------------------------------------------------------------- /conf/log-mail.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/conf/log-mail.conf -------------------------------------------------------------------------------- /conf/log-mysql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/conf/log-mysql.conf -------------------------------------------------------------------------------- /conf/log-pgsql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/conf/log-pgsql.conf -------------------------------------------------------------------------------- /conf/log-sarcophagus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/conf/log-sarcophagus.conf -------------------------------------------------------------------------------- /conf/log-surfnet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/conf/log-surfnet.conf -------------------------------------------------------------------------------- /conf/submit-anubis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/conf/submit-anubis.conf -------------------------------------------------------------------------------- /conf/submit-cwsandbox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/conf/submit-cwsandbox.conf -------------------------------------------------------------------------------- /conf/submit-joebox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/conf/submit-joebox.conf -------------------------------------------------------------------------------- /conf/submit-mwportal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/conf/submit-mwportal.conf -------------------------------------------------------------------------------- /core/amun_bindport_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/core/amun_bindport_core.py -------------------------------------------------------------------------------- /core/amun_config_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/core/amun_config_parser.py -------------------------------------------------------------------------------- /core/amun_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/core/amun_logging.py -------------------------------------------------------------------------------- /core/amun_rdp_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/core/amun_rdp_core.py -------------------------------------------------------------------------------- /core/amun_request_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/core/amun_request_handler.py -------------------------------------------------------------------------------- /core/amun_smb_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/core/amun_smb_core.py -------------------------------------------------------------------------------- /core/download_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/core/download_core.py -------------------------------------------------------------------------------- /core/ftp_download_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/core/ftp_download_core.py -------------------------------------------------------------------------------- /core/iprange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/core/iprange.py -------------------------------------------------------------------------------- /core/shellcode_mgr_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/core/shellcode_mgr_core.py -------------------------------------------------------------------------------- /core/shellemulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/core/shellemulator.py -------------------------------------------------------------------------------- /core/tftp_download_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/core/tftp_download_core.py -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/core/utils.py -------------------------------------------------------------------------------- /core/vulngenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/core/vulngenerator.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/build/doctrees/configuration.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/doctrees/configuration.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/installation.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/doctrees/installation.doctree -------------------------------------------------------------------------------- /docs/build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/.buildinfo -------------------------------------------------------------------------------- /docs/build/html/_sources/configuration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_sources/configuration.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_sources/index.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/installation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_sources/installation.txt -------------------------------------------------------------------------------- /docs/build/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/build/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/build/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/comment-close.png -------------------------------------------------------------------------------- /docs/build/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/comment.png -------------------------------------------------------------------------------- /docs/build/html/_static/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/default.css -------------------------------------------------------------------------------- /docs/build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/build/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/build/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/down.png -------------------------------------------------------------------------------- /docs/build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/file.png -------------------------------------------------------------------------------- /docs/build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/build/html/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/sidebar.js -------------------------------------------------------------------------------- /docs/build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/build/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/build/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/up.png -------------------------------------------------------------------------------- /docs/build/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/_static/websupport.js -------------------------------------------------------------------------------- /docs/build/html/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/configuration.html -------------------------------------------------------------------------------- /docs/build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/genindex.html -------------------------------------------------------------------------------- /docs/build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/index.html -------------------------------------------------------------------------------- /docs/build/html/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/installation.html -------------------------------------------------------------------------------- /docs/build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/objects.inv -------------------------------------------------------------------------------- /docs/build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/search.html -------------------------------------------------------------------------------- /docs/build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/build/html/searchindex.js -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/source/configuration.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /hexdumps/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /http_images/logo_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/http_images/logo_right.png -------------------------------------------------------------------------------- /http_images/style.css.phpmyadmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/http_images/style.css.phpmyadmin -------------------------------------------------------------------------------- /log_modules/log-blastomat/log_blastomat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/log_modules/log-blastomat/log_blastomat.py -------------------------------------------------------------------------------- /log_modules/log-hpfeeds/log_hpfeeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/log_modules/log-hpfeeds/log_hpfeeds.py -------------------------------------------------------------------------------- /log_modules/log-hpfeeds/log_hpfeeds.py.new_channels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/log_modules/log-hpfeeds/log_hpfeeds.py.new_channels -------------------------------------------------------------------------------- /log_modules/log-mail/log_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/log_modules/log-mail/log_mail.py -------------------------------------------------------------------------------- /log_modules/log-mysql/log_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/log_modules/log-mysql/log_mysql.py -------------------------------------------------------------------------------- /log_modules/log-pgsql/log_pgsql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/log_modules/log-pgsql/log_pgsql.py -------------------------------------------------------------------------------- /log_modules/log-sarcophagus/log_sarcophagus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/log_modules/log-sarcophagus/log_sarcophagus.py -------------------------------------------------------------------------------- /log_modules/log-surfnet/log_surfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/log_modules/log-surfnet/log_surfnet.py -------------------------------------------------------------------------------- /log_modules/log-syslog/log_syslog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/log_modules/log-syslog/log_syslog.py -------------------------------------------------------------------------------- /malware/md5sum/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shellcodes/decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/shellcodes/decoders.py -------------------------------------------------------------------------------- /submit_modules/submit-anubis/submit_anubis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/submit_modules/submit-anubis/submit_anubis.py -------------------------------------------------------------------------------- /submit_modules/submit-cwsandbox/submit_cwsandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/submit_modules/submit-cwsandbox/submit_cwsandbox.py -------------------------------------------------------------------------------- /submit_modules/submit-joebox/submit_joebox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/submit_modules/submit-joebox/submit_joebox.py -------------------------------------------------------------------------------- /submit_modules/submit-md5/submit_md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/submit_modules/submit-md5/submit_md5.py -------------------------------------------------------------------------------- /submit_modules/submit-mwportal/submit_mwportal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/submit_modules/submit-mwportal/submit_mwportal.py -------------------------------------------------------------------------------- /submit_modules/submit-mysql/submit_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/submit_modules/submit-mysql/submit_mysql.py -------------------------------------------------------------------------------- /utils/checkCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/checkCode.py -------------------------------------------------------------------------------- /utils/cut_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/cut_file.py -------------------------------------------------------------------------------- /utils/listIPs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/listIPs.py -------------------------------------------------------------------------------- /utils/xml_vuln_creator/vuln_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/vuln_creator.py -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_arc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_arc.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_arkeia.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_arkeia.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_bagle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_bagle.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_ca.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_dameware.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_dameware.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_ftpd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_ftpd.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_helix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_helix.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_http.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_iis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_iis.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_imail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_imail.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_lsass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_lsass.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_maxdb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_maxdb.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_mercurymail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_mercurymail.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_ms08067.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_ms08067.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_msmq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_msmq.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_openview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_openview.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_pnp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_pnp.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_rync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_rync.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_sub7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_sub7.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_tivoli.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_tivoli.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_trend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_trend.xml -------------------------------------------------------------------------------- /utils/xml_vuln_creator/xml_vnc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/utils/xml_vuln_creator/xml_vnc.xml -------------------------------------------------------------------------------- /vuln_modules/vuln-analyzer/analyzer_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-analyzer/analyzer_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-analyzer/analyzer_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-arc/arc_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-arc/arc_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-arc/arc_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-arkeia/arkeia_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-arkeia/arkeia_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-arkeia/arkeia_shellcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-arkeia/arkeia_shellcodes.py -------------------------------------------------------------------------------- /vuln_modules/vuln-axigen/axigen_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-axigen/axigen_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-axigen/axigen_shellcodes.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vuln_modules/vuln-bagle/bagle_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-bagle/bagle_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-bagle/bagle_shellcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-bagle/bagle_shellcodes.py -------------------------------------------------------------------------------- /vuln_modules/vuln-ca/ca_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-ca/ca_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-ca/ca_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-check/check_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-check/check_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-check/check_shellcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-check/check_shellcodes.py -------------------------------------------------------------------------------- /vuln_modules/vuln-cyruspop3/cyruspop3_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-cyruspop3/cyruspop3_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-cyruspop3/cyruspop3_shellcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-cyruspop3/cyruspop3_shellcodes.py -------------------------------------------------------------------------------- /vuln_modules/vuln-dameware/dameware_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-dameware/dameware_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-dameware/dameware_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-dcom/dcom_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-dcom/dcom_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-dcom/dcom_shellcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-dcom/dcom_shellcodes.py -------------------------------------------------------------------------------- /vuln_modules/vuln-ftpd/ftpd_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-ftpd/ftpd_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-ftpd/ftpd_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-goodtech/goodtech_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-goodtech/goodtech_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-goodtech/goodtech_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-helix/helix_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-helix/helix_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-helix/helix_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-hpopenview/hpopenview_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-hpopenview/hpopenview_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-hpopenview/hpopenview_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-http/http_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-http/http_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-http/http_shellcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-http/http_shellcodes.py -------------------------------------------------------------------------------- /vuln_modules/vuln-iis/iis_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-iis/iis_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-iis/iis_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-imail/imail_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-imail/imail_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-imail/imail_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-lotusdomino/lotusdomino_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-lotusdomino/lotusdomino_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-lotusdomino/lotusdomino_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-maxdb/maxdb_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-maxdb/maxdb_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-maxdb/maxdb_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-mdaemon/mdaemon_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-mdaemon/mdaemon_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-mdaemon/mdaemon_shellcodes.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vuln_modules/vuln-mercury/mercury_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-mercury/mercury_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-mercury/mercury_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-msdtc/msdtc_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-msdtc/msdtc_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-msdtc/msdtc_shellcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-msdtc/msdtc_shellcodes.py -------------------------------------------------------------------------------- /vuln_modules/vuln-msmq/msmq_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-msmq/msmq_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-msmq/msmq_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-mssql/mssql_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-mssql/mssql_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-mssql/mssql_modul.py.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-mssql/mssql_modul.py.old -------------------------------------------------------------------------------- /vuln_modules/vuln-mssql/mssql_shellcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-mssql/mssql_shellcodes.py -------------------------------------------------------------------------------- /vuln_modules/vuln-mydoom/mydoom_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-mydoom/mydoom_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-mydoom/mydoom_shellcodes.py: -------------------------------------------------------------------------------- 1 | mydoom_request_stage1 = "\x85\x13\x3c\x9e\xa2" 2 | -------------------------------------------------------------------------------- /vuln_modules/vuln-mysql/mysql_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-mysql/mysql_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-mysql/mysql_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-peercast/peercast_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-peercast/peercast_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-peercast/peercast_shellcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-peercast/peercast_shellcodes.py -------------------------------------------------------------------------------- /vuln_modules/vuln-rdp/rdp_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-rdp/rdp_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-rdp/rdp_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-realvnc/realvnc_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-realvnc/realvnc_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-realvnc/realvnc_shellcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-realvnc/realvnc_shellcodes.py -------------------------------------------------------------------------------- /vuln_modules/vuln-rsync/rsync_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-rsync/rsync_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-rsync/rsync_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-sasserftpd/sasserftpd_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-sasserftpd/sasserftpd_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-slmail/slmail_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-slmail/slmail_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-slmail/slmail_shellcodes.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vuln_modules/vuln-smb/smb_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-smb/smb_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-smb/smb_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-speedport/speedport_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-speedport/speedport_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-speedport/speedport_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-sub7/sub7_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-sub7/sub7_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-sub7/sub7_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-symantec/symantec_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-symantec/symantec_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-symantec/symantec_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-tivoli/tivoli_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-tivoli/tivoli_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-tivoli/tivoli_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-trend/trend_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-trend/trend_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-trend/trend_shellcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-trend/trend_shellcodes.py -------------------------------------------------------------------------------- /vuln_modules/vuln-upnp/upnp_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-upnp/upnp_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-upnp/upnp_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-veritas/veritas_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-veritas/veritas_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-veritas/veritas_shellcodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln_modules/vuln-wins/wins_modul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-wins/wins_modul.py -------------------------------------------------------------------------------- /vuln_modules/vuln-wins/wins_shellcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroq/amun/HEAD/vuln_modules/vuln-wins/wins_shellcodes.py --------------------------------------------------------------------------------