Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
cs-suite — Cloud Security Suite - Strumento unico per auditare la postura di sicurezza dell'infrastruttura AWS/GCP/Azure. | Kitploit
Strumenti/GitHubGitHub/securityftw/cs-suite
Sicurezza dell'Infrastruttura CloudScanner di VulnerabilitàAudit di ConfigurazionePenetration TestingSicurezza Cloud
GitHubsecurityftw/cs-suite

cs-suite

Cloud Security Suite - Strumento unico per auditare la postura di sicurezza dell'infrastruttura AWS/GCP/Azure.

Vedi Repository
1.2k2095 anni faRevisionato da Kitploit

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
Condividi

Cloud Security Suite (cs-suite) - Versione 3.0

Usage

root@kitploit:~
usage: cs.py [-h] -env {aws,gcp,azure,digitalocean} -aip AUDIT_IP -u USER_NAME -pem
             PEM_FILE [-p] [-pId PROJECT_ID] [-az_u AZURE_USER]
             [-az_p AZURE_PASS] [-o OUTPUT] [-w] [-n NUMBER]

this is to get IP address for lynis audit only

optional arguments:
  -h, --help            show this help message and exit
  -env {aws,gcp,azure,digitalocean}, --environment {aws,gcp,azure,digitalocean}
                        The cloud on which the test-suite is to be run
  -aip AUDIT_IP, --audit_ip AUDIT_IP
                        The IP for which lynis Audit needs to be done .... by
                        default tries root/Administrator if username not
                        provided
  -u USER_NAME, --user_name USER_NAME
                        The username of the user to be logged in,for a
                        specific user
  -pem PEM_FILE, --pem_file PEM_FILE
                        The pem file to access to AWS instance
  -p, --password        hidden password prompt
  -pId PROJECT_ID, --project_id PROJECT_ID
                        Project ID for which GCP Audit needs to be run. Can be
                        retrivied using `gcloud projects list`
  -az_u AZURE_USER, --azure_user AZURE_USER
                        username of azure account, optionally used if you want
                        to run the azure audit with no user interaction.
  -az_p AZURE_PASS, --azure_pass AZURE_PASS
                        username of azure password, optionally used if you
                        want to run the azure audit with no user interaction.
  -o OUTPUT, --output OUTPUT
                        writes a log in JSON of an audit, ideal for
                        consumptions into SIEMS like ELK and Splunk. Defaults
                        to cs-audit.log
  -w, --wipe            rm -rf reports/ folder before executing an audit
  -n, --number          Retain number of report to store for a particular 
                        environment and user/project.

Requisiti

  • Sistema operativo solo OSX o Linux
  • python 2.7
  • pip
  • git
  • jq
  • gcc (per installazione sshpass (Audit OS). Non è un prerequisito obbligatorio)
  • AWS Audit - Chiavi ReadOnly AWS
  • GCP Audit - configurazione gcloud
  • Azure Audit - accesso in sola lettura utente Azure
  • DigitalOcean Audit - Chiave API DigitalOcean e SPACES access_key e access_secret

Installazione

(per evitare conflitti con le librerie python già installate)

  • scarica il progetto git clone https://github.com/SecurityFTW/cs-suite.git && cd cs-suite/
  • installa virtualenv pip install virtualenv
  • crea un ambiente locale python 2.7 virtualenv -p python2.7 venv
  • attiva l'ambiente virtuale source venv/bin/activate
  • installa le dipendenze del progetto pip install -r requirements.txt
  • esegui il tool con python cs.py --help

Configurazione AWS

  • In AWS crea un utente IAM con almeno la policy arn:aws:iam::aws:policy/ReadOnlyAccess
  • Sul tuo computer installa aws cli brew install awscli per OSX
  • Configura AWS cli aws configure

Configurazione GCP

  • crea un progetto in GCP
  • abilita la Cloud Resource Manager API
  • crea un account di servizio, scarica il suo JSON della chiave e posizionalo in cs-suite/tools/G-Scout/keyfile.json
  • Installa Google Cloud SDK
  • configura Google Cloud SDK gcloud init

Configurazione Azure

  • registrati e accedi già a azure.microsoft.com
  • installa Azure CLI brew install az
  • autentica Azure CLI az login, dovresti vedere il tuo tipo di abbonamento se ha successo, simile alla risposta qui sotto:
root@kitploit:~
[
  {
    "cloudName": "AzureCloud",
    "id": "xxxxx-5595-4da5-bc27-xxxeeee",
    "isDefault": true,
    "name": "Free Trial",
    "state": "Enabled",
    "tenantId": "xxxxx-18e9-41a4-961b-xxxxx",
    "user": {
      "name": "[email protected]",
      "type": "user"
    }
  }
]

Configurazione DigitalOcean

  • crea Personal Access Tokens e Spaces Access keys su cloud.digitalocean.com
  • imposta le credenziali eseguendo export

export DO_KEY=*********************

export DO_ACCESS_KEY=*******************

export DO_SECRET_KEY=****************************

Esecuzione di cs-suite

root@kitploit:~
To run AWS Audit - python cs.py -env aws
To run GCP Audit - python cs.py -env gcp -pId <project_name>
To run Azure Audit - python cs.py -env azure
To run DigitalOcean Audit - python cs.py -env digitalocean
  • Il report finale sarà disponibile nella directory reports

  • Il report finale dell'audit AWS appare come segue:

Report audit AWS

  • Il report finale dell'audit GCP appare come segue:

Report audit GCP

Configurazione Docker

  • Crea una directory locale aws con i file credentials e config

  • Il file config appare come segue

root@kitploit:~
$ cat aws/config

[default]
output = json
region = us-east-1
  • Il file credentials appare come segue
root@kitploit:~
$ cat aws/credentials

[default]
aws_access_key_id = XXXXXXXXXXXXXXX
aws_secret_access_key = XXXXXXXXXXXXXXXXXXXXXXXXX

Nota: Questo tool richiede la policy IAM arn:aws:iam::aws:policy/ReadOnlyAccess

  • Quindi esegui il seguente comando docker per avviare (specificando il tuo ambiente)
root@kitploit:~
docker run -v `pwd`/aws:/root/.aws -v `pwd`/reports:/app/reports securityftw/cs-suite -env aws

Documentazione

https://securityftw.github.io

Ringraziamenti

  • Scout2 - https://github.com/nccgroup/Scout2
  • Prowler - https://github.com/Alfresco/prowler
  • Lunar - https://github.com/lateralblast/lunar
  • Lynis - https://github.com/CISOfy/lynis
  • G-Scout - https://github.com/nccgroup/G-Scout
  • @alanrenouf - https://github.com/alanrenouf/Windows-Workstation-and-Server-Audit
  • Ranjeet Sengar - https://github.com/sengar23
Scarica lo strumento