rusty-snake

Results 226 comments of rusty-snake
trafficstars

How would you deal with multi bit flags? ```rust const A = 0b0001; const B = 0b0010; const AB = 0b0011; ``` How would you deal with zero bit flags?...

Yes, my use case are flags of ffi functions where I can only allow known safe flags. Passing known unsafe or flags added by future versions might be unsafe. Instead...

Yes, that would be an alternative way to implement it.

Where is the privacy issue with DNS requests for blocked domains?

As I understand this paper (second link), the attacker who wants to track me is the operator of my DNS (LAN Admin, ISP or Cloudflare-DNS/Google-DNS/...) or someone who compromised my...

Can be some exceptions because of a broken site or behind-the-sence or from a restrictedDomain (where addons are not allowed). If you can narrow it down. Maybe uB logger or...

https://github.com/arkenfox/user.js/blob/f4187632faef76df4de0cbb0cdc7199f22fadd76/user.js#L722 https://github.com/arkenfox/user.js/blob/f4187632faef76df4de0cbb0cdc7199f22fadd76/user.js#L719-L720

But 1.9.9 has no apk attached and "Fallback to older releases" is default in Obtainium.

> While I don't mind disclosing my real name, in practice what a "real name" is often tends to be blurry, and in context of developer contributions it makes no...

You have to use ACT_NOTIFY, as you already did in your OP, to get user space callbacks. Also you must make sure that the program can not spoof user input...