The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2020-37083

CVE-2020-37083: PHP AddressBook SQLi Vulnerability

CVE-2020-37083 is a time-based blind SQL injection flaw in PHP AddressBook 9.0.0.1 that enables attackers to extract database information via the id parameter. This article covers technical details, impact, and mitigation.

Published: February 6, 2026

CVE-2020-37083 Overview

PHP AddressBook 9.0.0.1 contains a time-based blind SQL injection vulnerability that allows remote attackers to manipulate database queries through the id parameter. Attackers can inject crafted SQL statements with time delays to extract information by observing response times in the photo.php endpoint. This vulnerability falls under CWE-89 (Improper Neutralization of Special Elements used in an SQL Command).

Critical Impact

Remote attackers can exploit this SQL injection vulnerability to extract sensitive database information, potentially including user credentials, contact details, and other confidential data stored in the PHP AddressBook application without authentication.

Affected Products

  • PHP AddressBook version 9.0.0.1

Discovery Timeline

  • 2026-02-03 - CVE CVE-2020-37083 published to NVD
  • 2026-02-04 - Last updated in NVD database

Technical Details for CVE-2020-37083

Vulnerability Analysis

This vulnerability exists in the photo.php endpoint of PHP AddressBook 9.0.0.1, where user-supplied input to the id parameter is not properly sanitized before being incorporated into SQL queries. The time-based blind SQL injection technique allows attackers to infer information from the database by observing whether time delays occur in the server's response.

Unlike error-based or union-based SQL injection, time-based blind injection does not rely on visible error messages or direct data output. Instead, attackers craft payloads that cause the database to pause execution for a specified duration when certain conditions are true, allowing them to extract data one character at a time by measuring response times.

Root Cause

The root cause of this vulnerability is the lack of proper input validation and sanitization of the id parameter in the photo.php script. The application directly incorporates user input into SQL queries without using parameterized queries or prepared statements, allowing malicious SQL code to be injected and executed by the database server.

Attack Vector

The vulnerability is exploitable over the network without requiring authentication. An attacker can send specially crafted HTTP requests to the photo.php endpoint with malicious SQL payloads in the id parameter. By injecting time-delay functions such as SLEEP() (MySQL) or WAITFOR DELAY (SQL Server), the attacker can determine whether specific conditions are true based on whether the server response is delayed.

For example, an attacker could construct payloads that cause delays only when a specific character in a database value matches their guess. By iterating through characters and measuring response times, they can systematically extract usernames, passwords, and other sensitive data from the database.

Technical details and proof-of-concept information are available in the Exploit-DB #48416 advisory and the VulnCheck SQL Injection Advisory.

Detection Methods for CVE-2020-37083

Indicators of Compromise

  • Unusual HTTP requests to photo.php containing SQL syntax in the id parameter
  • Requests with time-delay SQL functions such as SLEEP(), BENCHMARK(), or WAITFOR DELAY
  • Multiple sequential requests to the same endpoint with incrementally modified parameters
  • Abnormally long response times for requests to photo.php

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block SQL injection patterns in request parameters
  • Monitor application logs for requests containing SQL keywords like SELECT, UNION, SLEEP, BENCHMARK, or WAITFOR
  • Enable database query logging and alert on suspicious query patterns or syntax errors
  • Deploy intrusion detection systems (IDS) with signatures for SQL injection attempts

Monitoring Recommendations

  • Set up alerts for requests to photo.php with unusually long processing times
  • Monitor for high-volume requests from single IP addresses targeting the vulnerable endpoint
  • Review web server access logs for patterns indicative of automated SQL injection tools
  • Implement response time anomaly detection to identify time-based injection attempts

How to Mitigate CVE-2020-37083

Immediate Actions Required

  • Restrict access to the photo.php endpoint through firewall rules or web server configuration
  • Implement input validation to reject requests with suspicious characters in the id parameter
  • Consider disabling the PHP AddressBook application until a patched version is available
  • Review database access logs for evidence of prior exploitation attempts

Patch Information

No official patch information is currently available from the vendor. Users should monitor the SourceForge Project Page for security updates. Consider implementing the workarounds below until an official fix is released.

Workarounds

  • Apply strict input validation to ensure the id parameter only accepts numeric values
  • Implement parameterized queries or prepared statements in the photo.php script to prevent SQL injection
  • Deploy a Web Application Firewall (WAF) with SQL injection protection enabled
  • Restrict network access to the application to trusted IP addresses only
  • Consider migrating to a more actively maintained address book solution
bash
# Apache configuration to restrict access to photo.php
<Location /photo.php>
    Order deny,allow
    Deny from all
    Allow from 192.168.1.0/24
</Location>

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechPhp Addressbook

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-89
  • Technical References
  • SourceForge Project Page

  • Exploit-DB #48416

  • VulnCheck SQL Injection Advisory
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43331: Linux Kernel DOS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English