Are Microsoft a big, evil company?
A. No, that’s insanely reductive. They’re super smart people, and sometimes super smart people make mistakes. What matters is what they do with knowledge of mistakes.
I have no doubt there are smart employees, but they don't call the shots. Case in point.
The dude set up a strawman argument, then didn't even bother to burn it down properly.
Being super smart and super evil are NOT mutually exclusive. Intelligence =|= morality.
Unpopular Opinion: This is why Microsoft were such assholes about making sure Windows 11 required a modern TPM and this is also why they are forcefully rolling out Bitlocker encryption turned on by default on all Windows 11 PCs.
Is Recall still a fucking stupid idea? Yes, resoundingly so. But they've half-ass considered the risks, it seems. The forceful rollout of Bitlocker is dumb and short-sighted in its own right, and it wouldn't make a person completely secure from outside attacks rooted in a Recall exposure.
Hardware controls are meaningless if an attacker gets you to click on a dodgy link in a phishing email or you fall for a social engineering scam when "Microsoft" calls you because your computer has a virus.
Theoretically, Microsoft could protect against most attacks. Apple has done it by making it increasingly impossible to touch kernel level stuff without an MDM. Every release they lock up more of the system. It means they are drifting toward iOS on their Macs, where the user doesn't own their device, but it is an effective blocker to stuff like this, baring zero day kernel issues.
I think that is where Microsoft is headed, but they also aren't able to let go of backward compatibility, so they really aren't getting any closer to a system that is secured enough to handle such sensitive data.
Most compromises live in user space. Locking down the kernel is great and all but “most attacks” are running as the logged in user doing operations that user is permitted to do.
I am shocked there is even a single downvote on this comment. parent is 110% right. a kernel level compromise in the vast majority of exfiltration events its just needless (but nifty) icecream on top of the pain pie being served to the user.
Umm, no. Just...yeah, no.
The main problem with this theory is that Microsoft is absolutely abysmal at user end security, and they always have been. Frankly, they do not understand the issue.
But, more to the point, the whole TPM/secure boot stuff is a compromise; originally (I think this was about the time of Vista), they partnered with OEMs to have them include a DRM chip that made it literally impossible to install any non-windows OS on your laptop. They've managed to still get an implementation of TPM that makes switching your OS too confusing/difficult for the average user.
Anyway, bottom line is they only care about money, and they neither care or even understand the security needs of the end user.
Because Windows not only encrypts the system disk (C:) but also all connected hard drives
And they're gonna just enable it without asking if i want all my hard drives encrypted first?
Nah dude. TPMs have always been about implementing DRMs. These companies hate that they can't control our PCs, they want to be sure we can only run their approved apps. Like it works in iOS and (to a lesser degree for now) in Android. And even there they are pushing hard for even more restrictive DRM.
For example, some years ago I worked with a SaaS that implemented and sold some security products. One of our customers was a big retailer (for specialized products, not going into more details to avoid doxxing) that was having a problem with scalpers buying all their inventory as soon as they released it. So they were trying to put a show for regulators about stopping scalpers because their customers were complaining. We suggested that the only real solution was to have some real life verification of purchases. But in the end they went with the awful attestation APIs offered by Apple and Google to "fix" this. And in case you are not familiar, these APIs are just TPM based DRMs. So now, if you have a rooted/jailbroken phone you can't even buy with this retailer anymore.
Note that this company wasn't trying to fuck customers directly, they were just lazy and incentivised to not really fix the problem (a sale is a sale, even if to a scalper). But even then the end result is that their customers got their digital freedom rights restricted. It's just a terrible technology IMO, the incentives from companies are all terrible. And that's before we start considering the real intentions of awful companies like Microsoft, Apple and Google. IMO they are actually pushing for techno feudalism, but that's my conspiracy theory hahaha.
So no, I doubt they were thinking about security with this recall bullshit. As other people have explained in their comments it doesn't really protect much in practice. Plus this whole AI push has just been a stupid scramble from these companies to grab a big piece of the stupid AI pie from other companies hahaha, there is no long term plan here, don't lie to yourself and us.
As much as I lean to hate this despite it not even affecting me as a Linux user...
I’m going to structure this as a Q&A with myself now, based on comments online
What is that? "I'm going to pretend to ask questions that I'll then answer myself the way I think it'll outrage that most people do I'll get a lot of clicks on this shitty article"? What crappy excuse for content creation is this? I hate it.
I follow Kevin on Mastodon. He’s the real deal and is absolutely not interested in the clicks or outrage. He’s trying to make it accessible.
Agreed. The way i took it was "i am going to write 'questions' based on the concerns people are commenting online and give the answers to those things people are interested/worried about"
Eh, they could have written it differently, each time hypothesizing that someone might wonder XYZ, but I appreciate the brevity of this format. And I do not think that the questions or answers are unreasonable.
I get the security issues, sure, those are valid, but the privacy ones are even worse. Imagine a teenager trying to search information on being gay, or possible intrusive thoughts on their family computer, only for their super maga right wing parent to find it in the screenshots.
Or someone being abused at home and searching for support facilities, deleting history and being outed by recall.
Wait, how about credit card fraud as a result of EVERYONE who has access to this computer can read your cc data?
Or, my husband was looking at jewelry online yesterday and he hasn't told me, he must be cheating, right? Oh sorry, I forgot, our anniversary is next week... Hahahaha, don't be upset babe.
Best one ever though, imagine your search history, your porn watch history accessible to anyone with access to your computer? The fucking horrific existence of having an employer process this data at scale using fancy staff monitoring program 7, and run stats on the fact that you had a toilet break while working from home, and they want to know if it was a number 1, or a number 2 so they can work a mean time to shit metric into your KPA/scorecard.
Guys, whatever benefit you think this is. It's not worth it.
Ultimately privacy is part of security so, if anything, everything you mentioned is just more reinforcements that this is a major security concern.
As someone that has been obsessed with tech since being a kid in the 90s I think the tech side of this is super cool and very exciting stuff. As a user, though, I only like this if I'm the one implementing and using it. I do not trust a mega corporation (or really any company) to "leave it locally on my computer and totally not use that data for other purposes". Right now it's supposed to be (as far as I last heard) only on your machine but we've seen EULAs and TOS' etc change many times over the years but especially over more recent years as data continues to be king and data like this is a literal bottomless diamond mine.
I know this isn't your point but it's just worries I have in addition to your points. And let's not even start about what this means for law enforcement abuse. No thanks, I'll wait for a FOSS equivalent that at least gives me and the community the opportunity to evaluate how it works.
Couldn’t you use a separator to make it one line of code? That way it’d be even more dangerous
I did an interview where the candidate said that if it's one line, it runs in constant time. And they were completely serious. And this was in the context of Python list comprehensions.
They claimed this ran in constant time:
new_list = [value for value in my_list]
Whereas this ran in linear time:
new_list = []
for value in my_list:
new_list.append(value)
We asked clarifying questions, like what happens to the runtime if the list gets really large, and they doubled down.
And this was for a senior Python dev position... No, they didn't get the job.
Even supposing I didn't care about the security implications of this, why on earth would I want this functionality? I can barely keep up with all my activities in the present moment, let alone the past. It's like a morbid and pathological unification of nostalgia and hoarding.
I cant believe they are including this in enterprise edition too.
They usually keep their dirty spyware out of the enterprise editions to avoid losing corporate clients who dont want their secrets easily pluckable.
My hospital will be freaking the fuck out about this right… about…. Now.
Maybe in the future it can be used by managers to keep an eye on what their underlings are doing at all times. I suggest calling the manager's remote version Microsoft Panopticon.
The full article is well worth reading. It's good to find a lucid, logical deconstruction of why, precisely, this will be a complete disaster.
I'm really hoping valve does a public steamdeck OS release. I'd like to replace windows on my PC with Linux and have windows as a backup, but the Linux distro I'm the most familiar with is the steam deck's distro, and that's not available outside of steam decks yet.
SteamOS is arch based and uses KDE Plasma as the default DE, so you could probably run Endeavour OS and be pretty darn close
You're gonna get lots of suggestions, lol.
I'd say look at Zorin. It's a Ubuntu-based distro so it has lots of support, and also has several baked-in themes to customize your desktop the way you want it right out of the box. You can make it look like Windows 7/10/11 or macOS without any other apps or themes, which might help your transition.
thanks Microsoft
pleasetellmeyoucaninferthesarcasmfromthispost
We should have let the government actually break up microsofts monopoly long ago. Now they will abuse it to force millions of Americans to use their spyware.
Microsoft, stop giving me Red Star OS flashbacks. (If im not mistaken, it records your screen and stores it in a police-only folder)
As reasonable the concerns are... it seems like there's quite a bit of fearmongering over software and hardware that haven't even really gotten into the mainstream yet.
Do you think it would be a better idea to wait until it’s installed and active on every Windows computer before we start a discussion on how bad Copilot is?
I heard this same argument from people all the time. Until it affects you in a meaningful way to change your mind, it'll be too late.
Technology
This is a most excellent place for technology news and articles.
Our Rules
- Follow the lemmy.world rules.
- Only tech related content.
- Be excellent to each other!
- Mod approved content bots can post up to 10 articles per day.
- Threads asking for personal tech support may be deleted.
- Politics threads may be removed.
- No memes allowed as posts, OK to post as comments.
- Only approved bots from the list below, to ask if your bot can be added please contact us.
- Check for duplicates before posting, duplicates may be removed
- Accounts 7 days and younger will have their posts automatically removed.