├── .gitignore ├── LICENSE ├── Makefile.am ├── README ├── conf └── dionaea.conf.dist ├── configure.ac ├── debian ├── changelog ├── compat ├── control └── rules ├── doc └── html │ ├── index.html │ └── screen.css ├── include ├── Makefile.am ├── bistream.h ├── connection.h ├── dionaea.h ├── dns.h ├── incident.h ├── log.h ├── modules.h ├── node_info.h ├── pchild.h ├── processor.h ├── protocol.h ├── refcount.h ├── signals.h ├── threads.h └── util.h ├── m4 ├── az_bind_ipv4_mapped_localhost.m4 └── az_python.m4 ├── modules ├── Makefile.am ├── curl │ ├── Makefile.am │ ├── module.c │ └── module.h ├── emu │ ├── Makefile.am │ ├── detect.c │ ├── emulate.c │ ├── hooks.c │ ├── module.c │ ├── module.h │ └── profile.c ├── nc │ ├── Makefile.am │ ├── nc.c │ └── nc.h ├── nfq │ ├── Makefile.am │ └── nfq.c ├── nl │ ├── Makefile.am │ └── module.c ├── pcap │ ├── Makefile.am │ └── pcap.c ├── python │ ├── Makefile.am │ ├── binding.pyx │ ├── module.c │ ├── module.h │ ├── pyev │ │ ├── Async.c │ │ ├── Check.c │ │ ├── Child.c │ │ ├── Embed.c │ │ ├── Fork.c │ │ ├── Idle.c │ │ ├── Io.c │ │ ├── Loop.c │ │ ├── Periodic.c │ │ ├── PeriodicBase.c │ │ ├── Prepare.c │ │ ├── Scheduler.c │ │ ├── Signal.c │ │ ├── Stat.c │ │ ├── Timer.c │ │ ├── Watcher.c │ │ ├── pyev.c │ │ └── pyev.h │ ├── scripts │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── cmd.py │ │ ├── echo.py │ │ ├── emu.py │ │ ├── fail2ban.py │ │ ├── ftp.py │ │ ├── hpfeeds.py │ │ ├── http.py │ │ ├── ihandlers.py │ │ ├── log.py │ │ ├── logsql.py │ │ ├── logxmpp.py │ │ ├── mirror.py │ │ ├── mqtt │ │ │ ├── __init__.py │ │ │ ├── include │ │ │ │ ├── __init__.py │ │ │ │ └── packets.py │ │ │ └── mqtt.py │ │ ├── mssql │ │ │ ├── __init__.py │ │ │ ├── include │ │ │ │ ├── __init__.py │ │ │ │ └── tds.py │ │ │ └── mssql.py │ │ ├── mwserv.py │ │ ├── mysql │ │ │ ├── __init__.py │ │ │ ├── include │ │ │ │ ├── __init__.py │ │ │ │ ├── fields.py │ │ │ │ ├── packets.py │ │ │ │ └── packets.py_ │ │ │ └── mysql.py │ │ ├── ndrlib.py │ │ ├── nfq.py │ │ ├── p0f.py │ │ ├── pptp │ │ │ ├── __init__.py │ │ │ ├── include │ │ │ │ ├── __init__.py │ │ │ │ └── packets.py │ │ │ └── pptp.py │ │ ├── services.py │ │ ├── sip │ │ │ ├── __init__.py │ │ │ ├── extras.py │ │ │ ├── rfc2396.py │ │ │ ├── rfc2617.py │ │ │ ├── rfc3261.py │ │ │ └── rfc4566.py │ │ ├── smb │ │ │ ├── __init__.py │ │ │ ├── include │ │ │ │ ├── __init__.py │ │ │ │ ├── asn1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── asn1.py │ │ │ │ │ ├── ber.py │ │ │ │ │ └── mib.py │ │ │ │ ├── asn1fields.py │ │ │ │ ├── asn1packet.py │ │ │ │ ├── fieldtypes.py │ │ │ │ ├── gssapifields.py │ │ │ │ ├── helpers.py │ │ │ │ ├── ntlmfields.py │ │ │ │ ├── packet.py │ │ │ │ └── smbfields.py │ │ │ ├── rpcservices.py │ │ │ └── smb.py │ │ ├── store.py │ │ ├── submit_http.py │ │ ├── surfids.py │ │ ├── test.py │ │ ├── tftp.py │ │ ├── upnp │ │ │ ├── __init__.py │ │ │ └── upnp.py │ │ ├── util.py │ │ └── virustotal.py │ ├── setup.py.in │ └── util │ │ ├── Makefile.am │ │ ├── csv2sqlite.py │ │ ├── gnuplotsql.py │ │ ├── gnuplotsql │ │ ├── gnuplot.example │ │ └── gnuplot.svg.example │ │ ├── logsql2postgres.py │ │ ├── readlogsqltree.py │ │ ├── retry.py │ │ ├── updateccs.py │ │ └── xmpp │ │ ├── pg_backend.py │ │ └── pg_schema.sql └── xmatch │ ├── Makefile.am │ ├── module.c │ ├── module.h │ └── xmatch.c ├── src ├── LICENSE.openssl ├── Makefile.am ├── bistream.c ├── connection.c ├── dionaea.c ├── dns.c ├── incident.c ├── log.c ├── modules.c ├── node_info.c ├── pchild.c ├── processor.c ├── refcount.c ├── signals.c ├── threads.c └── util.c └── tests ├── sip ├── README ├── functional-test-sip.py ├── run-bt4.sh ├── run-bt5.sh ├── run-tests.sh └── sipp │ ├── error_sdp.xml │ ├── newmethod.xml │ ├── options.xml │ ├── register.xml │ ├── register_pw.xml │ ├── uac.xml │ ├── user.csv │ └── user_pw.csv └── smb └── metasploit.rc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/README -------------------------------------------------------------------------------- /conf/dionaea.conf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/conf/dionaea.conf.dist -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/debian/control -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/debian/rules -------------------------------------------------------------------------------- /doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/doc/html/index.html -------------------------------------------------------------------------------- /doc/html/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/doc/html/screen.css -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/bistream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/bistream.h -------------------------------------------------------------------------------- /include/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/connection.h -------------------------------------------------------------------------------- /include/dionaea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/dionaea.h -------------------------------------------------------------------------------- /include/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/dns.h -------------------------------------------------------------------------------- /include/incident.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/incident.h -------------------------------------------------------------------------------- /include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/log.h -------------------------------------------------------------------------------- /include/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/modules.h -------------------------------------------------------------------------------- /include/node_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/node_info.h -------------------------------------------------------------------------------- /include/pchild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/pchild.h -------------------------------------------------------------------------------- /include/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/processor.h -------------------------------------------------------------------------------- /include/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/protocol.h -------------------------------------------------------------------------------- /include/refcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/refcount.h -------------------------------------------------------------------------------- /include/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/signals.h -------------------------------------------------------------------------------- /include/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/threads.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/include/util.h -------------------------------------------------------------------------------- /m4/az_bind_ipv4_mapped_localhost.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/m4/az_bind_ipv4_mapped_localhost.m4 -------------------------------------------------------------------------------- /m4/az_python.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/m4/az_python.m4 -------------------------------------------------------------------------------- /modules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/Makefile.am -------------------------------------------------------------------------------- /modules/curl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/curl/Makefile.am -------------------------------------------------------------------------------- /modules/curl/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/curl/module.c -------------------------------------------------------------------------------- /modules/curl/module.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/emu/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/emu/Makefile.am -------------------------------------------------------------------------------- /modules/emu/detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/emu/detect.c -------------------------------------------------------------------------------- /modules/emu/emulate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/emu/emulate.c -------------------------------------------------------------------------------- /modules/emu/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/emu/hooks.c -------------------------------------------------------------------------------- /modules/emu/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/emu/module.c -------------------------------------------------------------------------------- /modules/emu/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/emu/module.h -------------------------------------------------------------------------------- /modules/emu/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/emu/profile.c -------------------------------------------------------------------------------- /modules/nc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/nc/Makefile.am -------------------------------------------------------------------------------- /modules/nc/nc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/nc/nc.c -------------------------------------------------------------------------------- /modules/nc/nc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/nc/nc.h -------------------------------------------------------------------------------- /modules/nfq/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/nfq/Makefile.am -------------------------------------------------------------------------------- /modules/nfq/nfq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/nfq/nfq.c -------------------------------------------------------------------------------- /modules/nl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/nl/Makefile.am -------------------------------------------------------------------------------- /modules/nl/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/nl/module.c -------------------------------------------------------------------------------- /modules/pcap/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/pcap/Makefile.am -------------------------------------------------------------------------------- /modules/pcap/pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/pcap/pcap.c -------------------------------------------------------------------------------- /modules/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/Makefile.am -------------------------------------------------------------------------------- /modules/python/binding.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/binding.pyx -------------------------------------------------------------------------------- /modules/python/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/module.c -------------------------------------------------------------------------------- /modules/python/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/module.h -------------------------------------------------------------------------------- /modules/python/pyev/Async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/Async.c -------------------------------------------------------------------------------- /modules/python/pyev/Check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/Check.c -------------------------------------------------------------------------------- /modules/python/pyev/Child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/Child.c -------------------------------------------------------------------------------- /modules/python/pyev/Embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/Embed.c -------------------------------------------------------------------------------- /modules/python/pyev/Fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/Fork.c -------------------------------------------------------------------------------- /modules/python/pyev/Idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/Idle.c -------------------------------------------------------------------------------- /modules/python/pyev/Io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/Io.c -------------------------------------------------------------------------------- /modules/python/pyev/Loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/Loop.c -------------------------------------------------------------------------------- /modules/python/pyev/Periodic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/Periodic.c -------------------------------------------------------------------------------- /modules/python/pyev/PeriodicBase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/PeriodicBase.c -------------------------------------------------------------------------------- /modules/python/pyev/Prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/Prepare.c -------------------------------------------------------------------------------- /modules/python/pyev/Scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/Scheduler.c -------------------------------------------------------------------------------- /modules/python/pyev/Signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/Signal.c -------------------------------------------------------------------------------- /modules/python/pyev/Stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/Stat.c -------------------------------------------------------------------------------- /modules/python/pyev/Timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/Timer.c -------------------------------------------------------------------------------- /modules/python/pyev/Watcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/Watcher.c -------------------------------------------------------------------------------- /modules/python/pyev/pyev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/pyev.c -------------------------------------------------------------------------------- /modules/python/pyev/pyev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/pyev/pyev.h -------------------------------------------------------------------------------- /modules/python/scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/Makefile.am -------------------------------------------------------------------------------- /modules/python/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/python/scripts/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/cmd.py -------------------------------------------------------------------------------- /modules/python/scripts/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/echo.py -------------------------------------------------------------------------------- /modules/python/scripts/emu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/emu.py -------------------------------------------------------------------------------- /modules/python/scripts/fail2ban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/fail2ban.py -------------------------------------------------------------------------------- /modules/python/scripts/ftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/ftp.py -------------------------------------------------------------------------------- /modules/python/scripts/hpfeeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/hpfeeds.py -------------------------------------------------------------------------------- /modules/python/scripts/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/http.py -------------------------------------------------------------------------------- /modules/python/scripts/ihandlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/ihandlers.py -------------------------------------------------------------------------------- /modules/python/scripts/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/log.py -------------------------------------------------------------------------------- /modules/python/scripts/logsql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/logsql.py -------------------------------------------------------------------------------- /modules/python/scripts/logxmpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/logxmpp.py -------------------------------------------------------------------------------- /modules/python/scripts/mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/mirror.py -------------------------------------------------------------------------------- /modules/python/scripts/mqtt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/python/scripts/mqtt/include/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/python/scripts/mqtt/include/packets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/mqtt/include/packets.py -------------------------------------------------------------------------------- /modules/python/scripts/mqtt/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/mqtt/mqtt.py -------------------------------------------------------------------------------- /modules/python/scripts/mssql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/python/scripts/mssql/include/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/python/scripts/mssql/include/tds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/mssql/include/tds.py -------------------------------------------------------------------------------- /modules/python/scripts/mssql/mssql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/mssql/mssql.py -------------------------------------------------------------------------------- /modules/python/scripts/mwserv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/mwserv.py -------------------------------------------------------------------------------- /modules/python/scripts/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/python/scripts/mysql/include/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/python/scripts/mysql/include/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/mysql/include/fields.py -------------------------------------------------------------------------------- /modules/python/scripts/mysql/include/packets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/mysql/include/packets.py -------------------------------------------------------------------------------- /modules/python/scripts/mysql/include/packets.py_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/mysql/include/packets.py_ -------------------------------------------------------------------------------- /modules/python/scripts/mysql/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/mysql/mysql.py -------------------------------------------------------------------------------- /modules/python/scripts/ndrlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/ndrlib.py -------------------------------------------------------------------------------- /modules/python/scripts/nfq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/nfq.py -------------------------------------------------------------------------------- /modules/python/scripts/p0f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/p0f.py -------------------------------------------------------------------------------- /modules/python/scripts/pptp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/python/scripts/pptp/include/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/python/scripts/pptp/include/packets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/pptp/include/packets.py -------------------------------------------------------------------------------- /modules/python/scripts/pptp/pptp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/pptp/pptp.py -------------------------------------------------------------------------------- /modules/python/scripts/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/services.py -------------------------------------------------------------------------------- /modules/python/scripts/sip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/sip/__init__.py -------------------------------------------------------------------------------- /modules/python/scripts/sip/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/sip/extras.py -------------------------------------------------------------------------------- /modules/python/scripts/sip/rfc2396.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/sip/rfc2396.py -------------------------------------------------------------------------------- /modules/python/scripts/sip/rfc2617.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/sip/rfc2617.py -------------------------------------------------------------------------------- /modules/python/scripts/sip/rfc3261.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/sip/rfc3261.py -------------------------------------------------------------------------------- /modules/python/scripts/sip/rfc4566.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/sip/rfc4566.py -------------------------------------------------------------------------------- /modules/python/scripts/smb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/python/scripts/smb/include/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/python/scripts/smb/include/asn1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/smb/include/asn1/__init__.py -------------------------------------------------------------------------------- /modules/python/scripts/smb/include/asn1/asn1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/smb/include/asn1/asn1.py -------------------------------------------------------------------------------- /modules/python/scripts/smb/include/asn1/ber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/smb/include/asn1/ber.py -------------------------------------------------------------------------------- /modules/python/scripts/smb/include/asn1/mib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/smb/include/asn1/mib.py -------------------------------------------------------------------------------- /modules/python/scripts/smb/include/asn1fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/smb/include/asn1fields.py -------------------------------------------------------------------------------- /modules/python/scripts/smb/include/asn1packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/smb/include/asn1packet.py -------------------------------------------------------------------------------- /modules/python/scripts/smb/include/fieldtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/smb/include/fieldtypes.py -------------------------------------------------------------------------------- /modules/python/scripts/smb/include/gssapifields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/smb/include/gssapifields.py -------------------------------------------------------------------------------- /modules/python/scripts/smb/include/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/smb/include/helpers.py -------------------------------------------------------------------------------- /modules/python/scripts/smb/include/ntlmfields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/smb/include/ntlmfields.py -------------------------------------------------------------------------------- /modules/python/scripts/smb/include/packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/smb/include/packet.py -------------------------------------------------------------------------------- /modules/python/scripts/smb/include/smbfields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/smb/include/smbfields.py -------------------------------------------------------------------------------- /modules/python/scripts/smb/rpcservices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/smb/rpcservices.py -------------------------------------------------------------------------------- /modules/python/scripts/smb/smb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/smb/smb.py -------------------------------------------------------------------------------- /modules/python/scripts/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/store.py -------------------------------------------------------------------------------- /modules/python/scripts/submit_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/submit_http.py -------------------------------------------------------------------------------- /modules/python/scripts/surfids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/surfids.py -------------------------------------------------------------------------------- /modules/python/scripts/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/test.py -------------------------------------------------------------------------------- /modules/python/scripts/tftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/tftp.py -------------------------------------------------------------------------------- /modules/python/scripts/upnp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/python/scripts/upnp/upnp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/upnp/upnp.py -------------------------------------------------------------------------------- /modules/python/scripts/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/util.py -------------------------------------------------------------------------------- /modules/python/scripts/virustotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/scripts/virustotal.py -------------------------------------------------------------------------------- /modules/python/setup.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/setup.py.in -------------------------------------------------------------------------------- /modules/python/util/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/util/Makefile.am -------------------------------------------------------------------------------- /modules/python/util/csv2sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/util/csv2sqlite.py -------------------------------------------------------------------------------- /modules/python/util/gnuplotsql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/util/gnuplotsql.py -------------------------------------------------------------------------------- /modules/python/util/gnuplotsql/gnuplot.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/util/gnuplotsql/gnuplot.example -------------------------------------------------------------------------------- /modules/python/util/gnuplotsql/gnuplot.svg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/util/gnuplotsql/gnuplot.svg.example -------------------------------------------------------------------------------- /modules/python/util/logsql2postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/util/logsql2postgres.py -------------------------------------------------------------------------------- /modules/python/util/readlogsqltree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/util/readlogsqltree.py -------------------------------------------------------------------------------- /modules/python/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/util/retry.py -------------------------------------------------------------------------------- /modules/python/util/updateccs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/util/updateccs.py -------------------------------------------------------------------------------- /modules/python/util/xmpp/pg_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/util/xmpp/pg_backend.py -------------------------------------------------------------------------------- /modules/python/util/xmpp/pg_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/python/util/xmpp/pg_schema.sql -------------------------------------------------------------------------------- /modules/xmatch/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/xmatch/Makefile.am -------------------------------------------------------------------------------- /modules/xmatch/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/xmatch/module.c -------------------------------------------------------------------------------- /modules/xmatch/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/xmatch/module.h -------------------------------------------------------------------------------- /modules/xmatch/xmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/modules/xmatch/xmatch.c -------------------------------------------------------------------------------- /src/LICENSE.openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/LICENSE.openssl -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/bistream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/bistream.c -------------------------------------------------------------------------------- /src/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/connection.c -------------------------------------------------------------------------------- /src/dionaea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/dionaea.c -------------------------------------------------------------------------------- /src/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/dns.c -------------------------------------------------------------------------------- /src/incident.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/incident.c -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/log.c -------------------------------------------------------------------------------- /src/modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/modules.c -------------------------------------------------------------------------------- /src/node_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/node_info.c -------------------------------------------------------------------------------- /src/pchild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/pchild.c -------------------------------------------------------------------------------- /src/processor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/processor.c -------------------------------------------------------------------------------- /src/refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/refcount.c -------------------------------------------------------------------------------- /src/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/signals.c -------------------------------------------------------------------------------- /src/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/threads.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/src/util.c -------------------------------------------------------------------------------- /tests/sip/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/tests/sip/README -------------------------------------------------------------------------------- /tests/sip/functional-test-sip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/tests/sip/functional-test-sip.py -------------------------------------------------------------------------------- /tests/sip/run-bt4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/tests/sip/run-bt4.sh -------------------------------------------------------------------------------- /tests/sip/run-bt5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/tests/sip/run-bt5.sh -------------------------------------------------------------------------------- /tests/sip/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/tests/sip/run-tests.sh -------------------------------------------------------------------------------- /tests/sip/sipp/error_sdp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/tests/sip/sipp/error_sdp.xml -------------------------------------------------------------------------------- /tests/sip/sipp/newmethod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/tests/sip/sipp/newmethod.xml -------------------------------------------------------------------------------- /tests/sip/sipp/options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/tests/sip/sipp/options.xml -------------------------------------------------------------------------------- /tests/sip/sipp/register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/tests/sip/sipp/register.xml -------------------------------------------------------------------------------- /tests/sip/sipp/register_pw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/tests/sip/sipp/register_pw.xml -------------------------------------------------------------------------------- /tests/sip/sipp/uac.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/tests/sip/sipp/uac.xml -------------------------------------------------------------------------------- /tests/sip/sipp/user.csv: -------------------------------------------------------------------------------- 1 | SEQUENTIAL 2 | 100 3 | -------------------------------------------------------------------------------- /tests/sip/sipp/user_pw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/tests/sip/sipp/user_pw.csv -------------------------------------------------------------------------------- /tests/smb/metasploit.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gento/dionaea/HEAD/tests/smb/metasploit.rc --------------------------------------------------------------------------------