├── .github ├── FUNDING.yml └── workflows │ ├── codesee-arch-diagram.yml │ ├── linter.yml │ └── repo-visualizer.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── client.sh ├── config.ini.example ├── doc ├── DNSPacketStructure.md ├── design.md └── diagram.svg └── src ├── chatserver.py ├── client.py ├── converter.py ├── packet.py ├── server.py └── utils.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/codesee-arch-diagram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/.github/workflows/codesee-arch-diagram.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/repo-visualizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/.github/workflows/repo-visualizer.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.py[ouc] 3 | .vscode/ 4 | venv/ 5 | 6 | *.ini 7 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/README.md -------------------------------------------------------------------------------- /client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/client.sh -------------------------------------------------------------------------------- /config.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/config.ini.example -------------------------------------------------------------------------------- /doc/DNSPacketStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/doc/DNSPacketStructure.md -------------------------------------------------------------------------------- /doc/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/doc/design.md -------------------------------------------------------------------------------- /doc/diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/doc/diagram.svg -------------------------------------------------------------------------------- /src/chatserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/src/chatserver.py -------------------------------------------------------------------------------- /src/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/src/client.py -------------------------------------------------------------------------------- /src/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/src/converter.py -------------------------------------------------------------------------------- /src/packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/src/packet.py -------------------------------------------------------------------------------- /src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/src/server.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperFola/DoNotSend/HEAD/src/utils.py --------------------------------------------------------------------------------