├── .github └── FUNDING.yml ├── .pyup.yml ├── .travis.yml ├── LICENSE ├── README.md ├── ransom0.py ├── requirements.txt └── server.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | 2 | github: HugoLB0 3 | -------------------------------------------------------------------------------- /.pyup.yml: -------------------------------------------------------------------------------- 1 | update: insecure 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoLB0/Ransom0/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoLB0/Ransom0/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoLB0/Ransom0/HEAD/README.md -------------------------------------------------------------------------------- /ransom0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoLB0/Ransom0/HEAD/ransom0.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cryptography>=3.3.2 2 | requests==2.25.1 3 | pyngrok==5.0.1 4 | -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoLB0/Ransom0/HEAD/server.py --------------------------------------------------------------------------------