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
fprobe — Pegue uma lista de domínios/subdomínios e teste por servidor http/https funcional. | Kitploit
Ferramentas/GitHubGitHub/theblackturtle/fprobe
ReconhecimentoMapeamento de RedeColeta de InformaçõesSegurança Web
GitHubtheblackturtle/fprobe

fprobe

Pegue uma lista de domínios/subdomínios e teste por servidor http/https funcional.

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

FProbe

FProbe - Sonda HTTP Rápida

Instalação

root@kitploit:~
GO111MODULE=on go get -u github.com/theblackturtle/fprobe

Funcionalidades

  • Recebe uma lista de domínios/subdomínios e verifica servidores http/https ativos.
  • Otimiza RAM e CPU em tempo de execução.
  • Suporta portas especiais para cada domínio.
  • Modo verbose em formato JSON com alguns cabeçalhos adicionais, como Status Code, Content Type, Location.

Uso

root@kitploit:~
Usage of fprobe:
  -c int
        Concurrency (default 50)
  -cidr
        Generate IP addresses from CIDR
  -i string
        Input file (default is stdin) (default "-")
  -l    Use ports in the same line (google.com,2087,2086)
  -p value
        add additional probe (proto:port)
  -prefer-https
        only try plain HTTP if HTTPS fails
  -s    skip the default probes (http:80 and https:443)
  -t int
        Timeout (seconds) (default 9)
  -v    Turn on verbose

Uso Básico

Entrada por stdin

root@kitploit:~
❯ cat domains.txt | fprobe

Entrada por arquivo

root@kitploit:~
❯ fprobe -i domains.txt

Concorrência

root@kitploit:~
❯ cat domains.txt | fprobe -c 200

Usar portas inline

Se você quiser usar portas especiais para cada domínio, pode usar a flag -l. Você pode analisar a saída do Nmap/Masscan e reformatá-la para usar esse recurso.

Entrada (domains.txt)

root@kitploit:~
google.com,2087,2086,8880,2082,443,80,2052,2096,2083,8080,8443,2095,2053
yahoo.com,2087,2086,8880,2082,443,80,2052,2096,2083,8080,8443,2095,2053
sport.yahoo.com,2086,443,2096,2053,8080,2082,80,2083,8443,2052,2087,2095,8880

Comando

root@kitploit:~
❯ cat domains.txt | fprobe -l

Tempo limite

root@kitploit:~
❯ cat domains.txt | fprobe -t 10

Portas especiais

root@kitploit:~
❯ cat domains.txt | fprobe -p http:8080 -p https:8443

Usar para verificar URLs ativos

root@kitploit:~
❯ echo 'https://google.com/path1?param=1' | fprobe

https://google.com/path1?param=1

Entrada CIDR

root@kitploit:~
❯ echo '192.168.1.1/24' | fprobe -cidr

Usar a coleção de portas embutida (inclui 80, 443 por padrão)

  • Medium: 8000, 8080, 8443
  • Large: 81, 591, 2082, 2087, 2095, 2096, 3000, 8000, 8001, 8008, 8080, 8083, 8443, 8834, 8888
  • XLarge: 81, 300, 591, 593, 832, 981, 1010, 1311, 2082, 2087, 2095, 2096, 2480, 3000, 3128, 3333, 4243, 4567, 4711, 4712, 4993, 5000, 5104, 5108, 5800, 6543, 7000, 7396, 7474, 8000, 8001, 8008, 8014, 8042, 8069, 8080, 8081, 8088, 8090, 8091, 8118, 8123, 8172, 8222, 8243, 8280, 8281, 8333, 8443, 8500, 8834, 8880, 8888, 8983, 9000, 9043, 9060, 9080, 9090, 9091, 9200, 9443, 9800, 9981, 12443, 16080, 18091, 18092, 20720, 28017
root@kitploit:~
❯ cat domains.txt | fprobe -p medium/large/xlarge

Ignorar probes padrão

Se você não quiser verificar HTTP na porta 80 ou HTTPS na porta 443, pode usar a flag -s.

root@kitploit:~
❯ cat domains.txt | fprobe -s

Verbose

A saída verbose será formatada em JSON com alguns cabeçalhos adicionais, como Status Code, Content Type, Location.

root@kitploit:~
❯ cat domains.txt | fprobe -v
root@kitploit:~
{"site":"http://google.com","status_code":301,"server":"gws","content_type":"text/html; charset=UTF-8","location":"http://www.google.com/"}
{"site":"https://google.com","status_code":301,"server":"gws","content_type":"text/html; charset=UTF-8","location":"https://www.google.com/"}

Créditos

Esta ferramenta teve a ideia e algumas linhas de código do httprobe escrito por @tomnomnom.

Baixar ferramenta