├── .DS_Store ├── .gitignore ├── README.md ├── dictionaries ├── secrets-keywords.txt └── secrets-keywords0.txt ├── jir_thief.py ├── loot ├── .DS_Store └── .gitkeep └── static └── jir_thief-banner.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antman1p/Jir-Thief/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antman1p/Jir-Thief/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antman1p/Jir-Thief/HEAD/README.md -------------------------------------------------------------------------------- /dictionaries/secrets-keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antman1p/Jir-Thief/HEAD/dictionaries/secrets-keywords.txt -------------------------------------------------------------------------------- /dictionaries/secrets-keywords0.txt: -------------------------------------------------------------------------------- 1 | ConsumerKey 2 | encryptionkey 3 | slack_token 4 | -------------------------------------------------------------------------------- /jir_thief.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antman1p/Jir-Thief/HEAD/jir_thief.py -------------------------------------------------------------------------------- /loot/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antman1p/Jir-Thief/HEAD/loot/.DS_Store -------------------------------------------------------------------------------- /loot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/jir_thief-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antman1p/Jir-Thief/HEAD/static/jir_thief-banner.png --------------------------------------------------------------------------------