├── README.md ├── UNLICENSE ├── basicRAT_client.py ├── basicRAT_server.py └── core ├── __init__.py ├── aes_gcm.py ├── common.py ├── crypto.py ├── filesock.py ├── persistence.py ├── scan.py ├── survey.py └── toolkit.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanlopez/basicRAT/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanlopez/basicRAT/HEAD/UNLICENSE -------------------------------------------------------------------------------- /basicRAT_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanlopez/basicRAT/HEAD/basicRAT_client.py -------------------------------------------------------------------------------- /basicRAT_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanlopez/basicRAT/HEAD/basicRAT_server.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/aes_gcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanlopez/basicRAT/HEAD/core/aes_gcm.py -------------------------------------------------------------------------------- /core/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanlopez/basicRAT/HEAD/core/common.py -------------------------------------------------------------------------------- /core/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanlopez/basicRAT/HEAD/core/crypto.py -------------------------------------------------------------------------------- /core/filesock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanlopez/basicRAT/HEAD/core/filesock.py -------------------------------------------------------------------------------- /core/persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanlopez/basicRAT/HEAD/core/persistence.py -------------------------------------------------------------------------------- /core/scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanlopez/basicRAT/HEAD/core/scan.py -------------------------------------------------------------------------------- /core/survey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanlopez/basicRAT/HEAD/core/survey.py -------------------------------------------------------------------------------- /core/toolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanlopez/basicRAT/HEAD/core/toolkit.py --------------------------------------------------------------------------------