├── LICENSE ├── README.md ├── banner └── banner.txt ├── bin └── ghost ├── core ├── badges.py ├── fsmanip.py ├── ghost.py ├── helper.py ├── keyboard.py ├── loader.py ├── server.py ├── shell.py └── transfer.py ├── data └── cmds │ └── core_cmds.txt ├── etc └── core │ └── transfer.py ├── ghost ├── install.sh ├── modules ├── activity.py ├── battery.py ├── click.py ├── download.py ├── eatpass.py ├── keyboard.py ├── keycode.py ├── netstat.py ├── openurl.py ├── reboot.py ├── screen.py ├── screenshot.py ├── shell.py ├── sysinfo.py ├── type.py ├── upload.py ├── view_contacts.py └── wifi.py ├── uninstall.sh └── update.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/README.md -------------------------------------------------------------------------------- /banner/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/banner/banner.txt -------------------------------------------------------------------------------- /bin/ghost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/bin/ghost -------------------------------------------------------------------------------- /core/badges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/core/badges.py -------------------------------------------------------------------------------- /core/fsmanip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/core/fsmanip.py -------------------------------------------------------------------------------- /core/ghost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/core/ghost.py -------------------------------------------------------------------------------- /core/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/core/helper.py -------------------------------------------------------------------------------- /core/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/core/keyboard.py -------------------------------------------------------------------------------- /core/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/core/loader.py -------------------------------------------------------------------------------- /core/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/core/server.py -------------------------------------------------------------------------------- /core/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/core/shell.py -------------------------------------------------------------------------------- /core/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/core/transfer.py -------------------------------------------------------------------------------- /data/cmds/core_cmds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/data/cmds/core_cmds.txt -------------------------------------------------------------------------------- /etc/core/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/etc/core/transfer.py -------------------------------------------------------------------------------- /ghost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/ghost -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/install.sh -------------------------------------------------------------------------------- /modules/activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/activity.py -------------------------------------------------------------------------------- /modules/battery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/battery.py -------------------------------------------------------------------------------- /modules/click.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/click.py -------------------------------------------------------------------------------- /modules/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/download.py -------------------------------------------------------------------------------- /modules/eatpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/eatpass.py -------------------------------------------------------------------------------- /modules/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/keyboard.py -------------------------------------------------------------------------------- /modules/keycode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/keycode.py -------------------------------------------------------------------------------- /modules/netstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/netstat.py -------------------------------------------------------------------------------- /modules/openurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/openurl.py -------------------------------------------------------------------------------- /modules/reboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/reboot.py -------------------------------------------------------------------------------- /modules/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/screen.py -------------------------------------------------------------------------------- /modules/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/screenshot.py -------------------------------------------------------------------------------- /modules/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/shell.py -------------------------------------------------------------------------------- /modules/sysinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/sysinfo.py -------------------------------------------------------------------------------- /modules/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/type.py -------------------------------------------------------------------------------- /modules/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/upload.py -------------------------------------------------------------------------------- /modules/view_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/view_contacts.py -------------------------------------------------------------------------------- /modules/wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/modules/wifi.py -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/uninstall.sh -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrinixTechnology/Ghost/HEAD/update.sh --------------------------------------------------------------------------------