| > Would you tell me about method to extrack links from
> javascript or java code?
- java: a binary parser which extract strings and
recognizes URLs embedded in the classfile
- javascript: two main layers:
1. heuristics that parse known syntaxes (img.src,
document.write and so on)
2. string parsing to detect embedded URLs
| |