Trustwave Unveils New Offerings to Maximize Value of Microsoft Security Investments. Learn More

Trustwave Unveils New Offerings to Maximize Value of Microsoft Security Investments. Learn More

Services
Capture
Managed Detection & Response

Eliminate active threats with 24/7 threat detection, investigation, and response.

twi-managed-portal-color
Co-Managed SOC (SIEM)

Maximize your SIEM investment, stop alert fatigue, and enhance your team with hybrid security operations support.

twi-briefcase-color-svg
Advisory & Diagnostics

Advance your cybersecurity program and get expert guidance where you need it most.

tw-laptop-data
Penetration Testing

Test your physical locations and IT infrastructure to shore up weaknesses before exploitation.

twi-database-color-svg
Database Security

Prevent unauthorized access and exceed compliance requirements.

twi-email-color-svg
Email Security

Stop email threats others miss and secure your organization against the #1 ransomware attack vector.

tw-officer
Digital Forensics & Incident Response

Prepare for the inevitable with 24/7 global breach response in-region and available on-site.

tw-network
Firewall & Technology Management

Mitigate risk of a cyberattack with 24/7 incident and health monitoring and the latest threat intelligence.

Solutions
BY TOPIC
Offensive Security
Solutions to maximize your security ROI
Microsoft Exchange Server Attacks
Stay protected against emerging threats
Rapidly Secure New Environments
Security for rapid response situations
Securing the Cloud
Safely navigate and stay protected
Securing the IoT Landscape
Test, monitor and secure network objects
Why Trustwave
About Us
Awards and Accolades
Trustwave SpiderLabs Team
Trustwave Fusion Security Operations Platform
Trustwave Security Colony
Partners
Technology Alliance Partners
Key alliances who align and support our ecosystem of security offerings
Trustwave PartnerOne Program
Join forces with Trustwave to protect against the most advance cybersecurity threats
SpiderLabs Blog

Interesting Authentication Bypass Vulnerabilities

Recently I've been writing a talk called "Authentication Bypass Zoo: Pwnage and Poetry 2" which will attempt to discuss various reasons that applications may be subject to authentication bypasses to provide a deeper understanding about what kind of mistakes can lead to authorization bypass. It will also include limericks written about the subject matter, as a sort of sequel to the original "Windows File Pseudonyms: Pwnage and Poetry."

I realize this makes me a bit of an infosec nerd, but I get excited about interesting vulnerabilities and I thought I would recount some of the interesting authorization bypass vulnerabilities of the past and explain how they work.

Windows is silly sometimes

Windows does some strange things with file paths which aren't terribly well documented, which was the discussion of my first Pwnage and Poetry presentation. A related vulnerability is CVE-2010-2263 which points out that adding an Alternate Data Steam (ADS) marker pointing to $DATA to the end of a URI requested from old versions of nginx on Windows will throw off nginx's file extension handling and cause the source of applications to be disclosed.

Why? nginx uses regexes to determine how files should be handled, based on their extension. If a file is named "config.php" it is likely to be set up to be processed by PHP since the file ends with ".php". If it is called as "config.php::$DATA", which simply specifies in ADS notation that the data in the file is to be returned, the path does not end in ".php" and thus is served raw.

Many Web servers have struggled with such path canonicalization issues. For instance, on systems with case insensitive filesystems (Windows, Mac OS X by default), changing the case of file extensions will cause many old versions of Web servers (and likely some current versions of Web servers) to serve the file raw.

To tie this back into the topic, authentication may be required for certain directories or files, which is not the case if you can break the comparison using this trick or some other.

Old froot, new froot, red froot, blue froot

In 1994 there was a vulnerability in several distributions of UNIX out at the time, including AIX and IRIX. The vulnerability was one of shell command injection. When using rlogin to connect remotely to a host, you could specify the -f switch as part of your username, which resulted in the username being interpreted as a command line switch and value. Essentially, it meant that when rlogind called login to perform authentication, it was given a "-f" switch, which instructs it to skip authentication and log in the user specified.

As such, one could gain remote root with rlogin -l "-froot" <system>!

These days, the -f command specifically does NOT work for the root user, but when the same vulnerability appeared in Solaris' telnetd 13 years later, one could still login as any user besides root. If a name could be guessed or enumerated, one could then view the passwd file and gain privileges to any account, one of which might be root-equivalent.

You can't handle the true

Speaking of gaining privileges to any account for which you know the name, one of the most fascinating bugs I've ever seen was an authentication bypass flaw in phpBB v2.0.12. Prior to v3.x.x, the login cookies included an "autologinid" cookie for the "remember me" functionality. Essentially, this was a serialized version of a few variables, including the userid and hashed password. Without getting into the problems that having a hashed password in cookies brings, there was another issue.

There was a code block which compared the deserialized user-supplied value to the actual string of the hex digits of the MD5 hash like so:

if($uservalue == $md5string){

unicorns_and_rainbows();

} else {

pestilence_and_starvation();

}

So, what's the big deal, you ask? Well, the serialized format looks a bit like this for a md5 hash string:

s:32:"96948aad3fcae80c08a35c9b5958cd89"

The s means that the variable is a string, the 32 is the length (32 bytes) and the rest is the value itself. If we replace this with b:true (meaning a boolean value of "true") something funny happens.

You see, "==" is the equality operator, while "===" is the strict equality operator. The difference is that the equality operator will convert variables to allow comparison, whereas the strict equality operator will fail. Essentially, when we provide an autologin cookie which includes "b:true", the code struct converts the string down to boolean (any non-null non-zero string becomes "true") and compares true to true, making the code block a bit more like the following:

if($md5value){

kitties_and_sparkles();

} else {

the_ear_scene_from_reservoir_dogs();

}

In the end, dear friends

Authentication bypass flaws are numerous and varied. Moreover, they are often extraordinarily difficult to detect with automated techniques or prevent with WAF or IDS solutions, unless they are already known. Manual testing and code review are the best ways to catch and prevent these flaws.

Latest SpiderLabs Blogs

Clockwork Blue: Automating Security Defenses with SOAR and AI

It’s impractical to operate security operations alone, using manual human processes. Finding opportunities to automate SecOps is an underlying foundation of Zero Trust and an essential architecture...

Read More

Professional Services Sector Under Attack - Trustwave SpiderLabs Report 2024

Recent research by Trustwave SpiderLabs, detailed in their newly published report "2024 Professional Services Threat Landscape: Trustwave Threat Intelligence Briefing and Mitigation Strategies,"...

Read More

Atlas Oil: The Consequences of a Ransomware Attack

Overview Atlas Oil, a major player in the oil and fuel distribution industry, fell victim to a ransomware attack orchestrated by the Black Basta group. This attack not only compromised sensitive...

Read More