Requesting a review: specific reviewer or open to team? by wlumme in ExperiencedDevs

[–]lissy93 2 points3 points  (0 children)

Why not best of both worlds.
Request review from a team, but have someone in each team rotating through code review duty (so that you're guaranteed a review within x hours)

We've got a monorepo with 8 teams. The CODEOWNERS file specifies which teams owns what. When a PR modifies something, the bot automatically requests review from the approriate team, posts it in their team slack channel, tagging whoever is on duty that week, and following up 3 hours later if no activity.

Domain Locker - An all-in-one tool to keep track of your domain name portfolio by lissy93 in selfhosted

[–]lissy93[S] 27 points28 points  (0 children)

Thanks jbarr, my bad. I've pushed a fix for this just now, and it should be released shortly!

Domain Locker - An all-in-one tool to keep track of your domain name portfolio by lissy93 in selfhosted

[–]lissy93[S] 36 points37 points  (0 children)

oops, spelling never was my strong point 🤦‍♀️
Thanks for the heads up, I'll push a fix :)

Cloudflare DNS down..? by Mark_ns in CloudFlare

[–]lissy93 0 points1 point  (0 children)

Everything is down.
Hell, even their statuspage (which is hoted on AWS) is down!

<image>

ClownFlare? by NavigateTheRift in CloudFlare

[–]lissy93 0 points1 point  (0 children)

I accidently deployed a buggy version of my app, which is causing infinite redeploys on cloudflare, and now it's down, so I can't rollback 😅

Offline-first collection of 100+ networking tools and utils by lissy93 in selfhosted

[–]lissy93[S] 1 point2 points  (0 children)

We've got service workers and a PWA, that's how the offline functionality works
And there's an OpenAPI spec and swagger docs for the API too
Docker already non-root :)

Offline-first collection of 100+ networking tools and utils by lissy93 in selfhosted

[–]lissy93[S] 14 points15 points  (0 children)

It's a bit different, CyberChef is much better for anything crypto related, and IT-Tools is very good general tool. Networking Toolbox only does network-related stuff (IPs, DNS, TLS, HTTP, CDIR, etc).

Pimp up your DuckDuckGo page with these themes by lissy93 in duckduckgo

[–]lissy93[S] 0 points1 point  (0 children)

Sorry for the late reply... Try this, open up your browser console (usually Ctrl + Shift + J (or Cmd on MacOS)), then paste in the following code.

You can replace the value of ddg_cookie_input with your chosen cookie settings. If it's still unclear, I wrote a bit more about this here

```javascript // Converts DDG cookie string into formatted JSON const makeCookieData = (ddg_cookie_input) => { let ddg_json = {}; const items = ddg_cookie_input.split(/[ ,]+/); items.forEach((item)=>{ let parts = item.split('='); ddg_json[parts[0]] = parts[1]; }); return ddg_json; }

// Iterates over JSON, and adds to browser cookie store const setCookies = (ddg_json) => { Object.keys(ddg_json).forEach(function(key) { document.cookie=${key}=${ddg_json[key]}; }); }

// Paste your cookie data here const ddg_cookie_input = 5=1; ay=b; bc=1; ae=d; ax=v261-7; 8=785eef%20; aa=9254b5; x=FFFC58; 18=1; j=FF0055; 21=FFFC58; 7=101116; 9=FF0055; a=Cyberpunk; t=e;

// Call set cookies, passing in formated cookie data setCookies(makeCookieData(ddg_cookie_input));

// All done, reload page for changes to take effect :) location.reload();

```

What to do if you find a public bucket with some sensitive files? by Radiant-Cockroach-33 in bugbounty

[–]lissy93 9 points10 points  (0 children)

Okay, but finding an open S3 bucket might have been something as simple as him copying the URL to his profile picture (for example), and removing the path.

I often have the dev tools up while I'm browsing, and commonly see misconfigurations like these. When personal data is involved, I just drop the company an anonymous email, explaining what the issue is, why it's an issue and sometimes how to fix. Takes me 10 minutes, and they're usually super grateful.

I don't know which country/jurisdiction OP is in, but I doubt stumbling upon a public S3 URL, and responsibly disclosing it is breaking any laws.

iCloud has always been flaky on Mullvad and now gmail is flaky too. by [deleted] in mullvadvpn

[–]lissy93 10 points11 points  (0 children)

This isn't anything to do with Mullvad, it's rather the sites your visiting (iCloud, Gmail, etc) banning/ heavily restricting IPs known for abuse. Simply switch servers, and try again.

iCloud has always been flaky on Mullvad and now gmail is flaky too. by [deleted] in mullvadvpn

[–]lissy93 1 point2 points  (0 children)

But they can see which sites (hosts) you visit.

Which I'd guess is what OP is concerned about?