Skip to content
KitploitKITPLOIT
FerramentasBlog
Enviar
FerramentasBlog
Enviar

Ferramentas de Hacking, PenTest e Cibersegurança para o seu Arsenal de Segurança!

Kitploit é um diretório de ferramentas de hacking, cibersegurança e pentesting. Descubra as últimas atualizações de projetos para encontrar vulnerabilidades, analisar sistemas, automatizar testes e fortalecer sua segurança.

··Feeds·Contato·Privacidade·© 2026 Kitploit

Diretório de Ferramentas

Categorias

Ver todas as categorias
Loading categories
cs-suite — Cloud Security Suite - Ferramenta completa para auditar a postura de segurança da infraestrutura AWS/GCP/Azure. | Kitploit
Ferramentas/GitHubGitHub/securityftw/cs-suite
Segurança de Infraestrutura em NuvemScanners de VulnerabilidadesAuditoria de ConfiguraçãoTestes de PenetraçãoSegurança na Nuvem
GitHubsecurityftw/cs-suite

cs-suite

Cloud Security Suite - Ferramenta completa para auditar a postura de segurança da infraestrutura AWS/GCP/Azure.

Ver Repositório
1.2k209há 5 anosRevisado pelo Kitploit

Mais Populares

Ver todos →

Descubra as ferramentas mais usadas pela nossa comunidade.

Explore todas as ferramentas

Navegue pela nossa coleção de ferramentas

Ver todas as ferramentas →
Compartilhar

Cloud Security Suite (cs-suite) - Versão 3.0

Uso

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.

Requisitos

  • Sistema Operacional OSX ou Linux apenas
  • python 2.7
  • pip
  • git
  • jq
  • gcc (para instalação do sshpass (Auditoria de SO). Não é um pré-requisito obrigatório)
  • Auditoria AWS - Chaves ReadOnly da AWS
  • Auditoria GCP - Configuração do gcloud
  • Auditoria Azure - Acesso de leitura do usuário Azure
  • Auditoria DigitalOcean - Chave de API DigitalOcean e access_key e access_secret do SPACES

Instalação

(para evitar conflitos com as bibliotecas python já instaladas)

  • obter o projeto git clone https://github.com/SecurityFTW/cs-suite.git && cd cs-suite/
  • instalar virtualenv pip install virtualenv
  • criar um ambiente local python 2.7 virtualenv -p python2.7 venv
  • ativar o ambiente virtual source venv/bin/activate
  • instalar as dependências do projeto pip install -r requirements.txt
  • executar a ferramenta via python cs.py --help

Configuração AWS

  • Na AWS, crie um usuário IAM com pelo menos a seguinte política arn:aws:iam::aws:policy/ReadOnlyAccess
  • No seu ambiente local, instale o aws cli brew install awscli para OSX
  • Configure o AWS cli aws configure

Configuração GCP

  • crie um projeto no GCP
  • ative a API Cloud Resource Manager
  • crie uma conta de serviço, baixe o JSON da chave e coloque em cs-suite/tools/G-Scout/keyfile.json
  • Instale o Google Cloud SDK
  • configure o Google Cloud SDK gcloud init

Configuração Azure

  • inscreva-se e já tenha feito login em azure.microsoft.com
  • instale a CLI do Azure brew install az
  • autentique a CLI do Azure az login, você deve ver seu tipo de assinatura se for bem-sucedido, de forma semelhante à resposta abaixo:
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"
    }
  }
]

Configuração DigitalOcean

  • crie Tokens de Acesso Pessoal e chaves de Acesso Spaces cloud.digitalocean.com
  • defina as credenciais executando export

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

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

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

Executando o 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
  • O relatório final estará disponível no diretório reports

  • O relatório de auditoria AWS final é mostrado abaixo:

Relatório de auditoria AWS

  • O relatório de auditoria GCP final é mostrado abaixo:

Relatório de auditoria GCP

Configuração Docker

  • Crie um diretório local aws com os arquivos credentials e config

  • O arquivo config é mostrado abaixo

root@kitploit:~
$ cat aws/config

[default]
output = json
region = us-east-1
  • O arquivo credentials é mostrado abaixo
root@kitploit:~
$ cat aws/credentials

[default]
aws_access_key_id = XXXXXXXXXXXXXXX
aws_secret_access_key = XXXXXXXXXXXXXXXXXXXXXXXXX

Nota: Esta ferramenta requer a política IAM arn:aws:iam::aws:policy/ReadOnlyAccess

  • Em seguida, execute o seguinte comando docker para iniciar (passando seu ambiente específico)
root@kitploit:~
docker run -v `pwd`/aws:/root/.aws -v `pwd`/reports:/app/reports securityftw/cs-suite -env aws

Documentação

https://securityftw.github.io

Agradecimentos

  • 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
Baixar ferramenta