├── LICENSE ├── README.md ├── outputs └── splinter.png ├── passwd.txt ├── pyhero.sh └── scripts ├── commands.py ├── extra.py └── main.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splinter0/PyHero/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splinter0/PyHero/HEAD/README.md -------------------------------------------------------------------------------- /outputs/splinter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splinter0/PyHero/HEAD/outputs/splinter.png -------------------------------------------------------------------------------- /passwd.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhero.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | python scripts/main.py 4 | -------------------------------------------------------------------------------- /scripts/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splinter0/PyHero/HEAD/scripts/commands.py -------------------------------------------------------------------------------- /scripts/extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splinter0/PyHero/HEAD/scripts/extra.py -------------------------------------------------------------------------------- /scripts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splinter0/PyHero/HEAD/scripts/main.py --------------------------------------------------------------------------------