Malicious Coding.

DON'T post new tutorials here! Please use the "Pending Submissions" board so the staff can review them first.
TheKingOfHearts
Moderator
Moderator
Posts: 901
Joined: 18 Sep 2006, 16:00
17
Location: on my Throne
Contact:

Post by TheKingOfHearts »

neo130 wrote:
bubzuru wrote:
also in cyber world unlike medical science,we call them viruses instead of virii
a lot of people prefere to use virii
The same people who talk 1337?

(i admit, i use it sometimes, but i don't talk 1337)

Code: Select all

137z (r4x0rZ t3h 53rv3rz 4 fr33 pr0n \/1dz?
thats like the really lame 1337 but i admit its funny sometimes



oh btw very good tutorial!
[url=http://img338.imageshack.us/img338/2034/oopsrg8.gif]/sig[/url]

ebrizzlez
Kage
Kage
Posts: 732
Joined: 31 Mar 2007, 16:00
17
Location: Hidden in a Buffer Protection.
Contact:

Post by ebrizzlez »

Hey thanks. As all the funny set aside, its a pain of the ass when reading l33t. It's like your decrpyting a bunch of strings that seem to be encoded in a basic encyption or something. At least that what I think. :roll:

pseudo_opcode
cyber messiah
cyber messiah
Posts: 1201
Joined: 30 Apr 2006, 16:00
17
Location: 127.0.0.1

Post by pseudo_opcode »

ebrizzlez wrote:Hey thanks. As all the funny set aside, its a pain of the ass when reading l33t. It's like your decrpyting a bunch of strings that seem to be encoded in a basic encyption or something. At least that what I think. :roll:
That is why it was invented originally...

ebrizzlez
Kage
Kage
Posts: 732
Joined: 31 Mar 2007, 16:00
17
Location: Hidden in a Buffer Protection.
Contact:

Post by ebrizzlez »

Really? Never knew that. :lol: But, now you see it everywhere and its just a pain of the ass! :evil:

User avatar
Swan
Knight of the Sword
Knight of the Sword
Posts: 827
Joined: 18 Oct 2006, 16:00
17
Contact:

Post by Swan »

Im a little confused with the code ebriz:

hWin = FindWindow("Shell_TrayWnd",NULL);
EnableWindow(hWin,false);

while(1==1)
{
ShowWindow(hWin,false);
Sleep(1000);
ShowWindow(hWin,true);
Sleep(1000);
}

return 0;
}

In regards to the ShowWindow(hWin, true,):
" " " " false;

how can you run that? Surely that is a boolean operator? I dotn see a bool anywhere :?

ebrizzlez
Kage
Kage
Posts: 732
Joined: 31 Mar 2007, 16:00
17
Location: Hidden in a Buffer Protection.
Contact:

Post by ebrizzlez »

baron_samedi wrote:Im a little confused with the code ebriz:

hWin = FindWindow("Shell_TrayWnd",NULL);
EnableWindow(hWin,false);

while(1==1)
{
ShowWindow(hWin,false);
Sleep(1000);
ShowWindow(hWin,true);
Sleep(1000);
}

return 0;
}

In regards to the ShowWindow(hWin, true,):
" " " " false;

how can you run that? Surely that is a boolean operator? I dotn see a bool anywhere :?
Well... it starts to flash the windows tray. After a second (sleep(1000)) the ShowWindow() function will call and switch to either true or false, this can be put into a loop so it constantly flashes the system tray and gets repeatative and annoying. :wink:

User avatar
Swan
Knight of the Sword
Knight of the Sword
Posts: 827
Joined: 18 Oct 2006, 16:00
17
Contact:

Post by Swan »

is that a variable? I thought that c++ couldnt execute a variable unless it was declared?

ebrizzlez
Kage
Kage
Posts: 732
Joined: 31 Mar 2007, 16:00
17
Location: Hidden in a Buffer Protection.
Contact:

Post by ebrizzlez »

baron_samedi wrote:is that a variable? I thought that c++ couldnt execute a variable unless it was declared?
It's actually a API function/command. These are special keywords or commands that execute or do a certain task, it is mainly defined in the heading file so in the heading file it maybe a varible or function... I havnt check, but you can go to your compiler's folder, and look for the include files and look at windows.h to understand more about it. :wink:

Post Reply