A version of the following code appears in this presentation about heap spraying (this link causes a powerpoint download), as well as in this lecture video by Dan Boneh.
<SCRIPT language="text/javascript">
shellcode = unescape("%u4343%u4343%...");
oneblock = unescape("%u0C0C%u0C0C");
cause-overflow(overflow-string); //overflow buf[]
</SCRIPT>
The cause-overflow() function isn't implemented here, but I think it would just write shellcode + nop all over the heap.
Is shellcode actually machine code for something like exec(/bin/sh), or is shellcode the memory location of some shell code?
Is oneblock a NOP slide?
(More generally, what is this code doing? Why does it cause a heap spray?)
P.S. Not homework; I'm just a noob to javascript.