I have a question. Say there is a website that may or may not be running obfuscated javascript that, among other things, extracts information from the browser.
Are there any tools/frameworks/techniques for hooking into the javascript events and feeding it arbitrary data instead?
For the sake of an example, let's say its trying to fingerprint the canvas/an iframe (not http headers, that's obvious), and instead of getting the actual browser canvas/iframe, a manufactured one gets passed in.
just curious
>>53872647
Is there anything that would remotely come near to my question? Or is this so far out nobody bothers?
>>53872852
Its definitely possible OP.. didnt you try injecting DEZ-NTZ into the MOTH code?
>>53874103
...did I try doing what?
>>53874117
You know, inserting DEEZ NUTS into your MOUTH
>>53874117
>>53874158
dont hate the playa hate the game senpai
>>53872647
Depends on the script.
If they wrapped everything in a closure, you can't do shit. You could at most add new handlers to the events, but the old ones will still get called.
If they are really shitty programmers and left everything in the global scope then it's as easy as redefining some functions.