Input validation is a critical security measure to prevent attacks like Cross-Site Scripting (XSS). However, attackers often bypass filters using unconventional methods, such as full-width characters—a technique leveraging East Asian Unicode characters that occupy double the space of standard half-width characters. This article explores how attackers exploit normalization flaws to execute XSS and other injection attacks.
Learning Objectives
Understand how full-width characters evade input validation.
Learn to test and mitigate normalization-based bypasses.
Apply defensive coding practices to handle Unicode attacks.
1. Full-Width vs. Half-Width Characters
Verified Code Snippet (Python):
Convert half-width to full-width
def half_to_full(s):
return ''.join(chr(ord(c) + 0xFEE0) if 33 <= ord(c) <= 126 else c for c in s)
print(half_to_full("<script>alert(1)</script>"))
Step-by-Step Guide:
Purpose: Converts ASCII characters (e.g., <, >) to visually similar full-width equivalents (e.g., <, >).
Attack Use Case: If an app filters half-width `
Manage Consent
To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent may adversely affect certain features and functions.
We do not sell your personal data. If you wish to exercise your rights under applicable privacy laws, please visit our Do Not Sell My Personal Information page.
Functional
Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes.The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.