Episode
Course 38 - Web Security Known Web Attacks | Episode 3: RFD, Mutation XSS, and RPO
- Podcast
- CyberCode Academy
- Published
- Jul 4, 2026
- Duration seconds
- 987
- Processing state
not_requested
Actions
POST https://stenobird.com/v1/public/podcasts/cybercode-academy-7578615/episodes/course-38-web-security-known-web-attacks-episode-3-rfd-mutation-xss-and-rpo/transcription-requests
Idempotently request low-priority transcript generation for this episode.GET https://stenobird.com/podcast/cybercode-academy-7578615/course-38-web-security-known-web-attacks-episode-3-rfd-mutation-xss-and-rpo.md
Read the agent-friendly Markdown representation of this episode resource.
Summary
In this lesson, you’ll learn about: Reflected File Download (RFD), Mutation XSS (mXSS), and Relative Path Overwrite (RPO) XSS1. Reflected File Download (RFD)🔹 Definition: A vulnerability where user input is reflected into a response that the browser treats as a downloadable file 🔹 How it works (high-level): Attacker crafts a URL Server reflects input into response Browser downloads it as a file (e.g., .bat, .cmd) 👉 Key Insight The attack relies more on social engineering than pure technical exploitation2. Why RFD is Dangerous🔹 Core risk: User executes a malicious file thinking it’s legitimate 🔹 Attack characteristics: File appears trusted (same domain) Filename can be manipulated Content may contain system commands 👉 Key Insight Trust in the source (domain) is what makes this attack effective3. Advanced RFD Scenario🔹 More dangerous variant: Malicious script modifies browser behavior 🔹 Example impact: Weakens browser protections Enables further data access 👉 Key Insight RFD can act as an entry point for deeper compromise4. Mutation XSS (mXSS)🔹 Definition: A type of XSS where safe input becomes dangerous after browser processing 🔹 Root cause: Browser mutates (transforms) HTML internally 👉 Key Insight The payload is not dangerous initially—it becomes dangerous after parsing5. How mXSS HappensUsing JavaScript:🔹 Scenario: Application inserts sanitized input into DOM Browser reinterprets it via innerHTML Encoded content becomes executable 👉 Key Insight Security filters can fail due to DOM re-parsing behavior6. Why mXSS Is Tricky🔹 Challenges: Payload looks harmless Bypasses traditional filters Depends on browser quirks 👉 Key Insight mXSS exploits differences between sanitization and rendering7. Relative Path Overwrite (RPO) XSS🔹 Definition: Exploits how browsers resolve relat…