ohuseyinoglu
ohuseyinoglu
**Describe the bug** As mentioned in the [discussion](https://github.com/microsoft/Detours/pull/80#issuecomment-682409948) b/w @sylveon and @bgianfo, passing `GetCurrentThread()` to `DetourUpdateThread()` is practically a NO-OP, however, probably [all the samples](https://github.com/microsoft/Detours/search?q=DetourUpdateThread&type=code), and the [Using Detours](https://github.com/microsoft/Detours/wiki/Using-Detours) wiki...
As far as I could track from the code, `DetourUpdateThread` enlists threads to be processed, and committing the transaction adjust the threads' instruction pointer register (let's go with x64, and...
Whenever any API entry point to list/iterate network interfaces (like `Pcaps.findAllDevs()` or `Pcaps.getDevByName()`), is used, apparently a `PcapNetworkInterface` object would be constructed (for each? interface), and when it calls `getMacAddress`...
Since the [following comment of mine](https://github.com/kaitoy/pcap4j/issues/186#issuecomment-539745606) on a **closed** issue (#186) did not get a response, let me try and open a new one, in case it was unintentionally skipped:...
As mentioned in "[recreating known universal windows password backdoors with Frida](https://sensepost.com/blog/2019/recreating-known-universal-windows-password-backdoors-with-frida/)" blog, attaching to certain system processes requires `SeDebugPrivilege` in the parent process. As that blog author, and I have...