How more secure is Windows 7 / Vista, really when compared to XP?


Recommended Posts

Every OS has vulnerabilities.

Vulnerable to Viruses and Malware I mean. Vulnerabilities are inconsequential in the short term if nobody's exploiting them. Just look at Stuxnet - even the US government is exploiting Windows vulnerabilities.

No exceptions. If you can install software, you can install malware, to think otherwise is delusional.

While technically true, there has never been any successful malware on GNU/Linux. Now you could argue that's because of security in obscurity, and that may be true to an extent, but there are also other factors:

1. How users get their software.

2. Permission system. Specifically, how programs get executable permissions. Windows Autorun is an example of a popular infection vector.

3. The variety of Linux distributions, their configurations, and the software which they contain are the bane of malware writers. They do best in homogeneous environments with predictable file locations and installed software, and slow update cycles.

Windows gets targeted on the desktop because there's where the largest user base is

That's not the whole story though.

1. For years Windows had very lax security, which encouraged a vast malware ecosystem. Critical mass was reached long ago. The hacking tools, code, and expertise has all developed around Windows. That's not something you can transfer overnight.

2. The Win32 API is very hacker/malware writer friendly.

3. There's no central repository to get your software from (yet), which inevitably leads to the practise and habit of downloading and running random programs from the internet. This behaviour increases the risks of infection with malware.

just as *Nix has the most hacks/exploits on the server end of things.

Incorrect. The server exploits, which by the way aren't malware, are usually focused on third party applications like wordpress and sql injections, or other front facing applications (which can also run on Windows), rarely is it ever the GNU/Linux OS itself. Again, malware isn't involved. Now Windows Servers, that's a whole different kettle of fish. They are subject to the same malware threats as their desktop brethren.

Most malware gets installed because of user error; barring an unpatched zero-day exploit (every OS has them), they won't magically appear out of thin air. I can just as easily write up a bit of nasty code for OSX or Linux.

I agree that the user is the weakest link the chain, but that doesn't stop viruses and malware spreading without user intervention. There are many examples in Windows' history. And yet, not a single Virus has successfully spread on GNU/Linux.

You could try and write some bad code for Linux, but how would you deliver it? How/where would it install itself? How would it run/spread? Then you start to realise, GNU/Linux is an extremely heterogeneous environment - again, the bane of virus/malware writers.

It's all well and good pointing out buffer overflow exploits, but if nobody's using them, they don't pose a real security risk in the short term. All of the exploits are targeting Windows, the reasoning of which is unimportant, there is only the reality of the situation.

Now Windows Servers, that's a whole different kettle of fish. They are subject to the same malware threats as their desktop brethren.

True, but Windows Server makes it hard, and I mean real hard to go out and infect. You don't just simply go out onto the web with it.

but simpy put the more software a user uses, the bigger the attack vector gets.

That's true. Even more so if the software is out of date and isn't automatically updated by the operating system.

The OS could be bullet prrof, but as long as one application remains out of date, the user is vulnerable, no matter what OS they are using, be it Windows, Mac, or Linux.

Totally agree. That's where GNU/Linux repositories and Windows 8's app store really shine. If the OS can update itself and every application installed on the system, the likelihood of exploitation is greatly diminished.

I'm a big fan of built-in OS software repositories and management tools. That's one area Windows 8 will easily best Windows 7. Now if we could only get the desktop back :whistle:

Just to jump off your point there Dot Matrix. I have a whole array of Windows Servers running IIS and other services. And I just wanted to say how difficult it is to get a script running inside IIS to access the system. I mean there are so many layers of security there that it can be difficult just as a server owner to get things working and functioning due to well for starters all the NTFS ACL permissions.

I know specifically you meant people don't usually use Windows Server to surf the web which is how many people get infected but I just wanted to point out how secure the server is at actually serving content and how the operating system treats seemingly everything running under one of its server roles as potentially hostile. Exploiting IIS to get to the system is in my opinion difficult.

Neowin article from last year: Avast: Windows XP makes up 74% of rootkit infections

http://www.neowin.ne...tkit-infections

Clearly the usage to rootkit ratio for Windows 7 is much improved from XP and Vista.

The problem is, rookits are getting harder and harder to detect and remove. We really don't know how many are unregistered on that graph.

This all assumes that you are currently able to run some code from a sandboxed application that has some of its permissions revoked such as writing to the file system.

I know. What I'm saying is that's easier said than done, and it's a big assumption to make. It assumes that you have already defeated ASLR and DEP to even be able to run code. But obviously once you get code running, you have a lot more options for breaking out of the sandbox. But you're not going to do either one easily.

Not necessarily. It really depends how your code is being run first of all. Perhaps you have a payload in the PDF file itself, and the PDF viewer has opened that file and read it in to memory and there is a specially crafted part of the PDF file such as an image which you know that PDF viewer can't read under certain conditions perhaps its buffer for reading the colour profile of that image is written poorly and it is possible to get some code of only a finite length stored and executed by the PDF Viewer but its privileges on the system are low enough that you can't create or store any files on the system to keep your malicious software around after a reboot of the system.

