abraxyss Posted January 7, 2013 Report Share Posted January 7, 2013 UTF-7 XSS Cheat Sheetmi s-a parut foarte interesant Quote Link to comment Share on other sites More sharing options...
SticKyWoX Posted January 7, 2013 Report Share Posted January 7, 2013 UTF-7Merg doar pe UTF-7, care e foarte rar folosit.Oricum, poate foloseste cuiva. Quote Link to comment Share on other sites More sharing options...
Jimmy Posted January 7, 2013 Report Share Posted January 7, 2013 https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_SheetNew XSS vectors/Unusual JavascriptHTML5 Security CheatsheetHTML Purifier XSS Attacks Smoketesthttps://hackvertor.co.uk/public#CAL9000https://twitter.com/XSSVectorJSF*ck - []()!+aaencode - Encode any JavaScript program to Japanese style emoticons ()jjencode - Encode any JavaScript program using only symbolsPentru teste JS Bin - Collaborative JavaScript Debugging Quote Link to comment Share on other sites More sharing options...
fallen_angel Posted January 9, 2013 Report Share Posted January 9, 2013 UTF-7 XSS Cheat Sheetmi s-a parut foarte interesantCitind despre XSS, am dat peste asta:A real world example of an XSS encoded vulnerability was found in Google search appliance by a hacker named Maluc. Maluc found that a normal Google search appliance query looked like:http://ask.stanford.edu/search?output=xml_no_dtd&client=stanford&pro">http://ask.stanford.edu/search?output=xml_no_dtd&client=stanford&pro xystylesheet=stanford&site=stanfordit&oe=UTF-8&q=hiHe noticed that according to this string (oe=UTF-8) he could change the UTF code. He changed the UTF string from UTF-8 to UTF-7. UTF-7 (7-bit Unicode Transformation Format) is a variable-length character encoding that was proposed for representing Unicode-encoded text using a stream of ASCII characters, for example for use in Internet e-mail messages. UTF-7 is generally not used as a native representation within applications as it is very awkward to process despite its size advantage over the combination of UTF-8 with either quoted-printable or base64.Lets take for example:<script>alert("XSS")</script>And encode it using UTF-7:+ADw-script+AD4-alert(+ACI-XSS+ACI-)+ADw-/script+AD4-Now all + have to be changed to URL code in a GET strings for this to work. So the URL code for + is %2B now we have:%2BADw-script%2BAD4-alert%281%29%2BADw-/script%2BAD4-With this Maluc came up with:http://ask.stanford.edu/search?output=xml_no_dtd&client=stanford&pro">http://ask.stanford.edu/search?output=xml_no_dtd&client=stanford&pro xystylesheet=stanford&site=stanfordit&oe=UTF-7&q=%2BADw-script%2BAD4-alert%281%29%2BADw-/script%2BAD4-xAnd was able to successfully execute an XSS script.Surs? Quote Link to comment Share on other sites More sharing options...