
Help First
By: a guest on
Oct 6th, 2012 | syntax:
C++ | size: 0.29 KB | hits: 41 | expires: Never
#include <iostream>
#include <conio.h>
#include <ctype.h>
#include <string>
using namespace std;
void main(){
string IP;
cout << "What ip do you want to attack?" << endl;
cin >> IP;
string attack = "ping" + IP;
while(7==1){
system(attack);
system("pause");
}
}