Ok, so you overwrite some section of memory. You want your to run your payload so that you can run in the sandbox and hopefully can escape the sandbox. But how do you get the section of memory (the memory you corrupted) to execute? First, you don't even know where you've just placed the payload. But perhaps you know the register ESP points to it. So you need to jump to it. So, you need to overwrite the return instruction address with an instruction that points to your payload. But you can't hardcode an address, because ASLR will change the location of the JMP ESP address that you've found. Then, even if you could reliably tell the computer to jump to your code, the PDF reader program should have read that into memory marked as data. So it's not even executable.

Definitely would need to find a reliable way to escape this.

But let's say your assumption holds. You've got code running in a sandbox and you want to escape. Yes, the computer is in a lot of trouble at this point.

I know. What I'm saying is that's easier said than done, and it's a big assumption to make. It assumes that you have already defeated ASLR and DEP to even be able to run code. But obviously once you get code running, you have a lot more options for breaking out of the sandbox. But you're not going to do either one easily.

Ok, so you overwrite some section of memory. You want your to run your payload so that you can run code in the sandbox that hopefully can escape the sandbox. But how do you get the section of memory to execute? First, you don't even know where you've just placed the payload. Perhaps the register ESP points to it. So you need to jump to it. So, you need to overwrite the return instruction address with an instruction that points to your payload. But you can't hardcode an address, because ASLR will change the location of the JMP ESP address that you've found. Then, even if you could reliably tell the computer to jump to your code, the PDF reader program should have read that into memory marked as data. So it's not even executable.

But let's say your assumption holds. You've got code running in a sandbox and you want to escape. Yes, the computer is in a lot of trouble at this point.

If there is one thing we know about malicious software writers it is that they go for low hanging fruit. They won't go through a lot of the steps I've outlined here to take over a computer because there are easier ways. The fact remains that the easiest way to gain control over a Windows 7 system is to target a 32-bit binary that is not opting to be protected by DEP and ASLR. Of which there are many like you described in your previous post finding a dynamic link library that fits that bill is easy.

The only time we are ever going to get first hand experience of working ASLR and DEP combined exploits is in hacker competitions. But for this discussion I'm assuming a lot to point out that ASLR isn't impossible to overcome. And of course the point of Steve in his reply to this users query about security is that whilst ASLR and DEP and all these other technologies have been included they aren't utilised in a way that affects the overall security of the system because too many things that can be exploited for system wide access aren't using them.

Vulnerable to Viruses and Malware I mean. Vulnerabilities are inconsequential in the short term if nobody's exploiting them. Just look at Stuxnet - even the US government is exploiting Windows vulnerabilities.

Inconsequential? Nobody exploiting them? Seriously? Tell that to anyone who got screwed by one of the myriad of loopholes and misconfigurations in Apache, PHP, OpenSSL and any other number of *Nix software. You can't swing a dead virtual penguin without bumping a browser window with a story about some server getting hacked. Costs quite a bit of money, time and bad customer relations. And please don't try and pass off Linux as being 100% flaw free; Secunia and other security lists will tell you otherwise. They had their fair share too... some go for quite a good deal of time before being spotted too.

1. How users get their software.

You see quite a few articles and such that tell users to add various repositories to their sources.list, download and dpkg this .deb, extract and run the script in this tarball, etc etc.. the walled garden thing doesn't hold up, especially when somebody wants to stay current with a distro that's perpetually out of date. Just need to trick that user into running something they shouldn't and that Linux security has been rendered pointless.

2. Permission system. Specifically, how programs get executable permissions. Windows Autorun is an example of a popular infection vector.

True with the legacy OS's. Current versions ask first before doing anything. If they still run it, well that's on them.

3. The variety of Linux distributions, their configurations, and the software which they contain are the bane of malware writers. They do best in homogeneous environments with predictable file locations and installed software, and slow update cycles.

Not sure how this is a benefit... /usr/lib versus Windows/System32? Both are a bit predictable..

1. For years Windows had very lax security, which encouraged a vast malware ecosystem. Critical mass was reached long ago. The hacking tools, code, and expertise has all developed around Windows. That's not something you can transfer overnight.

No arguments there. XP made quite a few mistakes when it came to security. Whoever thought giving users admin access by default was a good idea should be shot.

2. The Win32 API is very hacker/malware writer friendly.

Erm any API can be hacker/malware friendly. Shoot probably easier in Linux thanks to the myriad of tools at your disposal that's typically already installed.

3. There's no central repository to get your software from (yet), which inevitably leads to the practise and habit of downloading and running random programs from the internet. This behaviour increases the risks of infection with malware.

Agreed to a point, as it's not 100% solid in Linux either, see above about working with external repositories.

There are many examples in Windows' history. And yet, not a single Virus has successfully spread on GNU/Linux.

