Live data from Hacker News

Viewing profile — yoloClin

yoloClin

HN member
Joined
Wed, Sep 25, 2019, 1:17 AM UTC
HN karma
140
Public activity
77 items

About yoloClin

No profile information was provided.

Recent public activity

  1. comment
    Comment #28939586

    Broken access control is things like direct object vulnerabilities and authorisation bypasses _as well_ as broken authentication controls. I'm not saying you're wrong, and agree th…

  2. comment
    Comment #28939437

    Friendly reminder that this is about frequency, as opposed to severity. 'Cryptographic Failures' is everything from theoretical vulnerabilities which require millions of dollars to…

  3. comment
    Comment #27392339

    This. I want a shell that will contextually spit out plaintext in interactive mode, then a JSON object when scripted or piped. Pretty sure this is what Powershell does, but the UI …

  4. comment
  5. comment
    Comment #25233839

    I really like Reveal.js. I feel the design constraints enforced (size / amount of text per slide) is awesome, but at the same time very limiting for technical presentations where l…

  6. comment
    Comment #24996129

    On the flipside, it's more plausible for an actor to get malicious code into a project in order to infect a target. Sure it has to be obscure enough to pass any code reviews during…

  7. comment
    Comment #24706815

    I agree with CSP, but as I've commented on another thread I recommend CSP _with_ other mitigation factors due to DOM/HTML injection, and browser support.

  8. comment
    Comment #24706802

    I think the best solution is CSP _and_ injection mitigations - even without XSS there is still DOM injection which can be equally damaging reputationally. iirc, IE11 (under Windows…

  9. comment
    Comment #23486072

    Ping me on twitter. @yoloClin

  10. comment
    Comment #23161337

    Thanks, that's exactly what I want!

  11. comment
    Comment #23160614

    Is anyone able to provide a map of modern frameworks? With React-native, React-redux, Angular, Vue and probably a bunch of others. I'm really not sure what's relevant now and what …

  12. comment
    Comment #23122214

    HTML Code Golf - How to make really small _extremely fragile_ HTML that doesn't break Firefox or Chrome, currently at least FTFY

  13. comment
    Comment #23121019

    I just disable it: ``` #!/bin/sh # Disable capslock setxkbmap -option caps:none # Better repeat rates # Previously set in lxdm.conf (arg=/usr/bin/X -ardelay 175 -arinterval 20 xset…

  14. comment
    Comment #22963471

    Hey thanks for this, nushell looks really interesting! I really like the idea of an objective shell but don't like the verbosity of PowerShell inputs. I think if you go through my …

  15. comment
    Comment #22930220

    What I'm talking about is a UI/UX problem that cannot be solved by key layout, I even experimented with a Ergodox and ended up in keybind hell really quickly because supporting one…

  16. comment
    Comment #22923040

    I fee like UI/UX needs to be completely redesigned and dvorak isn't even half (or any) of the battle. Single-key copy/paste, undo/redo, keyboard driven UIs, etc etc. I say this as …

  17. comment
    Comment #22884116

    Mike Zamansky has a pretty decent series which focuses mostly on third party package features - https://www.youtube.com/watch?v=49kBWM3RQQ8&list=PL9KxKa8NpF...

  18. comment
    Comment #22839539

    I had multiple friends pull me aside about similar email and asked to deal with it confidentially, I've probably had other friends pay up in attempt to avoid humiliation. I think i…

  19. comment
    Comment #22819947

    I'm from a country with public health care, so this comes as an interesting shock - would employees immediately lose health benefits if made redundant / fired etc? Seems to incenti…

  20. comment
    Comment #22817664

    I'm more curious about how DB rollbacks occur in situations where a PR changes DB and is then reverted.

  21. comment
    Comment #22817559

    Irrespective of who's right or wrong it's pretty unnecessary to call each other names just because you don't agree, particularly when the question is theoretical and has almost no …

  22. comment
    Comment #22817108

    Transport encryption with PKI.

  23. comment
    Comment #22810871

    The issue is an injection attack. The ability to insert either unsanitised HTML data or data reflected inside the context of a JavaScript code block which results in JavaScript exe…

  24. comment
    Comment #22810776

    IMO, using DNS for anything other than hostname lookups is a complete hack. I'm looking at you, SPF.

  25. comment
    Comment #22810767

    Secrets stored in cookies really shouldn't be accessible, the Set-Cookie HttpOnly flag should stop all JS access to a cookie. The HttpOnly flag still submits a cookie when you do a…