powellnorma
powellnorma
Today, disabling `HypervisorEnforcedCodeIntegrity` was not enough. I had to completely disable [Virtualization-based Security (VBS)](https://learn.microsoft.com/en-us/windows-hardware/design/device-experiences/oem-vbs). For this, I first disabled DeviceGuard in the registry: ```powershell Remove-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DeviceGuard" -Name "EnableVirtualizationBasedSecurity" -ErrorAction...
Here is some example code: ```js const modal: ModalSettings = { type: 'component', title: 'Custom Component', component: 'CustomComponent', response: async (r: any) => { if (r) { await new Promise(r...
Is this likely to be an upstream bug of uTLS? How would one go about troubleshooting it?
Is it enough to just call `cc.decrStreamReservations()`? Basically instead of doing a roundTrip [here](https://github.com/imroc/req/blob/5323efe519c828b9b97dc52f13386e007e5972b5/internal/http2/transport.go#L468C4-L468C8), I want to just return information about the TLS Connection - so I haven't called `cc.RoundTrip`...
Yes, I am already using an modified version of imroc/req, so this being internal functions/methods is no problem for me. > What specific scenarios would require controlling client connection reservation?...
@meator I had written many .desktop files myself, and many of them broke. gtk-launch can execute them just fine still. One example: ``` Exec=flatpak run --command=sh com.spotify.Client -c 'eval "$(sed...
Setting this via policy works, thanks. On linux: ```bash sudo mkdir -p /etc/chromium/policies/managed/ echo '{ "PasswordManagerEnabled": true }' | sudo tee /etc/chromium/policies/managed/password_manager.json ``` If there exists a policy for each...
As a workaround I tried to install the 37 versions instead (by editing `/etc/yum.repos.d/danstiner_softu2f.repo`). The installation worked fine, but now I am also hit by #123: ``` $ systemctl status...
> error: "Expected socket peer to be running as root user" Looks like this already got fixed in master: https://github.com/danstiner/rust-u2f/issues/114#issuecomment-1722134477 But the fedora prebuilds haven't been updated yet. Guess I...
Perhaps it would be enough, to simply add an HTTP-Header that contains the password for each API request. One optimization would be to hash that password twice - once client-side,...