Just received a $4,000 bounty for multiple one-click account takeovers.
The scenarios were really interesting and educational, especially the OAuth bugs I discovered in a very popular company.
A full write-up will be published next week on my Hashnode. Stay tunedβ₯οΈ
Follow me on Hashnode:
https://hashnode.com/@mirzadzare
The scenarios were really interesting and educational, especially the OAuth bugs I discovered in a very popular company.
A full write-up will be published next week on my Hashnode. Stay tunedβ₯οΈ
Follow me on Hashnode:
https://hashnode.com/@mirzadzare
π₯20β€10β€βπ₯1
β Common Rate Limit Bypass Techniques
IP Spoofing
Altering a requestβs source IP to appear from another device, and rotating IPs lets an attacker bypass per-IP limits. You can use the following Burp Extensions for IP Spoofing:
β’ BurpFakeIP: GitHub
β’ IP-Rotate: GitHub
Changing User-Agent
Rate-limit systems often track the User-Agent header; changing or randomizing it makes requests appear from different clients, and attackers may brute-force the User-Agent field (e.g., with tools like Burp Suite Intruder).
Header Manipulation
Header manipulation alters HTTP headers (e.g., X-Forwarded-For, X-Real-IP) to trick servers β bypassing IP restrictions, evading rate limits, or hiding the real IP from logs and filters.
β’ Common Headers by π·Spix0r
Requesting with Different HTTP Methods
Some rate-limiters monitor only certain HTTP methods (e.g., GET/POST); attackers may bypass them by sending requests with other methods (PUT, DELETE, OPTIONS) and testing alternatives (e.g., with Burp Suite Repeater).
β’ HTTP request methods
Parameter Name Variation
Some backends accept alternate parameter names and still process requests, enabling attackers to bypass input filters, WAFs, or login restrictions.
Encoding Tricks
Encoding represents characters in different formats; attackers use encoding to obfuscate payloads and bypass input filters, WAFs, or validation rules.
Case Sensitivity and Font Tricks
Case or character-variant changes in strings (emails, usernames, paths) can let attackers bypass security checks or exploit improper validation.
Using Look-Alike Characters
Blank Characters
Inserting spaces, null bytes, or invisible characters (e.g., TAB, CRLF) can bypass filters, break input validation, or exploit server input handling.
#bugbounty #ratelimit
Β© t.iss.one/BugBounty_Diary
IP Spoofing
Altering a requestβs source IP to appear from another device, and rotating IPs lets an attacker bypass per-IP limits. You can use the following Burp Extensions for IP Spoofing:
β’ BurpFakeIP: GitHub
β’ IP-Rotate: GitHub
Changing User-Agent
Rate-limit systems often track the User-Agent header; changing or randomizing it makes requests appear from different clients, and attackers may brute-force the User-Agent field (e.g., with tools like Burp Suite Intruder).
Header Manipulation
Header manipulation alters HTTP headers (e.g., X-Forwarded-For, X-Real-IP) to trick servers β bypassing IP restrictions, evading rate limits, or hiding the real IP from logs and filters.
β’ Common Headers by π·Spix0r
Requesting with Different HTTP Methods
Some rate-limiters monitor only certain HTTP methods (e.g., GET/POST); attackers may bypass them by sending requests with other methods (PUT, DELETE, OPTIONS) and testing alternatives (e.g., with Burp Suite Repeater).
β’ HTTP request methods
Parameter Name Variation
Some backends accept alternate parameter names and still process requests, enabling attackers to bypass input filters, WAFs, or login restrictions.
username=admin&password=1234
user=admin&pass=1234
uname=admin&pwd=1234
login=admin&passwd=1234
u=admin&p=1234
email=admin&key=1234
id=admin&token=1234
Encoding Tricks
Encoding represents characters in different formats; attackers use encoding to obfuscate payloads and bypass input filters, WAFs, or validation rules.
user=admin%20 # space after admin
user=admin%00 # null byte injection
user=%61%64%6d%69%6e # 'admin' in hex
user=ad%6Din # only 'm' is encoded
user=%2561%2564%256d%2569%256e # double-encoded 'admin'
Case Sensitivity and Font Tricks
Case or character-variant changes in strings (emails, usernames, paths) can let attackers bypass security checks or exploit improper validation.
Email: [email protected] # Mixed case
Email: [email protected] # Lowercase
Email: [email protected] # Uppercase
Using Look-Alike Characters
Email: [email protected] # '3' instead of 'e'
Email: t@[email protected] # Replacing 'l' with 'I' or vice versa
Blank Characters
Inserting spaces, null bytes, or invisible characters (e.g., TAB, CRLF) can bypass filters, break input validation, or exploit server input handling.
email=" [email protected] " # Adding spaces at the beginning and end
[email protected]%20 # Adding a space encoded as %20
[email protected]%E2%80%8B # Injecting a zero-width space
[email protected]%09 # Tab character
[email protected]%0A # Newline character
#bugbounty #ratelimit
Β© t.iss.one/BugBounty_Diary
β€19β€βπ₯3
Bug Bounty Diary pinned Β«Just received a $4,000 bounty for multiple one-click account takeovers. The scenarios were really interesting and educational, especially the OAuth bugs I discovered in a very popular company. A full write-up will be published next week on my Hashnode. Stayβ¦Β»
While hunting for vulnerabilities, I always wondered why developers canβt write even simple code safely. Why donβt they follow best practices before coding? Why are they still not sanitizing user inputs properly? Why, why, whyβ¦
But when I started writing a full-stack blog for myself called !safe-blog, I realized secure coding is not as easy as I thought. Itβs actually very challenging even for a bug bounty hunter. The hunter becomes the hunted!
Sometimes, as a developer, you do everything right: you follow all the security checklists and best practices. But bugs still appear. Maybe from weird interactions between parts of the code, or from one small moment of βIβll just test this quickly and forget to undo it later.β One tired evening is enough. So yes, you can never be 100% sure your code is completely safe.
Respect to all devs who make mistakes and give us bugs ππ₯
But when I started writing a full-stack blog for myself called !safe-blog, I realized secure coding is not as easy as I thought. Itβs actually very challenging even for a bug bounty hunter. The hunter becomes the hunted!
Sometimes, as a developer, you do everything right: you follow all the security checklists and best practices. But bugs still appear. Maybe from weird interactions between parts of the code, or from one small moment of βIβll just test this quickly and forget to undo it later.β One tired evening is enough. So yes, you can never be 100% sure your code is completely safe.
Respect to all devs who make mistakes and give us bugs ππ₯
GitHub
GitHub - Spix0r/safe-blog: A modern !safe blog platform
A modern !safe blog platform. Contribute to Spix0r/safe-blog development by creating an account on GitHub.
π9β€4β€βπ₯1
Bug Bounty Diary
Just received a $4,000 bounty for multiple one-click account takeovers. The scenarios were really interesting and educational, especially the OAuth bugs I discovered in a very popular company. A full write-up will be published next week on my Hashnode. Stayβ¦
I just published my first write-up on my blog:
From "Log in with OAuth" to "Your Account Is Mine" β Desktop App Edition
This article is based on a recent OAuth vulnerability I discovered. I have requested permission to disclose the full report, but it hasnβt been approved yet. Once I get the green light, I will attach my proof of concept (PoC) and the full report.
I hope you enjoy it! β€οΈβπ₯π
From "Log in with OAuth" to "Your Account Is Mine" β Desktop App Edition
This article is based on a recent OAuth vulnerability I discovered. I have requested permission to disclose the full report, but it hasnβt been approved yet. Once I get the green light, I will attach my proof of concept (PoC) and the full report.
I hope you enjoy it! β€οΈβπ₯π
1β€βπ₯17β€7π₯2
β Hacking Modern Web Applications - Client-Side Path Traversal (CSPT)
First of all, I highly recommend that you read this PDF if you don't know what CSPT is. To understand this vulnerability, just set up the CSPT Playground lab, which I have put in the Labs section.
Publications (blog posts, advisories, β¦)
β’ Cloudflare Image Proxy as a CSPT Gadget
β’ Bypassing WAFs to Exploit CSPT
β’ CSPT & File Upload Bypasses
β’ CSPT Reports & Techniques
β’ Automating CSPT Discovery
β’ Saving CSRF with CSPT
β’ The Power of CSPT
β’ Fetch Diversion
β’ CSTP Attacks
β’ CSPT β Open Redirect β XSS
β’ CSPT β JSONP β XSS
β’ CSPT β JSONP β XSS
β’ CSPT β XSS
β’ CSTP β ATO
Videos
β’ Navigating The Landscape Of Client-Side Request Hijacking On The Web
β’ CSPT vulnerability class explained
β’ CSPT β Exploit Cache Deseption
Labs
β’ CSPT Playground
#bugbounty #ratelimit #CSPT
Β© t.iss.one/BugBounty_Diary
First of all, I highly recommend that you read this PDF if you don't know what CSPT is. To understand this vulnerability, just set up the CSPT Playground lab, which I have put in the Labs section.
Publications (blog posts, advisories, β¦)
β’ Cloudflare Image Proxy as a CSPT Gadget
β’ Bypassing WAFs to Exploit CSPT
β’ CSPT & File Upload Bypasses
β’ CSPT Reports & Techniques
β’ Automating CSPT Discovery
β’ Saving CSRF with CSPT
β’ The Power of CSPT
β’ Fetch Diversion
β’ CSTP Attacks
β’ CSPT β Open Redirect β XSS
β’ CSPT β JSONP β XSS
β’ CSPT β JSONP β XSS
β’ CSPT β XSS
β’ CSTP β ATO
Videos
β’ Navigating The Landscape Of Client-Side Request Hijacking On The Web
β’ CSPT vulnerability class explained
β’ CSPT β Exploit Cache Deseption
Labs
β’ CSPT Playground
#bugbounty #ratelimit #CSPT
Β© t.iss.one/BugBounty_Diary
β€20β€βπ₯4π₯4
β CVE-2025-55182 (RSC RCE) Critical Security Vulnerability in React Server Components
The vulnerability is present in versions 19.0, 19.1.0, 19.1.1, and 19.2.0 of:
β’ react-server-dom-webpack
β’ react-server-dom-parcel
β’ react-server-dom-turbopack
Useful Blogs
β’ slcyber.io
β’ react.dev
β’ amazon.com
Most reliable public detections (at this time):
β’ Nuclei Template
β’ react2shell-scanner
β’ Burp Extension: Active Scan++
POC
β’ CVE-2025-55182 - React Server Components RCE
β’ CVE-2025-55182 that works on Next.js 16.0.6
β’ CVE-2025-55182 RCE
#bugbounty #CVE #POC
Β© t.iss.one/BugBounty_Diary
The vulnerability is present in versions 19.0, 19.1.0, 19.1.1, and 19.2.0 of:
β’ react-server-dom-webpack
β’ react-server-dom-parcel
β’ react-server-dom-turbopack
Useful Blogs
β’ slcyber.io
β’ react.dev
β’ amazon.com
Most reliable public detections (at this time):
β’ Nuclei Template
β’ react2shell-scanner
β’ Burp Extension: Active Scan++
POC
β’ CVE-2025-55182 - React Server Components RCE
β’ CVE-2025-55182 that works on Next.js 16.0.6
β’ CVE-2025-55182 RCE
#bugbounty #CVE #POC
Β© t.iss.one/BugBounty_Diary
π₯13β€4β€βπ₯3
β The Anatomy of Source Maps and Reconstructing Original Source Code
A source map is a
Browsers use source maps to reconstruct original code automatically. Similarly, you can use tools like Sourcemapper to retrieve a websiteβs original source if the
References
β’ Introduction to JavaScript Source Maps
β’ Source maps: languages, tools
β’ Extracting JavaScript from Sourcemaps
#bugbounty #sourcemap #javascript
Β© t.iss.one/BugBounty_Diary
A source map is a
.map file that links transformed code back to the original source, allowing browsers to display the original code in debuggers. For bug hunters, this is valuable because it makes reading code easier, reveals developer comments and ... .Browsers use source maps to reconstruct original code automatically. Similarly, you can use tools like Sourcemapper to retrieve a websiteβs original source if the
.map files are publicly accessible.sourcemapper -output dhubsrc -url https://target.com/js/client.356c1491.js.map
References
β’ Introduction to JavaScript Source Maps
β’ Source maps: languages, tools
β’ Extracting JavaScript from Sourcemaps
#bugbounty #sourcemap #javascript
Β© t.iss.one/BugBounty_Diary
π₯14β€βπ₯5β€1
Bug Bounty Diary
I just published my first write-up on my blog: From "Log in with OAuth" to "Your Account Is Mine" β Desktop App Edition This article is based on a recent OAuth vulnerability I discovered. I have requested permission to disclose the full report, but it hasnβtβ¦
They patched it, I hacked it, and got rewarded again!π₯
I can't wait to write my new writeup explaining how I hacked the patched version of this bug. It will be a valuable case study.
But before I do, please read this amazing article by Adam Pritchard as a prerequisite for my writeup.
I can't wait to write my new writeup explaining how I hacked the patched version of this bug. It will be a valuable case study.
But before I do, please read this amazing article by Adam Pritchard as a prerequisite for my writeup.
π₯18β€βπ₯4β€2
β Enumerating WordPress REST API Endpoints
If you're scanning a WordPress site, donβt miss exposed REST API endpoints under
To make this easier, Iβve created a simple function that enumerates all exposed REST API endpoints. Just add the following Bash function to your
Usage
#bugbounty #wordpress #wpjson
Β© t.iss.one/BugBounty_Diary
If you're scanning a WordPress site, donβt miss exposed REST API endpoints under
/wp-json. Many plugins, such as payment gateways, expose Webhooks or callback URLs (e.g., for updating WooCommerce orders). Scanning these public endpoints may expose sensitive data like PII or order details, particularly when plugins (often custom ones) lack proper authentication.To make this easier, Iβve created a simple function that enumerates all exposed REST API endpoints. Just add the following Bash function to your
~/.zshrc or ~/.bashrc file:function wpjson(){
curl -s $1 -H "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"\
| jq -r '.routes | keys[]'
}Usage
wpjson https://target.com/wp-json
#bugbounty #wordpress #wpjson
Β© t.iss.one/BugBounty_Diary
π₯17β€βπ₯3β€2π1π€£1
Bug Bounty Diary
β Enumerating WordPress REST API Endpoints If you're scanning a WordPress site, donβt miss exposed REST API endpoints under /wp-json. Many plugins, such as payment gateways, expose Webhooks or callback URLs (e.g., for updating WooCommerce orders). Scanningβ¦
I shared this because I recently found a custom plugin endpoint in WordPress that leaked PII. I was inspired by this tweet. No matter whether you find endpoints with this script or simply add /wp-json to the end of the URL, the important thing is the methodology behind it.
π11β€βπ₯6β€1π₯1
β Extract URL Paths or Routes via Dev Tools
β’ Save and download a .txt file with all those paths:
#bugbounty #devtool #javascript
Β© t.iss.one/BugBounty_Diary
[...new Set([...document.querySelectorAll("a[href]")].map(a => new URL(a.href, location.href).pathname))]
.forEach(path => console.log(path));β’ Save and download a .txt file with all those paths:
(() => {
const paths = [...new Set([...document.querySelectorAll("a[href]")].map(a => new URL(a.href, location.href).pathname))];
const blob = new Blob([paths.join("\n")], { type: "text/plain" });
const a = document.createElement("a");
a.href = URL.createObjectURL(blob);
const domain = location.hostname.replace(/^www\./, "");
a.download = `${domain}.txt`;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
})();#bugbounty #devtool #javascript
Β© t.iss.one/BugBounty_Diary
β€25β€βπ₯1
β Deobfuscate obfuscator.io, unminify, transpile, and unpack webpack/browserify, using webcrack to resemble the original source code as much as possible.
Command Line Interface
Examples
β’ Repository: Github
β’ Website: webcrack.netlify.app
#bugbounty #recon #javascript #deobfuscate
Β© t.iss.one/BugBounty_Diary
Command Line Interface
npm install -g webcrack
Examples
webcrack input.js
webcrack input.js > output.js
webcrack bundle.js -o output-dir
β’ Repository: Github
β’ Website: webcrack.netlify.app
#bugbounty #recon #javascript #deobfuscate
Β© t.iss.one/BugBounty_Diary
β€17π₯2π1
βGrep tips for Javascript Analysis
β’ Extracting JavaScript Files from recursive Directories
β’ Searching for API Keys and Secrets
β’ Detecting Dangerous Function Calls
β’ Checking for URL Manipulation
β’ Searching for Cross-Origin Requests
β’ Analyzing
β’ Finding Hardcoded URLs or Endpoints
β’ Locating Debugging Information
β’ Investigating User Input Handling
#bugbounty #recon #javascript
Β© t.iss.one/BugBounty_Diary
β’ Extracting JavaScript Files from recursive Directories
find /path/to/your/folders -name "*.js" -exec mv {} /path/to/target/folder/ \;β’ Searching for API Keys and Secrets
cat * | grep -rE "apikey|api_key|secret|token|password|auth|key|pass|user"
β’ Detecting Dangerous Function Calls
cat * | grep -rE "eval|document\.write|innerHTML|setTimeout|setInterval|Function"
β’ Checking for URL Manipulation
cat * | grep -rE "location\.href|location\.replace|location\.assign|window\.open"
β’ Searching for Cross-Origin Requests
cat * | grep -rE "XMLHttpRequest|fetch|Access-Control-Allow-Origin|withCredentials" /path/to/js/files
β’ Analyzing
postMessage Usagecat * | grep -r "postMessage"
β’ Finding Hardcoded URLs or Endpoints
cat * | grep -rE "https?://|www\."
β’ Locating Debugging Information
cat * | grep -rE "console\.log|debugger|alert|console\.dir"
β’ Investigating User Input Handling
cat * | grep -rE "document\.getElementById|document\.getElementsByClassName|document\.querySelector|document\.forms"
#bugbounty #recon #javascript
Β© t.iss.one/BugBounty_Diary
β€11β€βπ₯3
Just wanted to inform you that Writeup-Miner is now live on @Daily_Writeups.
Join if you want the latest Bug Bounty and Cybersecurity write-ups.
Thank you all β₯οΈπ
Join if you want the latest Bug Bounty and Cybersecurity write-ups.
Thank you all β₯οΈπ
β€16β€βπ₯4π₯4
β Cloud Security One Liners
β’ AWS S3 Bucket Finder
β’ S3 Permission Check
β’ Firebase Database
β’ Azure Blob Storage
β’ GCP Storage
β’ AWS Metadata SSRF
β’ Cloud Credential Files
#bugbounty #recon #cloud
Β© t.iss.one/BugBounty_Diary
β’ AWS S3 Bucket Finder
cat urls.txt | grep -oE "[a-zA-Z0-9.-]+\.s3\.amazonaws\.com" | anew s3_buckets.txt
cat urls.txt | grep -oE "s3://[a-zA-Z0-9.-]+" | anew s3_buckets.txt
β’ S3 Permission Check
cat s3_buckets.txt | xargs -I@ sh -c 'aws s3 ls s3://@ --no-sign-request 2>/dev/null && echo "OPEN: @"'
β’ Firebase Database
cat urls.txt | grep -oE "[a-zA-Z0-9-]+\.firebaseio\.com" | xargs -I@ curl -s @/.json | grep -v "null"
β’ Azure Blob Storage
cat urls.txt | grep -oE "[a-zA-Z0-9-]+\.blob\.core\.windows\.net" | anew azure_blobs.txt
β’ GCP Storage
cat urls.txt | grep -oE "storage\.googleapis\.com/[a-zA-Z0-9-]+" | anew gcp_buckets.txt
β’ AWS Metadata SSRF
cat urls.txt | gf ssrf | qsreplace "https://169.254.169.254/latest/meta-data/iam/security-credentials/" | httpx -silent -ms "AccessKeyId"
β’ Cloud Credential Files
cat alive.txt | httpx -silent -path /.aws/credentials,/.docker/config.json,/kubeconfig -mc 200 | anew cloud_creds.txt
#bugbounty #recon #cloud
Β© t.iss.one/BugBounty_Diary
β€20
Hey dear subscribers,
This channel has been inactive for one week because Iran's government shut down the entire internet, preventing us from accessing free internet as usual. I was very worried about my open reports and this channel. Starting today, I am working hard and focusing on posting more content.
Thank you all,
π· Spix0r
This channel has been inactive for one week because Iran's government shut down the entire internet, preventing us from accessing free internet as usual. I was very worried about my open reports and this channel. Starting today, I am working hard and focusing on posting more content.
Thank you all,
π· Spix0r
1β€37π3π₯3π€1
β Burp Extension for API Testing in JS-Rich Targets
This tool helps identify endpoints, files, internal emails, and some secrets hidden in minified JavaScript, achieving maximum efficiency while minimizing noise in the results.
β’ Repository: Github
#bugbounty #recon #javascript #burp
Β© t.iss.one/BugBounty_Diary
This tool helps identify endpoints, files, internal emails, and some secrets hidden in minified JavaScript, achieving maximum efficiency while minimizing noise in the results.
β’ Repository: Github
#bugbounty #recon #javascript #burp
Β© t.iss.one/BugBounty_Diary
π₯5
I can't hunt for bugs anymore with this connectivity (only one Cloudflare IP is open here, which is behind ChatGPT! currently, all the traffic from Iran goes through there :)))
Can anyone share the latest bug bounty tips or tricks in the comments?π
Can anyone share the latest bug bounty tips or tricks in the comments?π
π9π2β€1