zlacker

[return to "Please disable JavaScript to view this site"]
1. usr110+34[view] [source] 2020-11-28 21:07:15
>>abused+(OP)
So running untrusted code on your computer is a bad thing. Well, it should be in a sandbox, but that has many intentional and proably some less intentional holes to do stuff on your machine.

So how do I trace what Javascript is doing on my machine?

Generally mitmproxy gives a feeling what sites the browser talks too. And strace gives often a good feeling what a Linux binary does. But the browser is too big and complicated to read strace output in most cases.

Can anybody recommend a tool to look what Javascript code loaded by a certain page is doing?

◧◩
2. cortes+t4[view] [source] 2020-11-28 21:10:22
>>usr110+34
Chrome dev tools? You can step through every JavaScript call
[go to top]