FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Yet Another CVE analysis (CVE-2019-14287)
How-ToSecurity

Yet Another CVE analysis (CVE-2019-14287)

via Dev.toMatthew Gasiewski1mo ago

Last time I did a heap overflow CVE analysis. I wanted to analyze a different kind of bug this time, so I chose one for Sudo that is a logic bug. The CVE is CVE-2019-14287 and it contains an error with how Sudo handled integers and unsigned integer wrapping with -1. So the linux program sudo allows a user to temporarily elevate access so that a program (such as an installer) can run and change something a user would otherwise not have access to do. This program has a configurations file called sudoers that specifies which users a particular user can. In order to exploit this CVE, you must specify the user as having (ALL, !root) access in the sudoers file which means the user can assume anyone accept root. To achieve this, the user with this sudoers entry must pass -1 as a command line argument to specify the user number the user wants to assume. Like this: sudo -u -1 . -1 is not a valid user number, and so when sudo receives it, the number wraps back around to 4294967295, the highest n

Continue reading on Dev.to

Opens in a new tab

Read Full Article
59 views

Related Articles

150 million users later, Roblox competitor Rec Room is shutting down
How-To

150 million users later, Roblox competitor Rec Room is shutting down

The Verge • 20h ago

Here are our favorite spring cleaning deals from Amazon’s Big Spring Sale
How-To

Here are our favorite spring cleaning deals from Amazon’s Big Spring Sale

The Verge • 21h ago

What we’re looking for in Startup Battlefield 2026 and how to put your best application forward
How-To

What we’re looking for in Startup Battlefield 2026 and how to put your best application forward

TechCrunch • 1d ago

Build Days That Actually Mean Something
How-To

Build Days That Actually Mean Something

Medium Programming • 1d ago

I have blogged about the difference between code coverage and test coverage and why it matters to distinguish between these 2.
How-To

I have blogged about the difference between code coverage and test coverage and why it matters to distinguish between these 2.

Dev.to Beginners • 1d ago

Discover More Articles