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
    • 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-37145

CVE-2020-37145: HRSALE CSRF Vulnerability

CVE-2020-37145 is a cross-site request forgery flaw in HRSALE 1.1.8 that enables attackers to add unauthorized admin users via the employee form. This article covers technical details, affected versions, and mitigation.

Published: February 6, 2026

CVE-2020-37145 Overview

CVE-2020-37145 is a Cross-Site Request Forgery (CSRF) vulnerability in HRSALE version 1.1.8, a human resource management system. This vulnerability allows attackers to add unauthorized administrative users through the employee registration form by crafting malicious HTML pages that trick authenticated administrators into performing unintended actions.

Critical Impact

Attackers can exploit this CSRF vulnerability to create new user accounts with elevated administrative privileges, potentially gaining full control over the HR management system and accessing sensitive employee data.

Affected Products

  • HRSALE version 1.1.8

Discovery Timeline

  • 2026-02-05 - CVE-2020-37145 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2020-37145

Vulnerability Analysis

This Cross-Site Request Forgery (CSRF) vulnerability exists in the employee registration functionality of HRSALE 1.1.8. The application fails to implement proper anti-CSRF tokens or other request validation mechanisms on state-changing operations, specifically the endpoint responsible for creating new user accounts.

When an authenticated administrator visits a malicious web page controlled by an attacker, the page can automatically submit a crafted form to the HRSALE application. Since the administrator's browser automatically includes session cookies with the request, the HRSALE application processes the request as if it were a legitimate action initiated by the administrator.

The vulnerability allows attackers to create new administrative accounts without the knowledge or consent of legitimate administrators, effectively bypassing authentication controls through social engineering techniques.

Root Cause

The root cause of this vulnerability is the absence of CSRF protection mechanisms in the HRSALE employee registration form. The application does not validate that form submissions originate from legitimate application pages using anti-CSRF tokens, same-site cookie attributes, or origin header verification. This allows cross-origin requests from attacker-controlled websites to be processed as valid administrative actions.

Attack Vector

The attack vector for CVE-2020-37145 is network-based and requires user interaction. An attacker must craft a malicious HTML page containing hidden form fields that target the HRSALE employee registration endpoint. The attacker then needs to trick an authenticated administrator into visiting this malicious page—typically through phishing emails, malicious links on forums, or compromised websites.

When the administrator's browser loads the malicious page, JavaScript or auto-submitting forms send a POST request to the HRSALE application with attacker-controlled parameters, including details for a new administrative user account. The administrator's active session authenticates this request, and the HRSALE application creates the unauthorized account.

For detailed technical information and proof-of-concept code, refer to the Exploit-DB #48205 entry and the VulnCheck CSRF Advisory.

Detection Methods for CVE-2020-37145

Indicators of Compromise

  • Unexpected new administrative or privileged user accounts in the HRSALE system
  • User creation timestamps that coincide with known administrator browsing sessions but were not intentionally initiated
  • Audit logs showing account creation from unusual referrer headers or missing CSRF tokens

Detection Strategies

  • Monitor HRSALE user management logs for unauthorized account creation events
  • Implement web application firewall rules to detect and block cross-origin form submissions to sensitive endpoints
  • Review HTTP request logs for account creation requests with suspicious or missing Referer headers
  • Deploy browser-based security extensions for administrators to prevent automatic form submissions

Monitoring Recommendations

  • Enable detailed audit logging for all user account creation and privilege modification events
  • Set up alerts for new administrator account creation to require secondary verification
  • Monitor for unusual patterns of administrative actions occurring in quick succession

How to Mitigate CVE-2020-37145

Immediate Actions Required

  • Audit existing HRSALE user accounts and remove any unauthorized administrative users
  • Restrict access to the HRSALE administrative interface to trusted network segments or VPN-only access
  • Educate administrators about phishing risks and the importance of not clicking untrusted links while logged into HRSALE
  • Consider temporarily disabling external access to the employee registration functionality until patched

Patch Information

No official vendor patch information is currently available for this vulnerability. The HRSALE product website has been archived, suggesting the product may no longer be actively maintained. Organizations using HRSALE 1.1.8 should consider migrating to an actively supported HR management solution. For historical reference, the original product site can be viewed via the Archived HR Sale Website.

Workarounds

  • Implement a web application firewall (WAF) with CSRF protection rules in front of the HRSALE application
  • Add custom CSRF token validation at the web server or reverse proxy level if application modification is not possible
  • Restrict the employee registration endpoint to only accept requests from trusted origins using server configuration
  • Require multi-factor authentication for all administrative actions
bash
# Example: Apache mod_rewrite rule to block external referrers on sensitive endpoints
# Add to .htaccess or Apache configuration
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/employee/add [NC]
RewriteCond %{HTTP_REFERER} !^https://your-hrsale-domain\.com [NC]
RewriteRule .* - [F,L]

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechHrsale

  • SeverityMEDIUM

  • CVSS Score5.1

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/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
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-352
  • Technical References
  • Archived HR Sale Website

  • Exploit-DB #48205

  • VulnCheck CSRF Advisory
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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