Joined February 2025
7 Photos and videos
Open Redirect /redirect?url=https://target[.]com/home → /redirect?url=https://evil[.]com Now use it for phishing with a trusted domain in the link. #bugbountytips #ethicalhacking
1
2
5
3,216
Recon Trick: This is old but gold: Look for publicly exposed docs on Google services. Example dorks: site:docs.google.com intext:target site:drive.google.com intext:target

6
789
Path traversal in file download: /download?file=report.pdf → /download?file=../../../etc/passwd #bugbountytips #ethicalhacking #webapplicationtesting
1
4
3,616
ASN lookup on the main domain → CIDR ranges → masscan the whole org. Scope says "*.target.com" but the IP belongs to them too. #bugbountytips #penetrationtesting
1
4
1,770
SSTI quick check: {{7*7}}, ${7*7}, <%= 7*7 %> drop all three in every input field. One will hit on a misconfigured template engine. #bugbountytips #cybersecurity
1
6
1,647
Forgot password valid email → intercept the reset link → change the Host header to your server → password reset poisoning. #bugbountytips #cybersecurity
6
3,041
Host Header Poisoning (Password Reset): Change the Host header to yourserver.com during a reset request. If the email link is built using that header, the user clicks the link and sends their reset token to you. #bugbountytips

1
4
3,645
When a single ID fails, a pair might pass. IDOR bypasses can be that simple 🔥 - Victim's ID: 5200 - Attacker's ID: 5233 GET /api/users/5200/info → Access Denied ❌ GET /api/users/5200,5233/info → Bypassed ✅ #bugbountytips #PenetrationTesting
3
19
5,505
UPDATE: 19 MILLION exposed NGINX instances hit by the 18-year-old NGINX RCE found by AI. A bug from 2008 just got a working exploit. CVE-2026-42945 (CVSS 9.2) No login. No access. Just one HTTP request. POC:github.com/DepthFirstDisclos…
1
3
326
UPDATE: 19 MILLION exposed NGINX instances hit by the 18-year-old NGINX RCE found by AI. A bug from 2008 just got a working exploit. CVE-2026-42945 (CVSS 9.2) No login. No access. Just one HTTP request. POC: github.com/DepthFirstDisclos…
1
1
385
1024 Cyber Services retweeted
Manually sifting through Burp requests in history for possible vulnerabilities you might have missed can be a tedious process... 😓 Burp AI Agent by @six2dez1 brings AI-powered passive and active scanning to Burp Suite, covering 62 vulnerability classes with 10 backend options, including fully local models via Ollama! 🤠 Check it out! 👇 github.com/six2dez/burp-ai-a…
1
31
232
12,298
1024 Cyber Services retweeted
May 13
⚠️⚠️ CVE-2026-45185 (CVSS 9.8): Critical Exim mail-server vulnerability — patch or upgrade immediately. 🔗FOFA Link: en.fofa.info/result?qbase64=… 🎯6.0M Results are found on en.fofa.info in the past year. FOFA Query: app="Exim-Mail-Server" 🔖Refer: exim.org/static/doc/security… thehackernews.com/2026/05/ne… #OSINT #FOFA #CyberSecurity #Vulnerability
1
24
54
4,598
IDOR hunters: don't just swap IDs — swap types. /invoice/123 → /invoice/user_123 hits different object resolvers #bugbountytips #ethicalhacking
219
testing for race condition #bugbountytips
1
11
4,821
Rate-limit bypass with string terminators: POST /api/myprofile POST /api/myprofile POST /api/myprofile Backend normalizes → /api/myprofile ✅ Rate limiter treats each as unique 🔁 Useful for bypassing weak path-based brute-force protections. #BugBounty #Pentest
2
8
1,985