GCP - Security Post Exploitation

支持 HackTricks

安全

更多信息请查看:

GCP - Security Enum

securitycenter.muteconfigs.create

通过创建 muteconfig 来防止生成可能检测到攻击者的发现:

# 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