├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── screenshots ├── advisor.png ├── allsg.png ├── help.png ├── missed.png ├── new.png ├── obsolete.png ├── req.png ├── sg00.png ├── sg01.png └── stagingip.png ├── securitygroup └── __init__.py ├── siteshield └── __init__.py ├── sssg.py └── staging_ip /.gitignore: -------------------------------------------------------------------------------- 1 | log 2 | notes 3 | .idea 4 | *__init__.pyc 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | boto3==1.4.1 2 | requests==2.20.0 3 | edgegrid_python==1.0.10 4 | -------------------------------------------------------------------------------- /screenshots/advisor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/screenshots/advisor.png -------------------------------------------------------------------------------- /screenshots/allsg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/screenshots/allsg.png -------------------------------------------------------------------------------- /screenshots/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/screenshots/help.png -------------------------------------------------------------------------------- /screenshots/missed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/screenshots/missed.png -------------------------------------------------------------------------------- /screenshots/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/screenshots/new.png -------------------------------------------------------------------------------- /screenshots/obsolete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/screenshots/obsolete.png -------------------------------------------------------------------------------- /screenshots/req.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/screenshots/req.png -------------------------------------------------------------------------------- /screenshots/sg00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/screenshots/sg00.png -------------------------------------------------------------------------------- /screenshots/sg01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/screenshots/sg01.png -------------------------------------------------------------------------------- /screenshots/stagingip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/screenshots/stagingip.png -------------------------------------------------------------------------------- /securitygroup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/securitygroup/__init__.py -------------------------------------------------------------------------------- /siteshield/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/siteshield/__init__.py -------------------------------------------------------------------------------- /sssg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/sssg.py -------------------------------------------------------------------------------- /staging_ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jc1518/SSSG-Ninja/HEAD/staging_ip --------------------------------------------------------------------------------