Michael Maltsev
Michael Maltsev
> Should I apply all of your suggested changes and then resubmit the pull request? You don't need to resubmit it, just edit this submission. Look up for editing an...
No action is needed for now. I'll get to it when I have time. Thanks.
I looked at how Sysinternals DebugView does that. It does the following: ```cpp ConvertStringSecurityDescriptorToSecurityDescriptorA( "D:(A;;GRGWGX;;;WD)(A;;GA;;;SY)(A;;GA;;;BA)(A;;GRGWGX;;;AN)(A;;GRGWGX;;;RC)(A;;GRGWGX;;;S-1-15-2-1)S:(ML;;NW;;;LW)", SDDL_REVISION_1, ... ) ``` Since DebugView is the de facto standard tool for debug logging,...
Here are a couple of references: * https://scorpiosoftware.net/2019/01/15/fun-with-appcontainers/ * https://devblogs.microsoft.com/oldnewthing/20220502-00/?p=106550 > A process within an AppContainer runs with an [Integrity Level](https://docs.microsoft.com/en-us/windows/desktop/secauthz/mandatory-integrity-control) of low, which effectively means it has no access...
I don't see hotkey-related commits from [04 July](https://github.com/x64dbg/x64dbg/commits/ad5e2d2ee2c7cbf22aef9d4bb8592d2904164762/). What's the last build that had it working? In any case, the plugin just uses the x64dbg APIs, so if it doesn't...
I'm not sure what changed in x64dbg, but here's a quick patch which attempts to fix it. Test it and let me know if it works. [multiasm_x64dbg_patched.zip](https://github.com/user-attachments/files/23450675/multiasm_x64dbg_patched.zip)
I had to figure out what these are. I assume you're referring to x64dbg patch files? https://github.com/x64dbg/x64dbg/blob/98291b35b78fc5e409449f23390896c1a85ad485/src/gui/Src/Gui/PatchDialog.cpp#L642 Example: ``` >explorer.exe 00000000000B9890:48->90 00000000000B9891:83->90 00000000000B9892:EC->90 00000000000B9893:28->90 ``` The above can be converted...
You can do it with `!pad`. From the help file: > **!pad** > When specifying the **block end address**, this command pads all unused bytes with the requested byte value....
That's because you didn't specify the block end address. Please read the description of `!pad` and the example again. I think you misunderstood what it does. If there's a block...
Thanks for the suggestion. Currently the content is interpreted as plain text. I agree that having a content type option would be nice. For a start, it can have two...