├── .gitignore ├── .img ├── allusers.png ├── detentiondodger.png └── singleuser.png ├── Dockerfile ├── LICENSE ├── README.md ├── core ├── Authentication │ └── Authentication.py ├── Other │ ├── Arguments │ │ ├── ArgParse.py │ │ └── Banner.py │ ├── PrintOutput │ │ └── PrintOutput.py │ └── TablePrint.py └── Resources │ ├── AccessAnalyzer │ └── AccessAnalyzer.py │ ├── CloudTrail │ └── FindQuarantineAttachment.py │ ├── IAM │ └── BypassCheck.py │ ├── MainActivity │ └── MainActivity.py │ └── OutputDump │ └── OutputDump.py ├── detentiondodger.py ├── requirements.txt └── scenarios ├── allservices.json └── scenarios.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/.gitignore -------------------------------------------------------------------------------- /.img/allusers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/.img/allusers.png -------------------------------------------------------------------------------- /.img/detentiondodger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/.img/detentiondodger.png -------------------------------------------------------------------------------- /.img/singleuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/.img/singleuser.png -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/README.md -------------------------------------------------------------------------------- /core/Authentication/Authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/core/Authentication/Authentication.py -------------------------------------------------------------------------------- /core/Other/Arguments/ArgParse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/core/Other/Arguments/ArgParse.py -------------------------------------------------------------------------------- /core/Other/Arguments/Banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/core/Other/Arguments/Banner.py -------------------------------------------------------------------------------- /core/Other/PrintOutput/PrintOutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/core/Other/PrintOutput/PrintOutput.py -------------------------------------------------------------------------------- /core/Other/TablePrint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/core/Other/TablePrint.py -------------------------------------------------------------------------------- /core/Resources/AccessAnalyzer/AccessAnalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/core/Resources/AccessAnalyzer/AccessAnalyzer.py -------------------------------------------------------------------------------- /core/Resources/CloudTrail/FindQuarantineAttachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/core/Resources/CloudTrail/FindQuarantineAttachment.py -------------------------------------------------------------------------------- /core/Resources/IAM/BypassCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/core/Resources/IAM/BypassCheck.py -------------------------------------------------------------------------------- /core/Resources/MainActivity/MainActivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/core/Resources/MainActivity/MainActivity.py -------------------------------------------------------------------------------- /core/Resources/OutputDump/OutputDump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/core/Resources/OutputDump/OutputDump.py -------------------------------------------------------------------------------- /detentiondodger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/detentiondodger.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/requirements.txt -------------------------------------------------------------------------------- /scenarios/allservices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/scenarios/allservices.json -------------------------------------------------------------------------------- /scenarios/scenarios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/DetentionDodger/HEAD/scenarios/scenarios.json --------------------------------------------------------------------------------