├── LICENSE ├── README.md ├── configfiles └── config.json ├── core ├── AWS │ └── Authentication │ │ └── Authentication.py ├── Arguments │ ├── __init__.py │ └── arguments.py ├── DETECT │ ├── Detect.py │ └── __init__.py ├── FLOWLOGS │ ├── FlowLogs.py │ └── __init__.py ├── IDENTIFY │ └── Identify.py ├── SIMULATE │ ├── Cloudtrail_testings │ │ ├── __init__.py │ │ ├── test1.py │ │ ├── test2.py │ │ ├── test3.py │ │ └── test4.py │ ├── Kms_key_testings │ │ ├── __init__.py │ │ ├── test1.py │ │ ├── test2.py │ │ ├── test3.py │ │ └── test4.py │ ├── S3_bucket_testings │ │ ├── __init__.py │ │ ├── test1.py │ │ ├── test2.py │ │ ├── test3.py │ │ └── test4.py │ └── __init__.py └── Usages │ ├── RunDetect.py │ ├── RunFlowLogs.py │ ├── RunIdentify.py │ └── RunSimulate.py ├── images ├── BucketShield_Banner_Image.png ├── BucketShield_Config.png ├── BucketShield_DETECT.png ├── BucketShield_FLOWLOGS.png └── BucketShield_IDENTIFY.png ├── main.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/README.md -------------------------------------------------------------------------------- /configfiles/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/configfiles/config.json -------------------------------------------------------------------------------- /core/AWS/Authentication/Authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/AWS/Authentication/Authentication.py -------------------------------------------------------------------------------- /core/Arguments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Arguments/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/Arguments/arguments.py -------------------------------------------------------------------------------- /core/DETECT/Detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/DETECT/Detect.py -------------------------------------------------------------------------------- /core/DETECT/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/FLOWLOGS/FlowLogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/FLOWLOGS/FlowLogs.py -------------------------------------------------------------------------------- /core/FLOWLOGS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/IDENTIFY/Identify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/IDENTIFY/Identify.py -------------------------------------------------------------------------------- /core/SIMULATE/Cloudtrail_testings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/SIMULATE/Cloudtrail_testings/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/SIMULATE/Cloudtrail_testings/test1.py -------------------------------------------------------------------------------- /core/SIMULATE/Cloudtrail_testings/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/SIMULATE/Cloudtrail_testings/test2.py -------------------------------------------------------------------------------- /core/SIMULATE/Cloudtrail_testings/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/SIMULATE/Cloudtrail_testings/test3.py -------------------------------------------------------------------------------- /core/SIMULATE/Cloudtrail_testings/test4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/SIMULATE/Cloudtrail_testings/test4.py -------------------------------------------------------------------------------- /core/SIMULATE/Kms_key_testings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/SIMULATE/Kms_key_testings/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/SIMULATE/Kms_key_testings/test1.py -------------------------------------------------------------------------------- /core/SIMULATE/Kms_key_testings/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/SIMULATE/Kms_key_testings/test2.py -------------------------------------------------------------------------------- /core/SIMULATE/Kms_key_testings/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/SIMULATE/Kms_key_testings/test3.py -------------------------------------------------------------------------------- /core/SIMULATE/Kms_key_testings/test4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/SIMULATE/Kms_key_testings/test4.py -------------------------------------------------------------------------------- /core/SIMULATE/S3_bucket_testings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/SIMULATE/S3_bucket_testings/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/SIMULATE/S3_bucket_testings/test1.py -------------------------------------------------------------------------------- /core/SIMULATE/S3_bucket_testings/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/SIMULATE/S3_bucket_testings/test2.py -------------------------------------------------------------------------------- /core/SIMULATE/S3_bucket_testings/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/SIMULATE/S3_bucket_testings/test3.py -------------------------------------------------------------------------------- /core/SIMULATE/S3_bucket_testings/test4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/SIMULATE/S3_bucket_testings/test4.py -------------------------------------------------------------------------------- /core/SIMULATE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Usages/RunDetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/Usages/RunDetect.py -------------------------------------------------------------------------------- /core/Usages/RunFlowLogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/Usages/RunFlowLogs.py -------------------------------------------------------------------------------- /core/Usages/RunIdentify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/Usages/RunIdentify.py -------------------------------------------------------------------------------- /core/Usages/RunSimulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/core/Usages/RunSimulate.py -------------------------------------------------------------------------------- /images/BucketShield_Banner_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/images/BucketShield_Banner_Image.png -------------------------------------------------------------------------------- /images/BucketShield_Config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/images/BucketShield_Config.png -------------------------------------------------------------------------------- /images/BucketShield_DETECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/images/BucketShield_DETECT.png -------------------------------------------------------------------------------- /images/BucketShield_FLOWLOGS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/images/BucketShield_FLOWLOGS.png -------------------------------------------------------------------------------- /images/BucketShield_IDENTIFY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/images/BucketShield_IDENTIFY.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Permiso-io-tools/bucket-shield/HEAD/requirements.txt --------------------------------------------------------------------------------