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
Ferramentas/GitHubGitHub/sh1n0g1/z9
Análise EstáticaAnálise ForenseAnálise de MalwareInteligência de AmeaçasAnálise de Logs
GitHubsh1n0g1/z9

z9

Detecta artefatos de malware baseados em PowerShell a partir de logs de eventos e realiza análise estática em scripts PowerShell para identificar atividades maliciosas.

Ver Repositório
6885há 2 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

z9 Analisador de Logs PowerShell

Japonês

Z9 Logo

Resumo

Esta ferramenta detecta artefatos de malware baseado em PowerShell a partir do log de eventos do registro do PowerShell.
Demonstração Online

Instalação

root@kitploit:~
git clone https://github.com/Sh1n0g1/z9
cd z9
pip install -r requirements.txt

Como usar

root@kitploit:~
usage: z9.py [-h] [--output OUTPUT] [-s] [--no-viewer] [--utf8] input

positional arguments:
  input                 Input file path

options:
  -h, --help            show this help message and exit
  --output OUTPUT, -o OUTPUT
                        Output file path
  -s, --static          Enable Static Analysis mode
  --no-viewer           Disable opening the JSON viewer in a web browser
  --utf8                Read scriptfile in utf-8 (deprecated)

Analisar Logs de Eventos (Recomendado)

root@kitploit:~
python z9.py <input file> -o <output json>
python z9.py <input file> -o <output json> --no-viewer
ArgumentosSignificado
input fileArquivo XML exportado do log de eventos
-o output jsonnome do arquivo de resultado do z9
--no-viewer não abrir o visualizador

Exemplo)

root@kitploit:~
python z9.py util\log\mwpsop.xml -o sample1.json

Analisar Arquivo PowerShell Estaticamente

  • Esta abordagem fará apenas a análise estática e pode não fornecer um resultado adequado, especialmente quando a amostra está ofuscada.
root@kitploit:~
python z9.py <input file> -o <output json> -s
python z9.py <input file> -o <output json> -s --utf8
python z9.py <input file> -o <output json> -s --no-viewer
ArgumentosSignificado
input fileArquivo PowerShell a ser analisado
-o output jsonnome do arquivo de resultado do z9
-srealizar análise estática
--utf8especificar quando o arquivo de entrada está em UTF-8
--no-viewer não abrir o visualizador

Exemplo)

root@kitploit:~
python z9.py malware.ps1 -o sample1.json -s

Como preparar o arquivo XML

Habilitar o Registro do PowerShell

  1. Clique com o botão direito e mescle este arquivo de registro:util/enable_powershell_logging.reg .
  2. Reinicie o PC
  3. Todas as execuções do PowerShell serão registradas no log de eventos

Exportar Log de Eventos para XML

  1. Execute este arquivo batch:util/collect_psevent.bat .
  2. Os arquivos XML serão criados no diretório util/log.
  3. Ambos os arquivos XML podem ser analisados por esta ferramenta.

Como Excluir o Log de Eventos Existente

  • Execute este arquivo batch:util/collect_psevent.bat como "Executar como Administrador"

Autores

hanataro-miz
si-tm
take32457
Bigdrea6
azaberrypi
Sh1n0g1

Baixar ferramenta