├── .gitignore ├── CONTRIBUTING.md ├── CONTRIBUTION-CODE-OF-CONDUCT.md ├── LICENSE ├── LambdaLooter.py ├── README.md ├── auth.py ├── claws.py ├── constants.py ├── ec2looter.py ├── parsing.py ├── secrethandler.py ├── secretvalidation.py ├── signatures └── sig_all_tokens.json ├── ssmlooter.py └── support ├── expiredJWT.py └── nonvalidatedstats.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTION-CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/CONTRIBUTION-CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/LICENSE -------------------------------------------------------------------------------- /LambdaLooter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/LambdaLooter.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/README.md -------------------------------------------------------------------------------- /auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/auth.py -------------------------------------------------------------------------------- /claws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/claws.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/constants.py -------------------------------------------------------------------------------- /ec2looter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/ec2looter.py -------------------------------------------------------------------------------- /parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/parsing.py -------------------------------------------------------------------------------- /secrethandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/secrethandler.py -------------------------------------------------------------------------------- /secretvalidation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/secretvalidation.py -------------------------------------------------------------------------------- /signatures/sig_all_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/signatures/sig_all_tokens.json -------------------------------------------------------------------------------- /ssmlooter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/ssmlooter.py -------------------------------------------------------------------------------- /support/expiredJWT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/support/expiredJWT.py -------------------------------------------------------------------------------- /support/nonvalidatedstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StateFarmIns/CLAWS/HEAD/support/nonvalidatedstats.py --------------------------------------------------------------------------------