APPZXOR
Hello and welcome to APPZXOR,

We would appreciate if you register so you can enjoy
the full benefits of browsing, viewing and using our forum.
Here are some features:

• Create threads;
• Reply to threads;
• View links & images;
• Leave positive or negative feedback to a member.

What are you waiting for? Go ahead and register!
It's free, quick and easy!
APPZXOR
Hello and welcome to APPZXOR,

We would appreciate if you register so you can enjoy
the full benefits of browsing, viewing and using our forum.
Here are some features:

• Create threads;
• Reply to threads;
• View links & images;
• Leave positive or negative feedback to a member.

What are you waiting for? Go ahead and register!
It's free, quick and easy!
APPZXOR
Would you like to react to this message? Create an account in a few clicks or log in to continue.


Where Applications Become AppZ. Join Us Now!
 
HomePortalSearchLatest imagesRegisterLog in
Search
 
 

Display results as :
 
Rechercher Advanced Search
Latest topics
» See you next decade.
c++ Worm Code Icon_minitimeby LarsValraz Fri Sep 09, 2022 4:43 pm

» Clean Up On Database
c++ Worm Code Icon_minitimeby Vex338 Mon Jul 06, 2020 2:59 pm

» Guess who's back!
c++ Worm Code Icon_minitimeby Vex338 Thu Feb 01, 2018 12:16 pm

» [COC] Clash of Clans
c++ Worm Code Icon_minitimeby D'ShadowZRay Thu Jan 28, 2016 12:10 am

» iam new
c++ Worm Code Icon_minitimeby D'ShadowZRay Thu Jan 28, 2016 12:06 am

» I need some help
c++ Worm Code Icon_minitimeby akumasan_01 Fri May 01, 2015 1:25 pm

» HELLO GUYS! :))
c++ Worm Code Icon_minitimeby Appz-RhastaSix Fri Sep 19, 2014 9:14 am

» Visual C# Programming Basics
c++ Worm Code Icon_minitimeby Appz-RhastaSix Wed Sep 10, 2014 9:03 am

» Old Game!
c++ Worm Code Icon_minitimeby iRegen Tue May 13, 2014 12:28 am


Top posters
[Detheroc_93]
c++ Worm Code I_vote_lcapc++ Worm Code I_voting_barc++ Worm Code I_vote_rcap 
MrStar
c++ Worm Code I_vote_lcapc++ Worm Code I_voting_barc++ Worm Code I_vote_rcap 
kurosakinaruto
c++ Worm Code I_vote_lcapc++ Worm Code I_voting_barc++ Worm Code I_vote_rcap 
GreyPhantom
c++ Worm Code I_vote_lcapc++ Worm Code I_voting_barc++ Worm Code I_vote_rcap 
ShadowSonic
c++ Worm Code I_vote_lcapc++ Worm Code I_voting_barc++ Worm Code I_vote_rcap 
Appzwesley29
c++ Worm Code I_vote_lcapc++ Worm Code I_voting_barc++ Worm Code I_vote_rcap 
z_f
c++ Worm Code I_vote_lcapc++ Worm Code I_voting_barc++ Worm Code I_vote_rcap 
MasterGandeo
c++ Worm Code I_vote_lcapc++ Worm Code I_voting_barc++ Worm Code I_vote_rcap 
Vex338
c++ Worm Code I_vote_lcapc++ Worm Code I_voting_barc++ Worm Code I_vote_rcap 
wafumon
c++ Worm Code I_vote_lcapc++ Worm Code I_voting_barc++ Worm Code I_vote_rcap 

Share | 
 

 c++ Worm Code

View previous topic View next topic Go down 
AuthorMessage
markhi03
Addicted Member

markhi03

Posts : 51
Join date : 2012-07-28

c++ Worm Code Empty
PostSubject: c++ Worm Code   c++ Worm Code Icon_minitimeFri Sep 07, 2012 3:34 am

include <iostream.h>
#include <sys/socket.h>
#include <netdb.h>
#include <sys/types.h>
#include <unistd.h>

void usage(char *argv);

