Skip to content

Latest commit

 

History

History
76 lines (55 loc) · 2.16 KB

README.md

File metadata and controls

76 lines (55 loc) · 2.16 KB

PANOPTES

Panoptes is an automatic security group analyzer focused on reducing the amount of toiling. Mainly focused on AWS, built to be extensible in the future and support the big cloud providers out there.



For AWS usage

  • AWS CLI installed and configured with your IAM credentials (if you want more customization use Named Profiles)


Get the latest version of the package from your terminal with pip:

pip install panoptes --upgrade


If you want to see the available options:

panoptesctl aws analyze --help

Generate an AWS analysis with an YML output from a specific region:

panoptesctl aws analyze --region <YOUR_REGION_CODE> --output yml

Check out AWS Regions to see available region codes



Manually

If you wish to whitelist IPs, not letting the analysis mark them as Unsafe, you can define a sample file with the desired IPs and CIDRs, like the following one:


your_whitelist.txt

111.111.111.111/32
123.123.123.123/32

And then run the analysis with the parameter --whitelist:

panoptesctl aws analyze --region <YOUR_REGION_CODE> --output yml --whitelist /PATH/TO/your_whitelist.txt

Automatically

Panoptes generates automatically a list of IPs which it does not consider harmful from the desired cloud provider.


AWS autogenerated

  • VPC ranges
  • Subnet ranges
  • Private IPs from EC2 VPC Instances
  • Public IPs from EC2 VPC Instances
  • Elastic IPs


The Automatic AWS Whitelist feature can't whitelist public and private IP's from EC2 Classic, so make sure that those instances have an Elastic IP attached and their security groups are pointing to the new Elastic IP attached instead of the default EC2 Classic ones.