├── README.md ├── VERSION ├── core ├── __init__.py ├── colors.py ├── config.py ├── menu.py └── update.py ├── jaidam.py ├── modules ├── __init__.py ├── grscan.py ├── modmenu.py └── otenet.py ├── scan ├── __init__.py ├── jms.py ├── lst.py └── wps.py └── sites └── jaidamSQLite.db /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasinopoulos/Jaidam/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | version = 1.0.0 [Alpha] 2 | -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasinopoulos/Jaidam/HEAD/core/colors.py -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasinopoulos/Jaidam/HEAD/core/config.py -------------------------------------------------------------------------------- /core/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasinopoulos/Jaidam/HEAD/core/menu.py -------------------------------------------------------------------------------- /core/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasinopoulos/Jaidam/HEAD/core/update.py -------------------------------------------------------------------------------- /jaidam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasinopoulos/Jaidam/HEAD/jaidam.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/grscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasinopoulos/Jaidam/HEAD/modules/grscan.py -------------------------------------------------------------------------------- /modules/modmenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasinopoulos/Jaidam/HEAD/modules/modmenu.py -------------------------------------------------------------------------------- /modules/otenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasinopoulos/Jaidam/HEAD/modules/otenet.py -------------------------------------------------------------------------------- /scan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scan/jms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasinopoulos/Jaidam/HEAD/scan/jms.py -------------------------------------------------------------------------------- /scan/lst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasinopoulos/Jaidam/HEAD/scan/lst.py -------------------------------------------------------------------------------- /scan/wps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasinopoulos/Jaidam/HEAD/scan/wps.py -------------------------------------------------------------------------------- /sites/jaidamSQLite.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stasinopoulos/Jaidam/HEAD/sites/jaidamSQLite.db --------------------------------------------------------------------------------