You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most binaries from the Cygwin project tend to not play nice with Windows' ASLR exploit mitigation features which are enabled system-wide by default. The usual symptom is that they'll immediately and - most importantly - silently fail to run.
Disabling mandatory and bottom-up ASLR for specific executables can be automated using PowerShell's Set-ProcessMitigation command/cmdlet. Windows 10 Home and Pro have PowerShell 5.x (which has the aforementioned cmdlet) installed and enabled by default.
If wanted, I would be more than willing to adapt an existing small PS script I've written for inclusion with WSLtty. I only need to adjust it so that the code is formalized and abides by strict mode, is triggerable by an installer/external process, and supports checking for, creating, and removing necessary overrides on end users' systems.
The text was updated successfully, but these errors were encountered:
Most binaries from the Cygwin project tend to not play nice with Windows' ASLR exploit mitigation features which are enabled system-wide by default. The usual symptom is that they'll immediately and - most importantly - silently fail to run.
Disabling mandatory and bottom-up ASLR for specific executables can be automated using PowerShell's
Set-ProcessMitigation
command/cmdlet. Windows 10 Home and Pro have PowerShell 5.x (which has the aforementioned cmdlet) installed and enabled by default.If wanted, I would be more than willing to adapt an existing small PS script I've written for inclusion with WSLtty. I only need to adjust it so that the code is formalized and abides by strict mode, is triggerable by an installer/external process, and supports checking for, creating, and removing necessary overrides on end users' systems.
The text was updated successfully, but these errors were encountered: