Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 모의해킹
- hacking case
- ISMS-P 인증심사원
- AWS 쿠버네티스
- 정보보안기사
- TSK
- Autopsy
- artifacts
- kubernetes
- AWS EKS
- AWS
- ISMS
- k8s
- forensic
- 보안기사
- 정보보안기사 실기
- 실습
- The Sleuth Kit
- AWS Opensearch
- 쿠버네티스
- iam
- 해킹
- isms-p
- SMS-P 인증 기준 안내서 요약
- 보안
- CFReDS
- AWS Elasticsearch
- 포렌식
- 정보보안
- AWS EKS Udemy
Archives
- Today
- Total
Always-Try(정보보안 및 일상)
파이썬 이용한 AWS Security Group 보안 (ANY ANY 열린 그룹 조회) 본문
파이썬 boto3 활용하여 ANY ANY 열린 시큐리티 그룹 조회
import boto3
from botocore.exceptions import ClientError
ec2 = boto3.client('ec2')
def get_sg_list():
response = ec2.describe_security_groups()['SecurityGroups']
for i in response:
sg_id = i['GroupId']
check_inbound_rule(sg_id)
check_outbound_rule(sg_id)
def check_inbound_rule(sg_id):
try:
data = ec2.describe_security_groups(GroupIds=[sg_id])['SecurityGroups'][0]['IpPermissions']
for i in data:
get_port = i['IpProtocol']
if get_port == '-1':
get_ip = i['IpRanges'][0]['CidrIp']
print(f"인바운드 ANY ANY 열린 Security Group은 {sg_id}")
except KeyError:
pass
except IndexError:
pass
def check_outbound_rule(sg_id):
try:
data = ec2.describe_security_groups(GroupIds=[sg_id])['SecurityGroups'][0]['IpPermissionsEgress']
for i in data:
get_port = i['IpProtocol']
if get_port == '-1':
get_ip = i['IpRanges'][0]['CidrIp']
print(f"아웃바운드 ANY ANY 열린 Security Group은 {sg_id}")
except KeyError:
pass
except IndexError:
pass
if __name__ == "__main__":
get_sg_list()
'AWS' 카테고리의 다른 글
파이썬 이용한 AWS Security Group 보안 (휴면 에러 방지) (0) | 2021.11.22 |
---|---|
파이썬 이용한 AWS Security Group 보안 (특정 포트에 0.0.0.0/0 대역 오픈) (0) | 2021.11.22 |
AWS DNA 3기 후기 (Digital Native Architects) (0) | 2021.11.15 |
AWS DNA - 1주차 Peak Load Control with Serverless - 3/3 (0) | 2021.09.15 |
AWS DNA - 1주차 Peak Load Control with Serverless - 2/3 (0) | 2021.09.13 |
Comments