| Article: |
A Canary Trap for URI Escaping | |
| Subject: | Escaping vs Encoding. | |
| Date: | 2006-06-05 21:09:34 | |
| From: | rspier | |
|
Response to: Sounds like a work-around
|
||
| Not at all. To oversimplify, Encoding is about what the bits mean. Escaping is about marking certain character sequences that have special meaning. | ||
Showing messages 1 through 1 of 1.




I like the idea of adding a 'canary' to detect over-coding, but I would prefer to use something more robust, like a CRC and I don't like the idea of using it to determine when to stop decoding.
In the multiple redirect situation described in the article, I would prefer to fix the root problem: the redirects should not have been re-escaping the original data. This canary solution just hides the problem.