Viewing profile — ckuehl
ckuehl
HN member- Joined
- Mon, Aug 26, 2013, 7:15 AM UTC
- HN karma
- 322
- Public activity
- 59 items
- HN profile
- View on Hacker News ↗
About ckuehl
https://www.ocf.berkeley.edu/~ckuehl/
Recent public activity
-
comment
Comment #26507790
Purely a guess, but I've sometimes been able to work backwards from the content length (very often included in HTTP server logs) to figure out what the body had to be.
-
comment
Comment #24116242
The authors of The Expanse published an article last year acknowledging and paying tribute to the mission ("How a NASA robot messed up our science fiction"): https://www.nationalge…
-
comment
Comment #22569081
Also keep in mind that if you use IP-based whitelisting, an attacker can register their own CF/Fastly account and target your origin server with whatever CDN settings they want (as…
-
comment
Comment #21917054
Another thing that isn't perfect but could help is doing a search of package contents of a large distro, e.g. here's a search of Debian for packages that provide a file called "nod…
-
comment
Comment #16199633
This is a somewhat dangerous pattern for picking temporary files (from #8): $ NEWFILE=/tmp/newfile_${RANDOM} $ touch $NEWFILE The problem is that any user on the box can create fil…
-
comment
Comment #16071466
From the Spectre paper: > As a proof-of-concept, JavaScript code was written that, when run in the Google Chrome browser, allows JavaScript to read private memory from the process …
-
comment
Comment #15455340
There are some amusing notes about the /bin/true copyright claim here: http://trillian.mit.edu/~jc/humor/ATT_Copyright_true.html
-
comment
Comment #14829558
I've been using my packaged version pretty extensively (mostly in virtualenvs) and haven't encountered any issues yet myself, but would definitely be interested to hear (either on …
-
comment
Comment #14829387
Chris Lamb, the current Debian Project Leader, has said that it will not be in stretch but could potentially be available in stretch-backports: > If someone puts in the work, sure …
-
comment
Comment #14609641
I agree. Looks like I only noticed the apt-get install line and incorrectly assumed that's what you were referring to.
-
comment
Comment #14604711
A benefit of installing using your system package manager is that you can rely on your distro to manage the security of the package. If you just `pip install` it, you need to perso…
- comment
-
comment
Comment #13750835
Totally agreed they have the right to monitor your network traffic, but I still think in most cases employees should try to push back on this. At least from my view, it's not so mu…
-
comment
Comment #13333450
I found interesting djb's blog post about a theoretical scenario where mixing entropy can actually be dangerous: https://blog.cr.yp.to/20140205-entropy.html
-
comment
Comment #12511284
ISPs usually use the designated block (100.64.0.0/10) for this to avoid collisions with home networks: https://tools.ietf.org/html/rfc6598#section-7 Webpass is an example of a "goo…
-
comment
Comment #12191734
Most operating systems have started detecting captive portals and presenting a notification. All of the modern consumer ones (OS X, Windows, Android, iOS) appear to have this detec…
-
comment
Comment #12156172
BART doesn't have that type of ticket. You tag your Clipper card (or insert your BART ticket, if you're not a frequent rider) upon entering a station, and again when exiting at you…
- comment
-
comment
Comment #11724519
For what it's worth, ISPs are definitely shaping traffic to try to game results on public speed tests. I had an issue with Comcast last year where I would have large latency spikes…
-
comment
Comment #11149751
Just keep in mind that unstable is not guaranteed to get security fixes promptly, either. The Debian Security Team only handles supported releases. The Security Team FAQ is a good …
-
comment
Comment #11149717
Just want to emphasize (and this is not directed specifically at you): you almost certainly shouldn't run Debian testing on anything that is public-facing. Packages get migrated to…
-
comment
Comment #10878985
Just be very careful which direction you point those arrows :-) I've have similar nightmares about typoing `if` and `of` when using dd.
-
comment
Comment #10854351
Good question! The problem is trying to signal it from outside the Docker container. If your container has a process tree like PID 1: /bin/sh +--- PID 2: then if you use `docker si…
-
comment
Comment #10854042
Yup, tini is really really similar and looks pretty cool! They're solving much of the same problem. It's unfortunate that we didn't find tini before we went and wrote dumb-init. Th…
-
comment
Comment #10853992
> From my own experience with docker in production, I'm yet to see any of the described scenarios crop up. Has anyone else, or is this solving an extreme edge case? The biggest iss…