int main(int argc, char *argv[]) {
/* GETOPT
- Variable: char * optarg
- This variable is set by getopt to point at the value of the option argument, for those options that accept arguments.

- Function: int getopt (int argc, char **argv, const char *options)
- The options argument is a string that specifies the option characters that are valid for this program. An option character in this string can be followed by a colon (`:') to indicate that it takes a required argument. If an option character is followed by two colons (`::'), its argument is optional; this is a GNU extension.
*/

char *ircServerName = NULL;
char *ircNickName = NULL;
char *ircPortNumber = NULL;
char *ircChannelName = NULL;

/* get all the parameters */
int startingCommandLineOptions;
while((startingCommandLineOptions = getopt(argc, argv, "n:c:s:p:")) != EOF) {
switch(startingCommandLineOptions) {
case 'n':
ircNickName = strdup(optarg);
break;
case 'p':
ircPortNumber = strdup(optarg);
break;
case 's':
ircServerName = strdup(optarg);
break;
case 'c':
ircChannelName = strdup(optarg);
/*if(*ircChannelName != '#' && *ircChannelName != '&') {
printf("\nError: The channel name should start with a #\n");
exit(1);
}*/
break;
default:
usage(argv[0]);
break;
}
}

/* check if we filled all the required arguments */
if(!ircServerName) {
printf("Error: You need to specify a server.\n");
exit(1);
}
if(!ircNickName) {
printf("Error: You need to specify a nickname.\n");
exit(1);
}
if(!ircPortNumber) {
printf("Error: You need to specify a port number.\n");
exit(1);
}
if(!ircChannelName) {
printf("Error: You need to specify a channel name.\n");
exit(1);
}

/* INFORMATION ABOUT GETADDRINFO() FUNCTION
- The getaddrinfo() function is defined for protocol-independent nodename-to-
Back to top Go down
gmciel
Super Member

gmciel

Posts : 150
Join date : 2012-04-09
Age : 27
Location : *No Permanent Address(NPA)*

c++ Worm Code Empty
PostSubject: Re: c++ Worm Code   c++ Worm Code Icon_minitimeSat Sep 08, 2012 5:14 pm

Very Happy
Back to top Go down
http://[GM]-Ciel.cm
gmciel
Super Member

gmciel

Posts : 150
Join date : 2012-04-09
Age : 27
Location : *No Permanent Address(NPA)*

c++ Worm Code Empty
PostSubject: r. Shaiya PH Hack   c++ Worm Code Icon_minitimeSat Sep 08, 2012 5:15 pm

help please...././
Back to top Go down
http://[GM]-Ciel.cm
renzten
Super Member

avatar

Posts : 123
Join date : 2011-08-11
Location : before my pc

c++ Worm Code Empty
PostSubject: Re: c++ Worm Code   c++ Worm Code Icon_minitimeMon Sep 10, 2012 12:46 pm

What kind of project will i use?
Back to top Go down
isuug12
Newbie

isuug12

Posts : 2
Join date : 2012-11-10

c++ Worm Code Empty
PostSubject: Re: c++ Worm Code   c++ Worm Code Icon_minitimeSat Nov 10, 2012 3:32 pm

HELP AS SIR! HOW TO BY PASS GAME GUARD IN SHAIYA PH.OR WE NEED CRACK CHEATS
Back to top Go down
Appz-DarkAvatar
Super Member

Appz-DarkAvatar

Posts : 181
Join date : 2011-04-13
Age : 25
Location : In your Brain

c++ Worm Code Empty
PostSubject: Re: c++ Worm Code   c++ Worm Code Icon_minitimeSun Nov 11, 2012 4:28 am

what is this please tell the information to me??? i dont understand
Back to top Go down
Sponsored content





c++ Worm Code Empty
PostSubject: Re: c++ Worm Code   c++ Worm Code Icon_minitime

Back to top Go down
 

c++ Worm Code

View previous topic View next topic Back to top 

 Similar topics

-
» [Suggestions] FIX FORUM + ADD "code" Thread
» Basic Keylogger Source Code
» Source code service by starcraft0333
» [C++] DFI PSF (Wallhack, XQZ, Crosshair) [Source code] by starcraft0333
» Anybody got Activation Code for Kaspersky Antivirus 2012?
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
APPZXOR :: Discussions :: Coding & Programming-
Free forum | ©phpBB | Free forum support | Report an abuse | Forumotion.com