And again, it's because the malware writers just don't care. 99% of the time, malware is oriented around money. Stealing passwords, sending you advertisements, encryption/ransomware, ripping off your virtual crap in World of Warcraft, things like that. Who's going to spend the time and trouble to write up a bit of malware and think to themselves, "Gee this is great, now how can I release it to the smallest amount of users possible?" Or to be a bit melodramatic, Linux presents quite the perfect delivery mechanism.. the central repository. All it takes is just takes one good hack or a cheesed off coder. Worked great by accident, would be quite devastating if intentional. Bumblebee proved how well that could work. The software worked great until you uninstalled it. Then it literally nuked your entire /usr directory, rendering the system unusable. Oopsie.

You could try and write some bad code for Linux, but how would you deliver it? How/where would it install itself? How would it run/spread? Then you start to realise, GNU/Linux is an extremely heterogeneous environment - again, the bane of virus/malware writers.

Again, user stupidity. Attachments, tricks, misdirection.. how a majority of this stuff starts.

It's all well and good pointing out buffer overflow exploits, but if nobody's using them, they don't pose a real security risk in the short term. All of the exploits are targeting Windows, the reasoning of which is unimportant, there is only the reality of the situation.

Again, that's where the money is, on the desktop side of things. OSX used to be able to claim similar, but as their market share is growing, so is their number of malware cases. Or, look at Android, it's quite popular, and "malware cesspool" has been thrown around quite a bit. The reasoning is only unimportant if you're wanting to dodge the issue, namely they're going where the money is, and the Linux desktop isn't it, not that it's magically immune from malware.

I'd say that Windows 8, 7, Vista are all much more secure than Windows XP, but not proportionally more safe. And as Windows XP loses market share, later versions of Windows will become less safe because malware writers will be forced to target them.

And as computer security improves, malware writers rely more and more on social engineering. It's much easier and you can't engineer a solution to it.

"my stupid anti-virus won't let me run this program... what's wrong with my windows! stoopid MSft!"

"my computer seemed slow, so I installed this program that said it would make it faster..." <=== Too many people tell me this

You can't fix the problem. Well you could if you were a perfect being. A flawed being cannot make anything perfect or impenetrable, it is only as good as the person that can crack it can fix against his own cracking capabilities. Not everyone thinks the same, therefore, holes unknown to the designer will exist. Even if you get 1000 people to provide security fixes, 1,000,000 more will find ways around it. Windows 7 and vista are much more secure than xp, it took malware designers a whole month to figure out how to break its security. Windows 8 isn't rtm yet and I am sure that there are programmers ready to deploy the next malware to infect that os. Security, in any os, is a facade. Idiot users can claim that a particular os is much more secure than another, however, understanding the payload from that os vs a very popular os is very small and not profitable to malware programmers. Any malware is money driven, in most cases, so attack the majority. Programming anything is os specific, as a tech or programmer you should know that...learn the language that will give you the most benefit.

If I wanted to get my name out there in security I might be tempted to write software against windows in hopes of getting into a security firm like Symantec or eset. Maybe I want to write something that will constantly go to a website that would give me $.10 for every visit. Maybe I would want to write something that would get me valid email addresses to sell. Maybe I would want to write something that would do a lot of SETI calculations from what ever pc is connected to. Maybe I want to steal keystrokes so that I can get into your bank accounts. Maybe I want to infect you with a fake av to sell you a service so i can get you cc info....maybe I want to do all of that..who would be my most likely target audience based on payload...which would bring me the most hits? Unix, no....Ubuntu, no....red hat, no......sco unix, no.....apple, might be worth looking at but, no......windows, this would be best for now so, yes, infecting this base will bring me the most in the shortest amount of time before getting caught.

I'm not understanding the argument against ASLR. Of course if not all .DLLs are compiled with it, then it doesn't work, but at least that is fixable, XP which has no ASLR is not fixable at all. Secondly, Windows 8 fixes some significant things related to this, IE (and other programs that opt in) enables 'mandatory ASLR' so that all .DLLs that IE uses are forced to use ASLR, and it also can run in the enhanced protected mode sandbox as someone mentioned earlier which is much more hardened than the sandbox in Vista and 7. Windows 8 also has High Entropy ASLR, basically giving ASLR much more randomness on x64 binaries (where as Vista and 7 give the same amount of randomness to x64 and 32-bit programs), exactly how much is not known yet but there is nothing stopping microsoft from using the full 16 Exabytes of address space available to x64 programs. Trying to out guess that would be impractical for hundreds of years at current CPU speeds, assuming you don't tip off the user right away by crashing their program.

According to MS' Security Intelligence Report, XP has over 10x the infection rate of Windows 7 x64 as tallied by MSRT. And IMO it is fud to say Windows Vista and 7 have many 'unknown' rootkits, while they may have some, XP almost certainly has many more and additionally a hidden rootkit is pretty useless, it usually has to do something for the author to make it worth it which will make it noticeable, such as draining bank accounts or displaying pop-ups or DDoS'ing web sites. Some users don't notice some of this, but it's extremely unlikely there is a significant amount of these things going completely undetected, there are too many people that will recognize any of these behaviors.

Vista and 7 are much more secure, the stats prove it, but of course if you work in a shop you are still going to see a ton of infected machines from the newer versions of Windows because of incompetent users ignoring warnings and elevating programs they obviously should not.

  • Like 1

