├── .gitignore ├── .version ├── LICENSE ├── README.md ├── Virus.sh ├── host.py ├── install.sh ├── lib └── asciiart.py ├── main └── update.py ├── requirements.txt ├── static ├── favicon.png ├── icon.png └── logo.png └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | __pycache__/ -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | 1.3 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaeem20/VirusX5/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaeem20/VirusX5/HEAD/README.md -------------------------------------------------------------------------------- /Virus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaeem20/VirusX5/HEAD/Virus.sh -------------------------------------------------------------------------------- /host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaeem20/VirusX5/HEAD/host.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaeem20/VirusX5/HEAD/install.sh -------------------------------------------------------------------------------- /lib/asciiart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaeem20/VirusX5/HEAD/lib/asciiart.py -------------------------------------------------------------------------------- /main/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaeem20/VirusX5/HEAD/main/update.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaeem20/VirusX5/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaeem20/VirusX5/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaeem20/VirusX5/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaeem20/VirusX5/HEAD/static/logo.png -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaeem20/VirusX5/HEAD/templates/index.html --------------------------------------------------------------------------------