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
galer — Uma ferramenta rápida para buscar URLs de atributos HTML por crawl-in. | Kitploit
Ferramentas/GitHubGitHub/dwisiswant0/galer
Coleta de InformaçõesSegurança WebUtilitários e FrameworksRastreador
GitHubdwisiswant0/galer

galer

Uma ferramenta rápida para buscar URLs de atributos HTML por crawl-in.

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

galer

made-with-Go issues

root@kitploit:~
             __
   __    _ _(_ )   __  _ __ 
 /'_ '\/'_' )| | /'__'( '__)
( (_) ( (_| || |(  ___| |
'\__  '\__,_(___'\____(_)
( )_) |
 \___/'  @dwisiswant0

Uma ferramenta rápida para buscar URLs de atributos HTML via rastreamento. Inspirada no Tweet do @omespino, que possibilita extrair valores de src, href, url e action através da avaliação de JavaScript pelo Protocolo Chrome DevTools.


Recursos

  • Instalação
    • a partir do Binário
    • a partir do Código Fonte
    • a partir do GitHub
Baixar ferramenta
  • Uso
    • Uso Básico
    • Flags
    • Exemplos
      • URL Única
      • URLs a partir de lista
      • a partir do Stdin
    • Biblioteca
  • TODOs
  • Ajuda & Bugs
  • Licença
  • Versão
  • Agradecimento
  • Instalação

    a partir do Binário

    A instalação é fácil. Você pode baixar um binário pré-compilado da página de releases, descompactar e executar! ou com

    root@kitploit:~
    ▶ (sudo) curl -sSfL https://git.io/galer | sh -s -- -b /usr/local/bin
    

    a partir do Código Fonte

    Se você possui o compilador go1.22+ instalado e configurado:

    root@kitploit:~
    ▶ go install -v github.com/dwisiswant0/galer@latest
    

    a partir do GitHub

    root@kitploit:~
    ▶ git clone https://github.com/dwisiswant0/galer
    ▶ cd galer
    ▶ go build .
    ▶ (sudo) install galer /usr/local/bin
    

    Uso

    Uso Básico

    Simplesmente, o galer pode ser executado com:

    root@kitploit:~
    ▶ galer -u "http://domain.tld"
    

    Flags

    galer

    Isso exibirá a ajuda da ferramenta. Aqui estão todas as opções suportadas.

    root@kitploit:~
    $ galer -h
    
                 __   v0.2.0
       __    _ _(_ )   __  _ __
     /'_ '\/'_' )| | /'__'( '__)
    ( (_) ( (_| || |(  ___| |
    '\__  '\__,_(___'\____(_)
    ( )_) |
     \___/'  @dwisiswant0
    
    A fast tool to fetch URLs from HTML attributes by crawl-in
    
    Usage:
      galer -u [URL|URLs.txt] -o [output.txt]
    
    Options:
      -u, --url <URL/FILE>        Target to fetches (single target URL or list)
      -e, --extension <EXT>       Show only certain extensions (comma-separated, e.g. js,php)
      -c, --concurrency <N>       Concurrency level (default: 50)
      -w, --wait <N>              Wait N seconds before evaluate (default: 1)
      -d, --depth <N>             Max. depth for crawling (levels of links to follow)
          --same-host             Same host only
          --same-root             Same root (eTLD+1) only (takes precedence over --same-host)
      -o, --output <FILE>         Save fetched URLs output into file
      -T, --template <string>     Format for output template (e.g., "{{scheme}}://{{host}}{{path}}")
                                  Valid variables are: "raw_url", "scheme", "user", "username",
                                  "password", "host", "hostname", "port", "path", "raw_path",
                                  "escaped_path", "raw_query", "fragment", "raw_fragment".
      -t, --timeout <N>           Max. time (seconds) allowed for connection (default: 60)
      -s, --silent                Silent mode (suppress an errors)
      -v, --verbose               Verbose mode show error details unless you weren't use silent
      -h, --help                  Display its helps
    

    Exemplos

    URL Única

    root@kitploit:~
    ▶ galer -u "http://domain.tld"
    

    URLs a partir de lista

    root@kitploit:~
    ▶ galer -u /path/to/urls.txt
    

    a partir do Stdin

    root@kitploit:~
    ▶ cat urls.txt | galer
    

    Caso queira encadear com outras ferramentas:

    root@kitploit:~
    ▶ subfinder -d domain.tld -silent | httpx -silent | galer
    

    Biblioteca

    godoc

    Você pode usar o galer como biblioteca.

    root@kitploit:~
    ▶ go get github.com/dwisiswant0/galer/pkg/galer@latest
    

    Por exemplo:

    root@kitploit:~
    package main
    
    import (
    	"fmt"
    
    	"github.com/dwisiswant0/galer/pkg/galer"
    )
    
    func main() {
    	cfg := &galer.Config{
    		Timeout: 60,
    	}
    	cfg = galer.New(cfg)
    
    	run, err := cfg.Crawl("https://twitter.com")
    	if err != nil {
    		panic(err)
    	}
    
    	for _, url := range run {
    		fmt.Println(url)
    	}
    }
    

    TODOs

    • Habilitar configuração de cabeçalhos HTTP extras
    • Fornecer User-Agent aleatório
    • Ignorar navegador headless
    • Adicionar exceção para extensões específicas

    Ajuda & Bugs

    contributions welcome

    Se ainda estiver confuso ou encontrou um bug, por favor abra uma issue. Todos os relatórios de bugs são apreciados, alguns recursos ainda não foram testados devido à falta de tempo livre.

    Status

    [!CAUTION] galer não atingiu a versão 1.0 ainda. Portanto, esta biblioteca atualmente não é suportada e não oferece uma API estável; use por sua conta e risco.

    Não há garantias de estabilidade para as APIs nesta biblioteca, e embora não se espere que mudem drasticamente, ajustes na API e correções de bugs podem ocorrer.

    Pronúncia

    id_ID • /gäˈlər/ — kalau galer jangan dicium baunya, langsung cuci tangan, bego!

    Agradecimento

    • Omar Espino pela ideia, foi por isso que esta ferramenta foi criada!

    Licença

    sebel é lançado por @dwisiswant0 sob a licença MIT. Veja LICENSE.