tkisason - Overview
Pinned Loading
-
This AWS lambda function will add th... This AWS lambda function will add the source IP from a GET request to a EC2 security group. Useful for CTF's where you want to have a vulnerable AWS infra, but want to "pre-clear" players (by them accessing/curling one URL) and allow them access through a secgroup.
3
from botocore.exceptions import ClientError
4
ec2 = boto3.client('ec2')
5
security_group_id = "sg-..." ## add your security group ID here!
-
Detect potentially tampered jar files by looking them up against maven's upstream repo
Python