├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── deactivator.py ├── requirements.txt ├── send.py ├── server.py ├── text.txt └── wrapper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h313/dead-mans-switch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h313/dead-mans-switch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h313/dead-mans-switch/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h313/dead-mans-switch/HEAD/config.py -------------------------------------------------------------------------------- /deactivator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h313/dead-mans-switch/HEAD/deactivator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | cryptography 3 | apscheduler 4 | requests -------------------------------------------------------------------------------- /send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h313/dead-mans-switch/HEAD/send.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h313/dead-mans-switch/HEAD/server.py -------------------------------------------------------------------------------- /text.txt: -------------------------------------------------------------------------------- 1 | Put your secret text here! -------------------------------------------------------------------------------- /wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h313/dead-mans-switch/HEAD/wrapper.py --------------------------------------------------------------------------------