HackSys Team
HackSys Team
@pyoor I will be starting to write one now. Let me see how it works out.
@v-p-b Nice. But how about self signed certificate and trusting the root CA?
@ca0nguyen Quoting from MS Edge blog *_"DLLs that are either Microsoft-signed, or WHQL-signed, will be allowed to load, and all others will be blocked." *_. I guess we need to...
@ca0nguyen Now, that's a good thing. We can now inject grinder_logger in Edge http://www.sekoia.fr/blog/microsoft-edge-binary-injection-mitigation-overview/
@v-p-b unfortunately no. Currently I'm not fuzzing browsers. But with new mitigations in Edge, it would be hard to run this logger. However, I can not guarantee as I have...
Currently I have implement a check for max 15 crashes to be recorded in DB for a hash_quick.
Guys, I had the same issue and I made it to work. ```python pykd.startProcess(self.program, pykd.ProcessDebugOptions.BreakOnStart | pykd.ProcessDebugOptions.DebugChildren) ``` Now, it will break as soon as the process starts and everything...
@joxeankoret I was able to locate the root cause. This is due to this code on ``` self.mgr = Manager() ``` https://github.com/joxeankoret/nightmare/blob/master/fuzzers/bcf.py#L47
@joxeankoret Remove Multiprocessing from this module, instead use threads.
@joxeankoret Hmm. What reason? I believe without multiprocessing it can also work. I see that you basically pass a LIST to the subprocess IPC. Any other reasons?