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
ACEshark — ACEshark is a utility designed for rapid extraction and analysis of Windows service configurations and Access Control Entries, eliminating the need for tools like accesschk.exe or other non-native binaries. | Kitploit
Ferramentas/GitHubGitHub/t3l3machus/aceshark
Privilege EscalationVulnerability AnalysisConfiguration AuditingInformation GatheringPost-ExploitationPenetration TestingRed Teaming
GitHubt3l3machus/aceshark

ACEshark

ACEshark is a utility designed for rapid extraction and analysis of Windows service configurations and Access Control Entries, eliminating the need for tools like accesschk.exe or other non-native binaries.

Ver Repositório
14823há 1 anoRevisado 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

ACEshark

Python License

O que é?

O ACEshark é um utilitário projetado para extração e análise rápidas de configurações de serviços do Windows e Entradas de Controle de Acesso, eliminando a necessidade de ferramentas como accesschk.exe ou outros binários não nativos.

Por quê?

  • Identificar e analisar eficientemente as permissões de serviços para descobrir potenciais vetores de escalonamento de privilégios (alterar o binpath de um serviço e reiniciá-lo).
  • Auditar permissões de serviços para usuários específicos ou em todos os grupos e contas.

Como funciona

A execução do ACEshark inicia um servidor HTTP/HTTPS para atuar como ouvinte das configurações de serviços e Entradas de Controle de Acesso. Ele gera um pequeno script extrator baseado nas opções especificadas, que o usuário executa na máquina alvo. O ACEshark então recupera e processa os dados, fornecendo uma análise detalhada.

O ACEshark gera um arquivo de log para cada configuração de serviços extraída, permitindo que relatórios sejam regenerados se necessário.

❗Importante

  1. Mesmo que um serviço seja caracterizado como um ótimo candidato para escalonamento de privilégios de acordo com seus ACEs e configuração, existem outros recursos de segurança do Windows que podem impedir que você realmente abuse dele.
  2. Provavelmente, isso não será particularmente furtivo.
  3. Usar esta ferramenta contra hosts para os quais você não tem permissão explícita de teste é ilegal. Você é responsável por qualquer problema que possa causar ao usar esta ferramenta.

Visão geral

image

aceshark2

Instalação

  1. Clone o repositório:
root@kitploit:~
git clone https://github.com/t3l3machus/ACEshark
  1. Instale as dependências:
root@kitploit:~
cd ACEshark  
pip3 install -r requirements.txt  

Está tudo pronto.

Nota: Se a cópia automática do script extrator para a área de transferência falhar, talvez seja necessário instalar um mecanismo de copiar/colar, como sudo apt-get install xclip ou sudo apt-get install xselect.

Uso

root@kitploit:~
ACEshark.py [-h] [-s SERVER_ADDRESS] [-p PORT] [-c CERTFILE] [-k KEYFILE] [-f FILE_INPUT] [-i] [-g] [-a] [-x CUSTOM_MODE] [-lg] [-gs] [-e] [-z CONFIG_FILENAME] [-d DELIMITER] [-q] [-v]

ACEshark is a utility designed for rapid extraction and analysis of Windows service configurations and Access Control Entries, eliminating the need for tools like accesschk.exe or other non-native binaries.

options:
  -h, --help            show this help message and exit

BASIC OPTIONS:
  -s SERVER_ADDRESS, --server-address SERVER_ADDRESS
                        Your server IP or domain name. This option cannot be used with -f.
  -p PORT, --port PORT  HTTP / HTTPS server port (default: 80 / 443).
  -c CERTFILE, --certfile CERTFILE
                        Optional: Path to the TLS certificate for enabling HTTPS.
  -k KEYFILE, --keyfile KEYFILE
                        Optional: Path to the private key for the TLS certificate.
  -f FILE_INPUT, --file-input FILE_INPUT
                        ACEshark creates log files every time you run the extractor script on a machine (stored in ~/.ACEshark). Use this option to regenerate a services config analysis from a log file. This
                        option cannot be used with -s.

MODES:
  -i, --interesting-only
                        List only those service ACEs that can potentially be abused by your user, based on their SID and group membership, with at least (WRITE_PROPERTY AND CONTROL_ACCESS) or GENERIC_ALL
                        privileges.
  -g, --great-candidates
                        Similar to --interesting-only but with stricter criteria. A service is labeled as a great candidate for privilege escalation if the service's START_TYPE == DEMAND_START AND TYPE ==
                        WIN32_OWN_PROCESS AND your user has (WRITE_PROPERTY AND CONTROL_ACCESS) OR GENERIC_ALL privileges.
  -a, --audit           Audit mode. Analyzes all service ACEs without searching for user-specific abusable services (Long output). This option also downgrades the extractor script, omitting the retrieval of
                        the current user's SID and group membership information. By default, the WRITE_PROPERTY and CONTROL_ACCESS rights are highlighted for simplicity when they are present.
  -x CUSTOM_MODE, --custom-mode CUSTOM_MODE
                        Provide a comma-separated list of integers representing the generic access rights to match. Only service ACEs that your user may be able to abuse, based on their SID and group
                        membership matching the provided rights, will be listed. Use -lg to list all predefined generic access rights.
  -lg, --list-generic   List all predefined generic access rights.

EXTRACTOR MODIFICATIONS:
  -gs, --get-service    This option modifies the extractor script to use Get-Service for listing available services. While cleaner, it may not work with a low-privileged account. The default Get-ChildItem
                        approach, though less elegant, is more likely to succeed in most cases.
  -e, --encode          Generate Base64-encoded services configuration extractor script instead of raw PowerShell.
  -z CONFIG_FILENAME, --config-filename CONFIG_FILENAME
                        Change the temporary filename used to store the extracted services configuration before transferring the data via HTTP (default: sc.txt).
  -d DELIMITER, --delimiter DELIMITER
                        Change the delimiter value used for service config serialization (default: #~). Use this option cautiously. It is rarely needed.

OUTPUT:
  -q, --quiet           Do not print the banner on startup.
  -v, --verbose         Print the user's SID and group membership info as well (not applicable in Audit mode).

Agradecimentos Especiais

  • Marios K. Pappas (aka Pri3st), por ajudar a testar a ferramenta!
  • TJ_Null, por testar e fornecer feedback valioso!
Baixar ferramenta