├── LICENSE ├── README.md ├── input ├── config.json ├── reasons.txt └── tokens.txt ├── install.bat ├── main.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severityc/Fake-Vouch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severityc/Fake-Vouch/HEAD/README.md -------------------------------------------------------------------------------- /input/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severityc/Fake-Vouch/HEAD/input/config.json -------------------------------------------------------------------------------- /input/reasons.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /input/tokens.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- 1 | pip install -r requirements.txt 2 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severityc/Fake-Vouch/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | random 3 | time 4 | json 5 | os 6 | art 7 | --------------------------------------------------------------------------------