Snawoot

Results 30 comments of Snawoot

@saghul In test, which I modified in this repo, non-existent resolver 1.2.3.4 is used. In test for application I develop I use local dnsmasq set to forward requests [for specific...

Patch submitted to Debian maintainer of grub package: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=906124#55

Hello, Debian grub2 package developers stopped responding any [attempts](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=906124#90) to fix that. I think it's much easier to apply patch from [this thread](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=906124#55) to Debian 10 package source. Even if...

@noahbliss Thanks! That looks like a step up solution since it uses metered boot and TPM.

@noahbliss Hi! Sure! It's possible to add signing hook into DKMS with `POST_BUILD` option in dkms.conf for module. And DKMS config can be overriden via config file in `/etc/dkms/MODULE.conf`. However,...

Centos 8 backported ugly linux-efi bugs from debian as well, so lsbk is unusable on it too.

@1st1 Hello, thanks for answer! No, I'm interested in `SHUT_RD`, so I use `sock.shutdown(socket.SHUT_RD)` after `transport.pause_reading()`.

> because if the the other side continues to send you data you will receive it anyways TCP has flow control and sender shall not send more than TCP window...

For others reference: following code confirmed to work. ```python3 async def handler(self, reader, writer): writer.transport.pause_reading() sock = writer.transport.get_extra_info('socket') if sock is not None: try: sock.shutdown(socket.SHUT_RD) except TypeError: direct_sock = socket.socket(sock.family,...