I'm not understanding the argument against ASLR. Of course if not all .DLLs are compiled with it, then it doesn't work, but at least that is fixable, XP which has no ASLR is not fixable at all. Secondly, Windows 8 fixes some significant things related to this, IE (and other programs that opt in) enables 'mandatory ASLR' so that all .DLLs that IE uses are forced to use ASLR, and it also can run in the enhanced protected mode sandbox as someone mentioned earlier which is much more hardened than the sandbox in Vista and 7. Windows 8 also has High Entropy ASLR, basically giving ASLR much more randomness on x64 binaries (where as Vista and 7 give the same amount of randomness to x64 and 32-bit programs), exactly how much is not known yet but there is nothing stopping microsoft from using the full 16 Exabytes of address space available to x64 programs. Trying to out guess that would be impractical for hundreds of years at current CPU speeds, assuming you don't tip off the user right away by crashing their program.

This.

And web browser attacks that employ heap spraying... you'll crash the computer by making it run out of memory long before you get the smallest fraction of memory space filled, if the user is using Internet Explorer 10 with Enhanced Protected Mode.

And then, even if you do manage to get around that, you then have to deal with the Enhanced Protected Mode sandbox.

I think a lot of the security discrepencies we see between the two operating systems can be explained away by a few things.

1. Windows 7 now comes with a free Antivirus from Microsoft in Windows Update that a staggeringly high number of consumers are taking advantage of.

I would have to agree with that point...

One should also mention that by default- certain features are turned on.

Windows Firewall (unless one is provided for by the OEM) {yes I know it was turned on in XP SP3 but Vista and up did not need a service pack to turn it on}

I do love the way they compare it to Windows 98 -- on a side note-- It took me about 3 years to get my folks to migrate to Windows 98 from Windows 3.1 mainly because all their programs were for it and they were used to it.

The problem is, rookits are getting harder and harder to detect and remove. We really don't know how many are unregistered on that graph.

I can see your point on that one -

You never know a root kit exists until someone "Discovers it" or the maker lets it be known...

I can see your point on that one -

You never know a root kit exists until someone "Discovers it" or the maker lets it be known...

While that statement may seem to have some truth in it, it's really not accurate. Many security researchers, AV companies, and MS themselves, run honey-pot systems that they connect to the net and try to have infected by new unknown malware, then they do thorough (probably off-line) analysis of the systems. I'm still in the 'mass of unknown rootkits' is a myth camp. There may be examples of in-the-wild but undetected for years malware like Flame, but I think they are the exception not the rule.

How can you air a program called "Security Now" where the main guy still runs XP and FF3.6

I listen to that show quite a lot and learned a few useful things from it, such as how to hack WPS routers :laugh:

Its more like an RSS News Feed than much else

How can you air a program called "Security Now" where the main guy still runs XP and FF3.6

I listen to that show quite a lot and learned a few useful things from it, such as how to hack WPS routers :laugh:

Its more like an RSS News Feed than much else

I'm going to start a show called "Today in Programming" but I'm only going to talk about Fortran and QBasic.

Yeah this guy is talking nonsense though. Doesn't sound like much of a show.

I'm going to start a show called "Today in Programming" but I'm only going to talk about Fortran and QBasic.

Yeah this guy is talking nonsense though. Doesn't sound like much of a show.

Get a clue you guys. It's one of the best security podcasts on the internet. Who cares if he is running XP and Firefox 3.6 (By the way he did upgrade firefox). They are all still receiving security updates. It's just his choice. Just because he chooses to do so doesn't make him any less of a security expert.

Get a clue you guys. It's one of the best security podcasts on the internet. Who cares if he is running XP and Firefox 3.6 (By the way he did upgrade firefox). They are all still receiving security updates. It's just his choice. Just because he chooses to do so doesn't make any less of a security expert.

There have been a number of security issues lately that only affected XP, not Vista or 7. Yes XP is still getting updates but that doesn't it make it more secure than Vista/7, it just isn't. To say otherwise is absurd, especially for someone calling themselves a security expert.

There have been a number of security issues lately that only affected XP, not Vista or 7. Yes XP is still getting updates but that doesn't it make it more secure than Vista/7, it just isn't. To say otherwise is absurd, especially for someone calling themselves a security expert.

he never said it was more secure than Vista or 7

Get a clue you guys. It's one of the best security podcasts on the internet. Who cares if he is running XP and Firefox 3.6 (By the way he did upgrade firefox). They are all still receiving security updates. It's just his choice. Just because he chooses to do so doesn't make him any less of a security expert.

No. Firefox 3.6 went extinct back in April.

Wrong place to ask the question. The fanboys will tell you unbelievable stories. :p

We all know you love XP, but it's time to take off those XP-colored glasses, even the most hardened Windows users will tell you that XP was a security nightmare, and in some ways, still is.

But they can't really change much without breaking all of the legacy stuff. So they're limited in what they're able to do. And you could argue that they're sort of running out of things to do at this point. So first of all, looking back at all the patches we've discussed in the last year, nothing is XP only. I can't think of anything that only affected XP.

