Live data from Hacker News

Viewing profile — mvkg

mvkg

HN member
Joined
Sun, Feb 19, 2017, 8:51 PM UTC
HN karma
64
Public activity
25 items

About mvkg

No profile information was provided.

Recent public activity

  1. comment
    Comment #47721173

    If the tool fails for some reason, couldn't an overly eager agent attempt to fix what's blocking it by digging into the tool (e.g. attaching a debugger or reading memory)? I think …

  2. comment
  3. comment
    Comment #45624411

    5GHz certainly helps, but congestion/co-channel interference can still be an issue in high density environments, especially in a multi-user environment like an apartment complex wh…

  4. comment
    Comment #41950157

    The paper's claim for Dijkstra's is it's "a single algorithm performs as well as possible for every single graph topology". A* is an augmented version of Dijkstra's only applicable…

  5. comment
    Comment #39990041

    802.1x allows for the client to validate the authentication server by way of X.509 certificates, although this normally does require manual configuration since there is no global n…

  6. comment
  7. comment
    Comment #39709045

    As of TLS 1.3, the ClientHello (which includes the Server Name Identification (SNI) extension) is still sent in plaintext. There is a current draft for encrypted client hellos[0], …

  8. comment
    Comment #35733619

    I believe section 7 of RFC 9000 would allow for the creation of a handshake protocol which could conform to SSH without the need for including x509.

  9. comment
    Comment #35731371

    It is every bit as bad. QUIC streams could map nicely to the SSH model of discrete channels. Sure, you can run it over tcp/443 and have it look like a normal TLS connection to anyt…

  10. comment
    Comment #33462913

    You mirror Z-Library but don't support TLS on any of your sites. This seems like an odd choice. What is your threat model?

  11. comment
    Comment #31855913

    Regarding the collision attack replacement check, do you know if that is carried over into other git implementations (e.g. libgit2)?

  12. comment
    Comment #30571391

    I have found brave to be a decent chromium-based browser for android if the only addon needed is for ad blocking. It has a bottom toolbar provides a similar experience to the firef…

  13. comment
    Comment #29552392

    What were the PRN and AUX files used for?

  14. comment
    Comment #29335370

    In recent versions of (maybe only GNU?) `tar` you can leave off the `z` flag and it will still decompress based on the filename.

  15. comment
    Comment #17243602

    A quick look at the source shows that it appears to be linear and just uses `strings.Contains` or `r.MatchString` on each line, so I don't think it has any of the optimizations tha…

  16. comment
    Comment #15916062

    https://peabody.io/post/server-env-benchmarks/

  17. comment
    Comment #15890155

    The two 'true' statements show that 12345678910111211 == 12345678910111212 transitively, which is obviously not possible.

  18. comment
    Comment #15890105

    For what purpose exactly? Surely you don't have multiple developers writing code with one cursor.

  19. comment
    Comment #15880288

    With TLS, the symmetric encryption keys are always newly generated regardless of the cipher suite chosen; the difference with the ephemeral cipher suites is how the keys are commun…

  20. comment
    Comment #15834107

    The threat for http to https transactions is that man in the middle can rewrite, drop, or add data before the user reaches the https site. See sslstrip[0] for an example of this at…

  21. comment
    Comment #14423699

    I was a bit surprised to see that it wasn't published on April 1 and got renewed multiple times. Some parts of it are laughable such as IPv10 support on "all" Internet connected ho…

  22. comment
    Comment #14422012

    IPv10[0] makes IPv4 an extension of the IPv6 space. It'll be interesting to see if this takes off, but it doesn't really seem to solve the whole problem. All nodes in the path woul…

  23. comment
  24. comment
    Comment #14153047

    It's a good recommended that you don't use them. https://www.securecoding.cert.org/confluence/display/c/PRE00...

  25. comment
    Comment #13681934

    A good dual-stack implementation should also support Happy Eyeballs which does not result in simpler code.