├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── netsink ├── __init__.py ├── conf │ ├── dispatcher.conf │ ├── dns.conf │ ├── ftp.conf │ ├── http.conf │ ├── irc.conf │ ├── netsink.conf │ ├── redirection.conf │ ├── smtp.conf │ └── ssl.conf ├── config.py ├── data │ ├── cacert.pem │ ├── ftproot │ │ └── README.txt │ ├── ipaddress.html │ ├── ipaddress.txt │ ├── netsink.html │ └── privkey.pem ├── listener.py ├── modules │ ├── __init__.py │ ├── dns.py │ ├── ftp.py │ ├── http.py │ ├── ircserver.py │ ├── multi.py │ ├── smtp.py │ └── sslwrap.py ├── redirection.py ├── start.py └── version.py ├── requirements.txt ├── setup.py ├── tests ├── smoke.py ├── test_config.py ├── test_dns.py ├── test_ftp.py ├── test_http.py ├── test_ircserver.py ├── test_multi.py ├── test_redirection.py ├── test_smtp.py └── test_sslwrap.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/README.rst -------------------------------------------------------------------------------- /netsink/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/__init__.py -------------------------------------------------------------------------------- /netsink/conf/dispatcher.conf: -------------------------------------------------------------------------------- 1 | [dispatcher] 2 | handlers=ssl,http,smtp,irc -------------------------------------------------------------------------------- /netsink/conf/dns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/conf/dns.conf -------------------------------------------------------------------------------- /netsink/conf/ftp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/conf/ftp.conf -------------------------------------------------------------------------------- /netsink/conf/http.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/conf/http.conf -------------------------------------------------------------------------------- /netsink/conf/irc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/conf/irc.conf -------------------------------------------------------------------------------- /netsink/conf/netsink.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/conf/netsink.conf -------------------------------------------------------------------------------- /netsink/conf/redirection.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/conf/redirection.conf -------------------------------------------------------------------------------- /netsink/conf/smtp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/conf/smtp.conf -------------------------------------------------------------------------------- /netsink/conf/ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/conf/ssl.conf -------------------------------------------------------------------------------- /netsink/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/config.py -------------------------------------------------------------------------------- /netsink/data/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/data/cacert.pem -------------------------------------------------------------------------------- /netsink/data/ftproot/README.txt: -------------------------------------------------------------------------------- 1 | Nothing to see here 2 | -------------------------------------------------------------------------------- /netsink/data/ipaddress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/data/ipaddress.html -------------------------------------------------------------------------------- /netsink/data/ipaddress.txt: -------------------------------------------------------------------------------- 1 | 11.22.33.44 -------------------------------------------------------------------------------- /netsink/data/netsink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/data/netsink.html -------------------------------------------------------------------------------- /netsink/data/privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/data/privkey.pem -------------------------------------------------------------------------------- /netsink/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/listener.py -------------------------------------------------------------------------------- /netsink/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/modules/__init__.py -------------------------------------------------------------------------------- /netsink/modules/dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/modules/dns.py -------------------------------------------------------------------------------- /netsink/modules/ftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/modules/ftp.py -------------------------------------------------------------------------------- /netsink/modules/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/modules/http.py -------------------------------------------------------------------------------- /netsink/modules/ircserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/modules/ircserver.py -------------------------------------------------------------------------------- /netsink/modules/multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/modules/multi.py -------------------------------------------------------------------------------- /netsink/modules/smtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/modules/smtp.py -------------------------------------------------------------------------------- /netsink/modules/sslwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/modules/sslwrap.py -------------------------------------------------------------------------------- /netsink/redirection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/redirection.py -------------------------------------------------------------------------------- /netsink/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/start.py -------------------------------------------------------------------------------- /netsink/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/netsink/version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/setup.py -------------------------------------------------------------------------------- /tests/smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/tests/smoke.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/tests/test_dns.py -------------------------------------------------------------------------------- /tests/test_ftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/tests/test_ftp.py -------------------------------------------------------------------------------- /tests/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/tests/test_http.py -------------------------------------------------------------------------------- /tests/test_ircserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/tests/test_ircserver.py -------------------------------------------------------------------------------- /tests/test_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/tests/test_multi.py -------------------------------------------------------------------------------- /tests/test_redirection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/tests/test_redirection.py -------------------------------------------------------------------------------- /tests/test_smtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/tests/test_smtp.py -------------------------------------------------------------------------------- /tests/test_sslwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/tests/test_sslwrap.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shendo/netsink/HEAD/tox.ini --------------------------------------------------------------------------------