I disagree most of the security features added to Vista such as DEP / UAC broke a lot of software ; mostly the badly written software which made assumptions about things like Admin access and executing out of the data region . and Microsoft had to do a lot of plumbing to get these older software to work . Compatibility headaches were a major issue in Vista surely this guy is ignoring the fact that Microsoft was indeed willing to break compatibility over security .

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • 7 Days: Windows 11 turns five, Ford made a mistake, and Starlink plans direct mobile service by Aditya Tiwari 7 Days is a weekly roundup of picks of what's been happening in the world of technology - written with a dash of humor, a hint of exasperation, and an endless supply of (black) coffee. This week's highlights include Apple's $4 billion class-action lawsuit, a smartphone with a 14,000 mAh battery, Google catching up with Anthropic, and the Steam Summer Sale 2026. Let's get started. You can check out the recent issues of the 7 Days weekly roundup. Windows 11 turns five Microsoft's Windows 11 operating system completed five years of existence on June 24 this week. According to the latest data, the controversial operating system now runs on almost 72% of Windows PCs worldwide. The launch of Windows 11 had several dramatic twists and an entire preview build leaked ahead of launch. Ford made a mistake Many would agree that one of the biggest mistakes the automobile industry made was surrendering to the giant touchscreens and removing physical buttons. However, Ford made even more. The company executives said they made a mistake by replacing human engineers with AI. Ford admitted that AI couldn't replace experienced engineers and the company is rehiring veterans to improve quality and cut recall costs. Starlink mobile service Elon Musk's SpaceX wants to use its massive constellation of satellites to power your phone's network. The company is reportedly considering building a terrestrial mobile network to complement Starlink’s satellite coverage and planning to sell mobile phone plans directly to customers in the US as part of a wider expansion of Starlink. Our Features Our coffee-powered team published a platter of editorials, opinion posts, hands-on experiences, and guides. Check them out: Hey Google, these are the Gemini features I want in 2026 You've tried DuckDuckGo and Brave Search, now get serious with SearXNG Why Delta Chat is the best decentralized messenger you have probably never tried We check out the SKG PS700 Neck Massager SKG Hand Massager with Heat OS500 hands on Hands-on with BOOX Tappy: cute little reading accessory Hands-on with the ProtoArc EM25: Affordable ergonomic mouse that focuses on the right things Hands-on with iFlyTek AINote 2 E-Ink tablet: insanely thin and smart This week in software news Catch up on some of the latest software news updates that arrived throughout the week: Firefox 152.02: The latest browser update brought fixes for performance, translation, and cloud storage services. It addressed problems with localization, playback issues with certain MP4 files, and performance issues on websites that perform multiple encryption operations simultaneously. Ubuntu Livepatch: Canonical's zero-downtime service Livepatch arrived on Arm64 devices running Ubuntu Core 26 and Ubuntu 26.04 LTS. Livepatch allows users to apply important kernel updates without any service interruption or rebooting. AMD 26.6.2 driver: The new driver version for Radeon hardware owners brought FSR 4.1 upscaling tech to an entire generation of its products: the RX 7000 series. However, the 26.6.2 FSR driver flew dark clouds over users, breaking many Windows PCs and causing a yellow bang or other launch failures on Windows 10. AMD later pushed the 26.6.3 Hotfix update to fix the issues. Goodbye Notion email: It's been a little over a year since the AI-powered email client launched. The company has announced its shutdown, which will take effect on September 22, and said it doesn't see the point in maintaining a frontend email client when people are moving towards automation. Ventoy version 1.1.14: The biggest change in the Rufus alternative is an updated Secure Boot shim file to resolve the UEFI CA 2023 issue, a compatibility problem that affected Secure Boot environments on some systems. This week in hardware news Image: Valve Catch up on some of the latest software news updates that arrived throughout the week: 14,000 mAh battery: Yes, that's something that iPhone users can only dream of. But a Chinese company is reportedly developing a smartphone with a 14,000mAh battery. If it ever sees daylight, it would be the largest battery ever on a smartphone, possibly offering a week of backup on a single charge. Steam Machine prices: Valve finally confirmed the Steam Machine's pricing. Starting at $1,049 for the 512GB option, storage and the included controller are the biggest differences among the four variants presented. Xbox just got more expensive: Rising costs of storage and memory prompted Microsoft to raise prices. Xbox Series X|S models wth 512GB storage will cost $100 extra, and 1TB models will cost $150 extra. However, the Redmond giant discounted the 2TB models. New NVIDIA supercomputers: The company announced plans to deploy 35 high-performance (HPC) AI supercomputers across Europe this year, primarily at national supercomputer centers, AI factories, and research institutes. Fast fast memory: Samsung built the UFS 5.0 storage solution, which pushes the data transfer speeds to 10.8 GB/s on mobile devices. It can open doors for faster local AI performance, which otherwise doesn't look promising under the current scenario. Custom chips for TikTok: Qualcomm is reportedly in talks with ByteDance to build custom video chips optimized for its massive data center workloads. ByteDance needs hardware that can help it ingest, process, and serve billions of short-form videos daily. OpenAI Jalapeño: The AI giant announced its first custom-designed AI chip developed in partnership with Broadcom. Jalapeño is designed specifically for large language model inference and is the first product from a multi-generation compute platform being developed by OpenAI. Galaxy A27 5G: The new mid-range smartphone from Samsung arrived with a platter of updates over A25 5G, including a 120Hz refresh rate, Infinity-O punch-hole camera design, expanded AI features, and more. Qualcomm takes on NVIDIA: The chipmaker baked the new Dragonfly CPU, High Bandwidth Compute technology, and AI chips to challenge NVIDIA in the AI data center market. Qualcomm said its new lineup improved per-watt performance, token throughput, and total cost of ownership for AI data centers. IBM goes sub-1nm: The company reached a semiconductor milestone by announcing the world's first sub-1-nanometer chip technology, based on a 0.7nm (7-angstrom) node. It can pack nearly 100 billion transistors onto a chip the size of a fingernail. This week in Google News Image: Google Catch up on some of the latest Google news updates that arrived throughout the week: What to expect from the Pixel 11 series: The upcoming lineup is expected to feature four different variants and a price hike due to the global memory shortage. Read our detailed coverage to know about the expected Pixel 11 specs. Stopping Google: The Free Software Foundation Europe urged the European Commission to stop Google from silently reinstalling AI models and requiring registration. Users should be able to fully uninstall AI-based features from Android devices and access interoperability features. Chasing Anthropic: The Claude-maker is making new strides every day in the AI world, but the search giant is struggling to catch up. Google is said to be reshuffling its AI coding "strike team" it created roughly about two months ago, turning it into a broader model-training group amid talent losses at DeepMind. New Google Play billing: Google has faced a long legal battle with Epic Games, and the search giant is rolling out a redesigned Play Store billing and fee structure. Available in the US, UK, and the European Economic Area, it will take effect on June 30. Error-free Sheets? A new feature in Google Sheets allows Gemini to inspect formula errors and apply corrections directly in the spreadsheet. Google said the new feature can handle pretty much everything from basic arithmetic to very complex calculations. Breeze through airports: Google Wallet became the first digital wallet to integrate with TSA PreCheck Touchless ID, a program that enables travelers to move through airport security checkpoints using facial recognition instead of a physical ID or boarding pass. Built-in computer control: Gemini 3.5 Flash got a built-in tool called Computer Use, which allows developers to build agents that navigate browsers, mobile interfaces, and desktop applications. Google Finance: The redesigned platform is now out of beta. Google has added several new features, including portfolio tracking, scheduled market briefings, and a dedicated Android app. An iOS app is planned for later in 2026. This week in Apple News Image: Apple Catch up on some of the latest Apple news updates that arrived throughout the week: Trade secrets reportedly exposed: Apple's manufacturing partner in India, Tata Electronics, confirmed a cybersecurity attack on its systems that may have exposed trade secrets of Apple and Tesla. Hackers reportedly stole up to 630 GB of data and posted up to 200,000 files on the dark web. Grab your payout: Apple is facing a class-action lawsuit in the UK and might end up paying $4 billion (£3 billion) if it loses. The iPhone-maker has been accused of trapping users in iCloud by restricting rivals from fully accessing iOS. The tribunal recently set a full trial date for October 2028. iOS 27 Beta 2: Apple's latest iPhone update is moving forward, and a new beta was pushed this week. While iOS 27 Beta 2 for developers pushed several bug fixes across the system, the AirPort Utility was deprecated; it's no longer available to new users. Price hike: Just like others, Apple has raised prices of several MacBook and iPad models, including the MacBook Neo, which now starts at $699. This comes after reports that this year's iPhone will also become expensive. Second-gen iPhone Fold: While the world is desperate to see Apple's foldable iPhone, leakers have started to talk about its second generation. Apple is expected to launch a successor in Fall 2027, featuring a wider folding display while reusing the same screen found in the first generation. The search for memory: Apple is reportedly looking at blacklisted Chinese companies amid rising memory chip prices. The company is seeking clearance from the Trump administration to purchase memory from ChangXin Memory Technologies (CXMT). This week in Meta news Image: Meta Catch up on some of the latest Meta, WhatsApp, and Instagram updates that arrived throughout the week: WhatsApp gets a new final boss: Mark Zuckerberg announced that CRED's Kunal Shah will become the next global head of WhatsApp, as Will Cathcart steps down and moves to a new role at Meta. The social media giant invested money in CRED through a Series H funding round. AI glasses in 26 styles: A new line of Meta Glasses launched in partnership with EssilorLuxottica. Starting at $299, it comes in more than two dozen styles across different colors, lenses, and frames. More ways to doomscroll: Instagram for TV is now available on Samsung smart TVs launched in 2020 and later years. The company also announced that it's testing several new features on Instagram for TV, bringing it closer to YouTube and Netflix. This week in AI news Image: Microsoft Catch up on the latest artificial intelligence news updates that arrived throughout the week: Water-saving data center: Microsoft is building a gas-powered AI data center with a capacity of 2 gigawatts. The company will deploy a closed-loop cooling system, saying that its total lifecycle water use will be "only a fraction of that consumed annually by a typical fast-food restaurant.” OpenAI beats Claude Mythos: GPT-5.5-Cyber got a limited release for verified defenders. It scored 85.6% on CyberGym, compared with 81.8% for GPT-5.5 and 83.8% for Claude Mythos 5. The AI giant also announced a limited preview of its new GPT-5.6 model series, whose flagship model, GPT-5.6 Sol, is targeted at demanding reasoning and agentic workloads. Proceed with caution: The Trump administration instructed OpenAI to limit the distribution of GPT-5.6 to a small group of government-approved partners rather than the general public, as has happened in the past. Claude Tag: Anthropic launched its new AI teammate for Slack, enabling teams to delegate tasks to Claude directly within Slack channels. What makes it different is that it's designed to operate as a shared assistant for an entire team rather than a single user. Challenging US dominance: The UK government has funded £60 million ($70 million) to Oxford and UCL to keep the country in the AI race by building open-source, low-hardware alternatives. The two organizations will share the money over six years. Paying for AI development: One cost is the loss of human jobs. Oracle laid off about 21,000 employees (13% of its workforce) amid increasing AI adoption. The software giant said that AI advancement and adoption "may continue to result in reductions to our workforce." GitHub strips features: It removed the ability to manually detect an AI model from its Copilot Free and Student plans. In other words, its automatic routing system is the only way to choose a model. Are you a copycat? Anthropic accused Alibaba of creating about 25,000 fraudulent accounts to copy Claude's capabilities at scale. It told US lawmakers that operators linked to Alibaba generated 28.8 million exchanges with Claude between April 22 and June 5, 2026. Reserve my memory: The semiconductor company Micron revealed that AI companies are spending billions to lock up its memory years in advance. Its customers have locked in $22 billion worth of memory supply commitments. Another AI battle: A publisher group that collectively owns 400 newspapers sued OpenAI and Microsoft for scraping their content to build AI chatbots such as ChatGPT and Copilot without compensation. Anthropic AI ban: The US government partially reversed the Anthropic AI ban, allowing it to restore Claude Mythos 5. However, it can only be deployed for a limited set of US organizations that operate and defend critical infrastructure. This week in Microsoft News In some of the hottest stories of the week: Windows 10 quietly gained a year of support and updates, Windows 11 KB5095093 released with a long list of features, and Windows 11 26H2 is finally getting the ability to disable web search results in Windows 11 Search. You can check out Taras's freshly baked Microsoft Weekly roundup to catch up on all the interesting stories this week. This week in science news Image by Pascal Küffer via Pexels Catch up on some of the latest science and out-of-this-world updates that arrived throughout the week: 13 billion-year-old secret: Scientists found that the universe's first molecule (helium hyride) reacted with hydrogen much faster in cold temperatures than previously believed. It's a new breakthrough that changes our understanding of early star formation. Cosmic Living Fossil: Astronomers found CR3, a surprisingly pristine 11.5-billion-year-old galaxy dubbed a "living fossil." It suggests the universe's first generation of stars formed much later than previously assumed. Einstein's 100-year-old theory: Thanks to relativity, researchers calculated that clocks on Mars tick 477 microseconds faster per day than on Earth. This minute gravitational difference is crucial for synchronizing future interplanetary space missions. Don't panic: NASA's James Webb Telescope finally eliminated the threat of asteroid 2024 YR4 striking the moon in 2032. The rocky giant will give us a safe fly-by without causing any harm. This week in gaming? The latest issue of Pulasthi's Weekend PC Game Deals curates several exciting games on sale this week. RollerCoaster Tycoon 3 Complete Edition and Voidwrought have replaced the old titles in this week's Epic Games Store giveaway. For Xbox Free Play Days, the new titles include House Flipper 2, Blades of Fire, and Assetto Corsa Competizione. Steam Summer Sale 2026 kicked off with discounts for everything from the newest games and retro gems to all sorts of DLC packs, until July 9. Meanwhile, NVIDIA GeForce NOW added support for several new titles, including Dark Scrolls, SAND: Raiders of Sophie, and EMPULSE. That said, here are some more stories from the gaming world: Age of Empires Mobile comes to PC, here's how to carry over progress from your phone Xbox Insiders get Xbox 360 achievements and Gamertag character upgrades Grand Theft Auto VI pricing revealed alongside Ultimate Edition and pre-loading details Sony announces Bungie layoffs that will affect "significant number of employees" From the review corner This week, Steven published a review of the TerraMaster F4-425 Pro AI-powered NAS, featuring an all-metal exterior on the lines of the four-bay F4-425 series. Powered by the octa-core Intel Core N350, the TerraMaster F4-425 Pro is highly energy-efficient, operates quietly, and offers three M.2 slots. On the flip side, OpenClaw support requires removing security hardening (SPC), AI requires a paid subscription, the software feels like a beta, and the rubber feet constantly come unstuck. ZimaBoard 2 1664 Starter Kit Another NAS setup reviewed this week is the ZimaBoard 2 by IceWhale Technology. It comes in a small footprint with great modern hardware through a combo of Intel N150 and DDR5 memory support. On the downside, the memory is not upgradeable, ZimaOS is a bit barebones, factory reset requires USB flashing, and there is no automatic backup via the mobile app. Synology's BeeCamera software Christopher wrote his review of the software that powers BeeCamera Plus and said "the BeeCamera app is a great way to add private home monitoring to your network but there are some limitations." It's free with an easy setup process, fast response time, and good AI and detection features. However, there is no desktop version; it only works with Synology cameras, some configurations are difficult to set up on a phone, and it lacks the features of the surveillance station. More price drops! We got you covered with some hot tech deals all week. For some reason, if you missed out on a great discount, here is a summary of some recent deals that are still alive: Onkyo Dolby Atmos AV receivers are really solid deals 4TB TEAMGROUP MP44Q, 2TB T-Force G50, and 2TB WD My Passport SSDs drop to great prices Edifier S3000MKII hi-fi audiophile grade bookshelf speaker is at its lowest price now The best controller for XBOX and PC is down to the lowest price Limited time Prime Day deal cuts price of this Hisense 65" 4K smart TV in half To view all of our recent deals, click here. So, these were some of the biggest tech news and other updates from this week. There will be more issues of our 7 Days series in the coming weeks and months, so stay tuned. You can also support Neowin by registering for a free member account or subscribing to extra member benefits, along with an ad-free tier option. Have a great weekend!
    • Zen Browser 1.21.4b by Razvan Serea Zen Browser is a privacy-focused, open-source web browser built on Mozilla Firefox, offering users a secure and customizable browsing experience. It emphasizes privacy by blocking trackers, ads, and ensuring your data isn't collected. With Zen Mods, users can enhance their browser experience with various customization options, including features like split views and vertical tabs. The browser is designed for efficiency, providing fast browsing speeds and a lightweight interface. Zen Browser prioritizes user control over the browsing experience, offering a minimal yet powerful alternative to traditional web browsers while keeping your online activity private. Zen Browser’s DRM limitation Zen Browser currently lacks support for DRM-protected content, meaning streaming services like Netflix and HBO Max are inaccessible. This is due to the absence of a Widevine license, which requires significant costs and is financially unfeasible for the developer. Additionally, applying for this license would require Zen to be part of a larger company, similar to Mozilla or Brave. Therefore, DRM-protected media won't be supported in Zen Browser for the foreseeable future. Zen Browser offers features that improve user experience, privacy, and customization: Privacy-Focused: Blocks trackers and minimizes data collection. Automatic Updates: Keeps the browser updated with security patches. Zen Mods: Customizable themes and layouts. Workspaces: Organize tabs into different workspaces. Compact Mode: Maximizes screen space by minimizing UI elements. Zen Glance: Quick website previews. Split Views: View multiple tabs in the same window. Sidebar: Access bookmarks and tools quickly. Vertical Tabs: Manage tabs vertically. Container Tabs: Separate browsing sessions. Fast Profile Switcher: Switch between profiles easily. Tab Folders: Organize tabs into folders. Customizable UI: Personalize browser interface. Security Features: Inherits Firefox’s robust security. Fast Performance: Lightweight and optimized for speed. Zen Mods Customization: Deep customization with mods. Quick Access: Easy access to favorite websites. Open Source: Built on Mozilla Firefox with community collaboration. Community-Driven: Active development and feedback from users. GitHub Repository: Contribute and review the source code. Zen Browser 1.21.4b changelog: New Features Updated to Firefox 152.0.2 and 152.0.3 Added 'Edit pinned tab' context menu item to manually set a pinned tab's URL Added 'Add Route for Domain' context menu item to quickly add a tab's domain to the Space Routing settings Fixes Prevent sidebar from flickering when moving a tab (#14131) Full-screening while on a glance tab will now expand the glance tab to a normal tab (#11766) Fixed space routing tabs opening in background when it should be in foreground (#14183) Other minor bug fixes and improvements. Download: Zen Browser | 90.2 MB (Open Source) Download: Zen Browser ARM64 | Other Operating Systems View: Zen Browser Home Page | Screenshots 1 | 2 | Reddit Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • I was using searxng for about a year , self hosted, but results were starting to timeout and eventually it became unusable so I switched to degoog. Much better for my needs, more polished and add-ons like maps and calculations etc
    • Fake Superman doing the Anti-Trump PR for us, good man !
  • Recent Achievements

    • Reacting Well
      JuvenileDelinquent earned a badge
      Reacting Well
    • One Month Later
      Excellence2025 earned a badge
      One Month Later
    • Week One Done
      Excellence2025 earned a badge
      Week One Done
    • Week One Done
      flexorcist earned a badge
      Week One Done
    • Week One Done
      Woland13 earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      504
    2. 2
      +Edouard
      205
    3. 3
      PsYcHoKiLLa
      149
    4. 4
      Steven P.
      72
    5. 5
      FloatingFatMan
      69
  • Tell a friend

    Love Neowin? Tell a friend!