-
mn–
AskWoody LoungerActually, password checking may not need elevated privileges. Didn’t on older systems, back before “shadow” passwords… and in low-security environments you might still find such configurations. Inadvisable unless you really can’t help it, but…
And… you know how sudo typically allows you to run a *second* command at elevated privileges without entering the password a second time if you’re quick enough? Yeah, that. It doesn’t stay in memory or anything, it just saves a marker in a file and checks that for time and session differences – and if those are good enough it elevates your privileges without asking for your password.
Yes, this means that if you know where that file goes and have the privileges to write there, you can bypass the password prompt. (Then again in that case you already seem to have pretty much all the privileges, so…)
1 user thanked author for this post.
-
mn–
AskWoody LoungerIt works because sudo itself needs to run at elevated privileges to be able to grant privileges.
1 user thanked author for this post.
-
mn–
AskWoody LoungerBy the principle of defense in depth, you do want this fix.
Because if someone manages to be able to run shell commands as you some other way, say from a browser or email fault, they can get root credentials with this.
And also, if you manage to end up with… say, file names… ending in the \ character (it’s allowed in file names just fine in Unix/Linux), running without the fix is somewhat unsafe even in full isolation.
5 users thanked author for this post.
-
mn–
AskWoody LoungerOh and this is really not limited to Linux.
While I haven’t seen any attempts at reproducing this on other operating systems, it’s not unlikely that sudo is affected across all of them.
Sudo runs on all the BSDs I believe, and MacOS, AIX, HP-UX (both hppa and Itanium), Solaris (i386, x86-64 and Sparc), … and a bunch of other things. Wouldn’t be surprised to find it on Juniper routers for example (JunOS looks very BSD-like), or any number of embedded or integrated systems – VxWorks is POSIX enough that having a sudo on the NASA Mars rovers is not at all impossible.
1 user thanked author for this post.
-
mn–
AskWoody Loungerand does windows have “kernel updates?”
Yes, but they’re usually not specifically named as such.
-
mn–
AskWoody LoungerThe issue is only relevant to cases where there’s another user who is not supposed to be able to gain admin credentials.
Unfortunately any number of things callable from the network can qualify for that if they can be made to call sudo with arbitrary command line arguments.
And after the fix, sudo will work more correctly, though this only affects cases where you had things like file, directory or device names ending in a \ character that you’d use in sudo commands. (Remember, it’s not a path separator in Unix/Linux…)
5 users thanked author for this post.
-
mn–
AskWoody LoungerThings catch fire at 100 ℃
Very few normal things and they tend to be nasty otherwise too. Don’t build your computer out of solid phosphorus…
Pretty sure that a chip would fry and melt the solder as the plastic melts @ 105 ℃
I thought milspec electronics have to survive running at 125 ℃ and PCs built to that standard may still use processors that come from normal production lines… Anyone know better?
Many plastics can take a lot more than that, anyway. PET (the stuff usual drinks bottles are made from) melts somewhere above 200 ℃, around the same as normal lead-free solders.
Leaded solder is usually somewhere around 190 ℃, more expensive types a bit under.
-
mn–
AskWoody LoungerI have found that certain things are easier to do from the command line, while others are easier to do from the GUI.
Exactly. Use the right tool for the job, etc…
-
mn–
AskWoody LoungerThat’ll be the difference between a hard requirement (can be done at all) and a quantitative requirement (making things easier, quicker, feasible with less task-specific training) …
GUIs used to be too resource-intensive to be worth it for just about anything. They’re a lot more affordable nowadays, and the critical threshold… depends heavily on what exactly you’re doing.
It’s now a matter of public record that GUI-like elements were considered for certain military applications quite a bit earlier than the Xerox Alto was made.
I’d note that there are a number of centralized management systems for servers that don’t require a GUI on the managed server to present one to the working administrator for most tasks. This might be a separate product entirely, though. (And there are a number of vendors for these, commercially. Have worked with several such products myself – one of those I’ve used was even sold by the same folks who’d packaged the server operating system on most of the servers we had at the time.)
-
mn–
AskWoody LoungerAlso there are a number of choices you can make at build time even for same-architecture hardware.
It’s common nowadays to include information on what those choices were, in /boot/config-{version} … there’s thousands of choices there.
$ grep CONFIG /boot/config-$(uname -r) |wc -l
8781
… yes, 8781 things you can tweak.
Some of those depend on others of course, for example if you choose to not build the “I915” driver (for the Intel GPUs) at all, the other 20 config settings related to that driver do nothing.
So if you’re building for some specific thing, you might know what’ll be in the box and can skip the drivers for all the things that aren’t there. And their initialization at runtime.
Also some things like scheduling will affect how the kernel handles different workloads. If you’re working with realtime audio and/or video, you might want the lowlatency scheduling options. (Available prebuilt on some distributions.) Generic probably has more raw throughput though.
And the various virtualization-focused kernel flavors tuned for running under those kinds of platforms… if you’re paying for CPU cycles on a cloud-virtual server you might not want to spend those cycles probing for sound cards and Bluetooth.
-
mn–
AskWoody LoungerI had always thought the kernel was one and the same for all distros, because Linus Torvalds “leads its kernel development team.” I’ve heard that said before and understood it to mean that there is one such team that develops the one evolving kernel.
Well from one point of view…
The mainline kernel source code tree is the same one for all the distros, yes.
But you can’t run source code directly so they all take some version of the source and the toolchain, and distribute prebuilt binary kernels. (With some configuration choices locked in at build time, like what CPU models to support and what to optimize for.)
Some have even added extra “out of tree” patches.
And then they usually do the “security only” update thing on top of that, so keep the same kernel major version and backport newer security fixes into it, trying to avoid the “update broke something” kind of issue.
(This is especially needed with closed-source device drivers – nVidia doesn’t seem to keep up with Linus, for example.)This is why I’m on 5.4.something (Ubuntu 18.04 hwe-edge with nvidia-driver package) for example, while Linus is working on 5.11 … and 5.10.10 is the latest mainline “released” kernel.
I can and have run 5.10 mainline kernels on this thing, but that breaks my graphics features somewhat (nvidia-driver doesn’t work on 5.10 on this hardware, have to use nouveau instead) and other things work differently.
1 user thanked author for this post.
-
mn–
AskWoody LoungerBesides, printers are fairly manageable… because the Windows drivers can be an even worse problem at least for some models, after a few years.
Avoid this by only buying printers that can take a known control language, either as primary or an alternative method. PCL, PostScript, or one of the other languages.
(Yes, I’ve had to use “generic” printer drivers more on Windows than on Linux. Only way to get the old Crystal Reports label printing to work after a Windows Server version upgrade, etc…)
OpenCL is often a bother on nVidia and on low-end models often just not worth it… much easier to get benefits from it with AMD, even just APU integrated graphics cores. Also worked like that in Windows as well as Linux last time I tried any OpenCL benchmarks on what we had at the time.
-
mn–
AskWoody LoungerJanuary 25, 2021 at 7:39 am in reply to: Which version of MS Office should we buy and where can we get it? #2337391Outlook in Office 365 has a nasty habit of sending attachments as winmail.dat file instead of the proper format
Actually, that winmail.dat / TNEF issue predates Office 365 and can still also happen with the permanent-licensed versions. (Also possibly some versions of Exchange Server might generate those even when not using Outlook?)
I don’t think there ever was a version of Outlook without that “feature”? I mean, since it’s theoretically a compatibility feature with Microsoft Mail 3.5 and earlier…
-
mn–
AskWoody LoungerIt just can’t seem to decide whether it resides on /dev/nvme0n1 or on /dev/nvme1n1 for one time to the next
Well yeah, that’s a bit of a continuous problem with Linux these days if you don’t know to expect it.
Not only can you end up with your internal SATA drives in a different order after a kernel update and reboot, in some cases you can even find them reordered while running… had that happen to me the other week when I was trying to recover data from a broken microsdcard a few different ways.
Oh well, always use /dev/disk/by-id/ or /dev/disk/by-path/ if there’s any chance…
-
mn–
AskWoody LoungerWhat privilege level were you running the copy with?
Because it’s unlikely to work as a non-administrator unless the computers had shared account management (as in members of the same domain), but I’d expect at least an error about the permissions. And even administrators probably need to adjust file ownership or access privileges.
1 user thanked author for this post.
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Windows 11 Windows Updater question
by
Tex265
21 minutes ago -
Key, Key, my kingdom for a Key!
by
RetiredGeek
4 hours, 33 minutes ago -
Registry Patches for Windows 10
by
Drcard:))
9 hours, 4 minutes ago -
Cannot get line length to NOT wrap in Outlining in Word 365
by
CWBillow
9 hours, 17 minutes ago -
DDU (Display Driver Uninstaller) updates
by
Alex5723
2 hours, 26 minutes ago -
Align objects on a OneNote page
by
CWBillow
14 hours, 32 minutes ago -
OneNote Send To button?
by
CWBillow
15 hours, 16 minutes ago -
WU help needed with “Some settings are managed by your organization”
by
Peobody
23 hours, 49 minutes ago -
No Newsletters since 27 January
by
rog7
19 hours, 46 minutes ago -
Linux Mint Debian Edition 7 gets OEM support, death of Ubuntu-based Mint ?
by
Alex5723
21 minutes ago -
Windows Update “Areca Technology Corporation – System – 6.20.0.41”
by
Bruce
1 hour, 9 minutes ago -
Google One Storage Questions
by
LHiggins
23 minutes ago -
Button Missing for Automatic Apps Updates
by
pmcjr6142
2 hours, 5 minutes ago -
Ancient SSD thinks it’s new
by
WSila
4 hours, 57 minutes ago -
Washington State lab testing provider exposed health data of 1.6 million people
by
Nibbled To Death By Ducks
1 day, 14 hours ago -
WinRE KB5057589 fake out
by
Susan Bradley
1 day, 7 hours ago -
The April 2025 Windows RE update might show as unsuccessful in Windows Update
by
Susan Bradley
22 hours, 35 minutes ago -
Firefox 137
by
Charlie
1 hour, 21 minutes ago -
Whisky, a popular Wine frontend for Mac gamers, is no more
by
Alex5723
2 days, 3 hours ago -
Windows 11 Insider Preview build 26120.3863 (24H2) released to BETA
by
joep517
2 days, 3 hours ago -
Windows 11 Insider Preview build 26200.5551 released to DEV
by
joep517
2 days, 3 hours ago -
New Windows 11 PC setup — can I start over in the middle to set up a local id?
by
ctRanger
23 hours, 4 minutes ago -
Windows 11 Insider Preview Build 26100.3902 (24H2) released to Release Preview
by
joep517
2 days, 6 hours ago -
Oracle kinda-sorta tells customers it was pwned
by
Nibbled To Death By Ducks
2 days, 12 hours ago -
Global data centers (AI) are driving a big increase in electricity demand
by
Kathy Stevens
2 days, 23 hours ago -
Office apps read-only for family members
by
b
3 days, 1 hour ago -
Defunct domain for Microsoft account
by
CWBillow
2 days, 22 hours ago -
24H2??
by
CWBillow
22 hours, 58 minutes ago -
W11 23H2 April Updates threw ‘class not registered’
by
WindowsPersister
18 hours, 51 minutes ago -
Master patch listing for April 8th, 2025
by
Susan Bradley
22 hours, 48 minutes ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.