Jump to content
paxnWo

ha.ckers.org/xss.html xss

Recommended Posts

Posted

dati scroll pana la "Character Encoding Calculator"

la " HTML (with semicolons): " introduceti : & # 6 1 ; (fara spatii)

apoi click pe decode.

" & # 6 1 ; " inseamna " = "

de ce apare alert ?

Posted

Folosesc asta:

function convertHexToASCII() {
if (document.XSS.hexhtml.value != '') {
var hexText = document.XSS.hexhtml.value;
var testText = hexText.substring(3,hexText.length).split("");
var resultString = '';
var sub = '';
for (i=0;i<testText.length;i++) {
sub = testText[i].substring(testText[i].length-3,testText[i].length-1)
if (sub.length < 2) {
resultString += "%0" + sub;
alert (sub, " - ", resultString);
} else {
resultString += "%" + sub;
}
document.XSS.ascii.value = unescape(resultString);
}
}
}

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...