TLS doesn’t encrypt the host name of the urls you are visiting and DNS traffic is insanely easy to sniff even if you aren’t using your ISPs service.
- 0 Posts
- 9 Comments
hatedbad@lemmy.sdf.orgto Privacy@lemmy.ml•Why I no longer use a VPN (most of the time) and nor should you - YouTubeEnglish1·1 year agothe hostname of a website is explicitly not encrypted when using TLS. the Encrypted Client Hello extension fixes this but requires DNS over HTTPS and is still relatively new.
hatedbad@lemmy.sdf.orgto Open Source@lemmy.ml•XZ Hack - "If this timeline is correct, it’s not the modus operandi of a hobbyist. [...] It wouldn’t be surprising if it was paid for by a state actor."English168·1 year agoopen source software getting backdoored by nefarious committers is not an indictment on closed source software in any way. this was discovered by a microsoft employee due to its effect on cpu usage and its introduction of faults in valgrind, neither of which required the source to discover.
the only thing this proves is that you should never fully trust any external dependencies.
it literally explains what they’re for in the product listing:
These labels aid your warehouse operations.
• Categorize inventory, reorder points, product dating or special instructions.
• Apply these labels to pallets, boxes and shelves for easy identification.
• Easy to write on.
hatedbad@lemmy.sdf.orgto Technology@beehaw.org•Nothing Chats has already been pulled from Google Play over privacy issuesEnglish7·2 years agoSMS is literally the bottom of the barrel though
hatedbad@lemmy.sdf.orgto Linux@lemmy.ml•[SOLVED] I need to copy all executable files in my home folder to my documents folder, how can I do this?English2·2 years agoassuming you have a GNU toolchain you can use the
find
command like so:find . -type f -executable -exec sh -c ' case $( file "$1" ) in (*Bourne-Again*) exit 0; esac exit 1' sh {} \; -print0 | xargs -0 -I{} cp {} target/
This first finds all executable files in the current directory (change the “.” arg in find to search other dirs), uses the
file
command to test if it’s a bash file, and if it is, pipes the file name toxargs
which callscp
on each file.note: if “target” is inside the search directory you’ll get output from
cp
that it skipped copying identical files. this is becausefind
will find them a free you copy them so be careful!note 2: this doesn’t preserve the directory structure of the files, so if your scripts are nested and might have duplicate names, you’ll get errors.
why use docker here? you’re just adding layers of abstraction in an environment that can’t seem to really support them.
that said, switching to 32bit linux, if the VPS supports it, will save you memory.
20 years? more like 5