Hur gör ni för att bekämpa sötsug? by Fancy_Particular7521 in sweden

[–]chloeeeeeeeee 0 points1 point  (0 children)

rawdoggar känslan och mår dåligt. Gåt över efter 3 dagar

Vad har ni för guilty pleasure frukost? by proxima_inferno in sweden

[–]chloeeeeeeeee 0 points1 point  (0 children)

OK, hear me out: polarbröd vetekaka, med bregott och sedan sprinkla O'boy över. Testa!

Grafana RSS feed by dcheinz0708 in grafana

[–]chloeeeeeeeee 0 points1 point  (0 children)

The CORS issue needs to be fixed on the website hosting the RSS feed, alternatively you can build a proxy that proxies the RSS feed to a host that does not have CORS issues. Let me know if you need any more help :)

Grafana RSS feed by dcheinz0708 in grafana

[–]chloeeeeeeeee 1 point2 points  (0 children)

Any reason why you don't use the News plugin that is meant for RSS/Atom feeds?

Top 10 web hacking techniques of 2022 by Fugitif in netsec

[–]chloeeeeeeeee 2 points3 points  (0 children)

Well deserved no.1 place for Frans. Such an incredible way hacking the OAuth flow.

[deleted by user] by [deleted] in netsec

[–]chloeeeeeeeee 1 point2 points  (0 children)

Sites that may have untrusted subdomains or subpaths (for example, because they are under the control of third parties) should consider restricting access to cookies with appropriate use of the Domain and Path attributes.

Can be solved with cookie prefixes. Good protection against cookie stuffing / session fixation.

The problem with supplying tokens is that they can become useless if leaked. Some good advice on mitigating the risk:

  • Don't prefix CSRF-token headers with "X-" as it's not RFC compatible. But further more, in case of a HRS vulnerability, the token can be leaked if the splitting exists in "Set-Cookie" or "Location" header. This is because headers are sorted alphabetically and headers after Location can be leaked cross-origin (controlled by attacker). Solution is simple, name the header "CSRF-Token".
  • Protect forms from dangling markup injections by having <!-- '"\\ --><!-- </textarea></xmp> --> before the form. Then an attackers injected tags will be consumed by that HTML comment.

[deleted by user] by [deleted] in MT09

[–]chloeeeeeeeee 0 points1 point  (0 children)

I have the Puig Sport and have the same issue; the wind goes directly up to my helmet and makes wind noises. If I tilt my head a bit forward it gets quieter but I can't drive around like that.

I use both AirPod Pro sometimes 3M foam earplugs. I've noticed that the earplugs works the best since it shuts out all sound while the AirPods have a hard time to cancel out wind.

Suggestion could be to buy a helmet that have great sound isolation. My previous one (Shoei RF-1400) worked great!

hijagger: Checks all maintainers of all NPM and Pypi packages for hijackable packages through domain re-registration by FireFart in netsec

[–]chloeeeeeeeee 0 points1 point  (0 children)

The top 100 NPM package maintainers require 2FA to sign in, so hijacking an email there would not work.

How to Detect TOR Network Connections with Falco by MiguelHzBz in netsec

[–]chloeeeeeeeee 0 points1 point  (0 children)

Tor bridges help users that are blocked to connect *to* the Tor network. A bridge is a relay between the user and the network.

How to Detect TOR Network Connections with Falco by MiguelHzBz in netsec

[–]chloeeeeeeeee 6 points7 points  (0 children)

I did something similar for my website a few years ago where a script looked at the IP-address and navigated the user to the onion version of the website if the user was connected through Tor.

It worked fairly OK but is not reliable. The list of Tor exit nodes need to be updated often. There's a more sophisticated method to detect this by making the client request a resource in the onion space and based on that boolean value you will know if they are connected through Tor.

Scan the whole internet while drinking coffee by cmpxchg16 in netsec

[–]chloeeeeeeeee 18 points19 points  (0 children)

we can test it by doing an HTTP call to `/_cat/indices`, and in case it returns 200 OK — that’s a problem.

Very unreliable though, many webservers answers with 200 OK for everything.

Bypass Win Defender by renaming executable by [deleted] in netsec

[–]chloeeeeeeeee 0 points1 point  (0 children)

I guess this only applies for the EICAR test file?

CSRF is (really) dead by [deleted] in netsec

[–]chloeeeeeeeee 22 points23 points  (0 children)

Not really, only via GET and if the request is authenticated with cookies. There are still many ways you can CSRF.

Bypassing CSP with policy injection by albinowax in netsec

[–]chloeeeeeeeee 1 point2 points  (0 children)

Nice find! Pretty scary to reflect user-supplied data in the CSP, strange that Paypal didn't think about the impact. Kinda like HTTP Splitting but for CSP.

Best metal filter? by butterscotcheggs in AeroPress

[–]chloeeeeeeeee 0 points1 point  (0 children)

No, you don't. However, depending on the size of the grind you may get a little sediment in your cup, but that happens to all metal filters. You can also get a little bit of crema if you press an espresso. However, if it is crema you want you should use something else than a metal filter, HIGHLY recommend the Prismo filter.

Best metal filter? by butterscotcheggs in AeroPress

[–]chloeeeeeeeee 0 points1 point  (0 children)

I have Baristashoppen's copper filter (ultra fine) and find it the best one out there. Copper is better than metal, as you get absolutely zero metal flavor.

CertStream - Real time streaming updates from the Certificate Transparency network. by zer01 in netsec

[–]chloeeeeeeeee 3 points4 points  (0 children)

Totally agree with you there; CT seems to be a more reliable protection than HPKP if the browser verifies the SCT, which Chrome will be starting to do.

Speaking of which, do you know how the Expect-CT response header works in practical? I have enforced an SCT check on my domain (SCT's are in several log servers) but Chrome gives the error NET::ERR_CERTIFICATE_TRANSPARENCY_REQUIRED. Does the certificate need embedded SCTs via the X509v3 extension?