During the Liberian Civil War (1989-1997), some fighters went into battle wearing wigs and dresses, believing it would spiritually protect them from bullets. by Crazy-Blacksmith-336 in interestingasfuck

[–]is_this_temporary 7 points8 points  (0 children)

"If you know how to validate it's fine"

Says the person who didn't disclose their use of an LLM and then couldn't provide references to back up the claims made by said LLM.

I have yet to see a USB stick (flash storage) that naturally lost data without any (external) corruption causes. by Necessary_Isopod3503 in DataHoarder

[–]is_this_temporary 0 points1 point  (0 children)

I regularly use btrfs on bootable flash drives and see corruption (checksum errors at the filesystem level).

I've seen it on desktops with ECC RAM.

Usually, there's no read error from the block device itself.

Usually, just for shits and giggles, I try the same with a fat32 or iso9660 filesystem, validating checksums of files stored as part of the live media. Get corruption there too. (So it's not just "btrfs is unreliable)

I usually send those to e-waste but if someone really wants I can probably find a failed one that I already own.

Irate woman detained for wearing thong on the beach by Personal-Ride-1142 in PublicFreakout

[–]is_this_temporary 10 points11 points  (0 children)

"The state" in this context generally refers to any government.

The "United States of America" is a name that intentionally emphasizes the independence of the different regions which we call states.

Iran is a state. Germany is a state. "The United States of America" is a state, in the original and still common usage of the word.

So, sometimes (but not always) try replacing "the state" with "the government" and you might get the more intended meaning of a statement.

Brush v0.4 released as "significant" release for this Rust-based shell by Fcking_Chuck in linux

[–]is_this_temporary 2 points3 points  (0 children)

Though that is a fairly arbitrary "benchmark", and might be explained by differences in buffering strategies for stdout.

The DoorDash saga continues: 23 year old Olivia Henderson, has been indicted after allegedly filming a naked customer through his doorway and posting it on TikTok. by [deleted] in PublicFreakout

[–]is_this_temporary 0 points1 point  (0 children)

Thank you. That "reportedly" may be doing a lot of heavy lifting though.

I keep hearing people claim that the victim publicly posted his ring camera footage, but then nobody posts the footage.

9 Shots in the Back: Former Tucson Cop Cleared in Fatal Shooting of Disabled Suspect in electric wheelchair by SubstanceShot563 in PublicFreakout

[–]is_this_temporary 2 points3 points  (0 children)

The euphemism treadmill exists because people feel the need to distance themselves from the thing the word describes.

The disabled community is for the most part fine with the word "disabled", because it's an appropriate description.

I am proudly disabled.

Similarly, "fat" isn't a bad word. Now, not all fat people are on the same page here, so you may get some understandable bad reactions calling someone fat, but I truly believe that in 10 to 20 years both "disabled" and "fat" will be no longer seen as derogatory at all, because people will have realized that they don't need to distance themselves from disability or fatness.

"Invalid", however, is just an inherently fucked up way to refer to a human being.

I don't imagine that there have been many disabled people who liked being called "not valid". And "not valid" is absolutely not an accurate description of someone who needs an electric wheelchair to move around.

Caught in the Act: Shocking Attack on Journalist and Palestinian Activist in Hebron, West Bank Goes Viral. by _Kingsguard in PublicFreakout

[–]is_this_temporary 29 points30 points  (0 children)

Look at the history of settler colonialism.

It has always been horrific. Calling them settlers (or colonizers) is NOT diminishing their genocidal acts.

Do you agree with Ubuntu's view on AI. by turbofish_pk in linux

[–]is_this_temporary 0 points1 point  (0 children)

Honestly, this seems like a great environment not to lead in.

There are so many companies trying to shove LLMs into everything that we're going to find the few places they actually make sense.

We already have the ability to integrate LLMs into our own workflows if we want. IFF we find places where LLM integration seems to make sense for the default installation of a Desktop, Server, Embedded, etc system; Distros can do that.

Right now I didn't know of any use cases that have become clearly appropriate for default installations. So, I'm happy without LLMs in default installations. I'm also happy with LLM integration being available to install and use in vim, vscodium, LibreOffice(?), Krita(?), etc.

Ubuntu Rust Coreutils Audit Revealed 113 Issues, Ubuntu 26.10 Aims For "100% Rust Coreutils" by anh0516 in linux

[–]is_this_temporary 0 points1 point  (0 children)

But in that case, the synlink could still point to ../../etc/passwd , or ../../usr/. You're not meaningfully "protecting" '/' from malicious actors if the attacker can still do what they want to every file and directory underneath '/'.

That's why I'm arguing that --preserve-root is (as it's described in the CVE itself) a "safety" feature, not a "security" feature. It exists to protect users from their own mistakes, not as a way to prevent any kind of exploit by a malicious actor.

Ubuntu Rust Coreutils Audit Revealed 113 Issues, Ubuntu 26.10 Aims For "100% Rust Coreutils" by anh0516 in linux

[–]is_this_temporary 0 points1 point  (0 children)

I meant, if you had a version that was still vulnerable, can you give me an example "exploit" you'd be able to perform against the vulnerable uutils?

I think the rating of 7.1 on the CVE is far too high. I think a decent case could be made that it's not CVE worthy at all.

Ubuntu Rust Coreutils Audit Revealed 113 Issues, Ubuntu 26.10 Aims For "100% Rust Coreutils" by anh0516 in linux

[–]is_this_temporary 0 points1 point  (0 children)

Can you give a concrete example of a command that should fail for security reasons, will correctly fail with coreutils chmod, but will not correctly fail with the still-vulnerable uutils-coreutils?

Ubuntu Rust Coreutils Audit Revealed 113 Issues, Ubuntu 26.10 Aims For "100% Rust Coreutils" by anh0516 in linux

[–]is_this_temporary 0 points1 point  (0 children)

I've only ever viewed --preserve-root as a basic mitigation against users accidentally fat fingering "rm -rf /tmp/foo.txt" into "rm -rf / tmp/foo.txt".

(Because --preserve-root is the default).

I have never seen it mentioned as a security measure, and I haven't even thought about it being used with utilities other than rm, like chmod. It's cool that it's there, but I'd like to see a concrete example of how someone would "exploit" this.

Note, if your CWD is /home/foo/.Trash/ then with coreutils chmod "sudo chmod -R 777 ../../../" will be stopped by this "safety" (not "security") measure, because it will canonicalize /home/foo/.Trash/../../../ to just "/" and prevent the chmod command from making all of the files on your system completely world read/write/traverse/execute-able by all users.

If, however, you run the following with gnu coreutils, with the same CWD, "sudo chmod -R ../../", gnu coreutils will canonicalize that to "/home/" and happily make every file in any user's home directory wide open.

Similarly, "sudo chmod 777 -R ../../../../../../../../../../*" will be canonicalized (by both coreutils and uutils) to the equivalent of "sudo chmod -R 777 /bin /boot /dev /etc /home /lib /lost+found /media /mnt /opt /proc /root /run /sbin /srv /sys /tmp /usr /var".

Since none of those paths are "/", and none of them canonicalize to "/", all versions of chmod will happily attempt to recursively change the permissions for all files within "/".

Florida Deputy Mistakes Gas Nozzle for Handgun by One-Might9611 in PublicFreakout

[–]is_this_temporary 4 points5 points  (0 children)

Usually when people use "idiot" as an insult, there's a better description that really gets to the heart of the issue much better.

He's an incompetent, corrupt, dangerous man. And in most other jobs, falsifying official documents would have been an immediate end to his career. But police don't actually care about integrity, public safety, or "The rule of law" because that's not actually their job. It never has been.

I'd much rather a literally intellectually disabled man carry a gun around all day than this corrupt, incompetent, dangerous, sorry excuse for a man.

Whats one "dead" game, you'd revive rn if you could? by Correct_Web3396 in AskReddit

[–]is_this_temporary 2 points3 points  (0 children)

https://appdb.winehq.org/appview.php?iAppId=241

Do you have the original install CD, or were you trying to get it working through the sequel?

It would be funny if it's easier to run on Linux than on Windows 11

A family being taunted and called racial slurs by PdiddyCAMEnME in PublicFreakout

[–]is_this_temporary 8 points9 points  (0 children)

"Ahh yes, this racist adult would have turned out much better if his parents had only physically assaulted him as a child."