CISSP · Question #743
Alternate encoding such as hexadecimal representations is MOST often observed in which of the following forms of attack?
The correct answer is D. Cross site scripting (XSS). Alternate encoding techniques like hexadecimal or Unicode encoding are commonly used in Cross-Site Scripting (XSS) attacks to bypass input validation and web application filters.
Question
Options
- ASmurf
- BRootkit exploit
- CDenial of Service (DoS)
- DCross site scripting (XSS)
How the community answered
(25 responses)- A4% (1)
- D96% (24)
Why each option
Alternate encoding techniques like hexadecimal or Unicode encoding are commonly used in Cross-Site Scripting (XSS) attacks to bypass input validation and web application filters.
Smurf attacks are network-layer amplification DDoS attacks that abuse ICMP echo requests sent to broadcast addresses and do not involve alternate character encoding.
Rootkit exploits focus on gaining and maintaining privileged access at the OS or firmware level through system call hooking or binary replacement, not through encoding obfuscation of web input.
Denial of Service attacks overwhelm target resources with traffic or requests and do not rely on alternate encoding schemes as a primary attack vector.
In XSS attacks, threat actors use alternate encodings such as hexadecimal (e.g., %3Cscript%3E for <script>), Unicode, or HTML entity encoding to obfuscate malicious payloads and evade input sanitization filters. These encoded strings are injected into web applications where they are eventually decoded and executed by the victim's browser, making encoding a hallmark technique of XSS exploitation.
Concept tested: Alternate encoding obfuscation in XSS attacks
Source: https://owasp.org/www-community/attacks/xss/
Topics
Community Discussion
No community discussion yet for this question.