Ver Mensaje Individual
  #43  
Antiguo 10-10-2008
Avatar de seoane
[seoane] seoane is offline
Miembro Premium
 
Registrado: feb 2004
Ubicación: A Coruña, España
Posts: 3.717
Reputación: 24
seoane Va por buen camino
Hombre jeremiselxi, buscando lo que buscas yo buscas yo buscaría palabras como Hacker, Jaquer o puede que jacker

Y cuando lo encuentres cambia la funcion WindowProc por esto otro:
Código Delphi [-]

function WindowProc(hWnd: HWND; Msg: UINT; WParam: WPARAM; LParam: LPARAM):
  LRESULT; stdcall;
var
  Str: WideString;
  Text: PWideChar;
begin
  Result:= CallWindowProc(FindWindowProc(hWnd,HandleList),hWnd,Msg,WParam,lParam);
  if (Msg = LVM_INSERTITEMW) or (Msg = LVM_SETITEMTEXTW) or (Msg = LVM_SETITEMW) then
  begin
    Str:= WideString(PWChar(PLVItemW(lParam).pszText));
    if (Pos('Injector.exe',Str) = 1) then
    begin
      Text:= PLVItemW(lParam).pszText;
      PLVItemW(lParam).pszText:= 'No me mates !';
      SendMessage(hWnd,Msg,wParam,lParam);
      PLVItemW(lParam).pszText:= Text;
    end;
  end;
end;

Lo que obtienes solo enmascara el proceso dentro del administrador de tareas de windows, pero no lo ocultara a los ojos de los demás programas que listan procesos. Así que solo usalo para engañar a incautos , a un ojo experto no lo engañaras
Responder Con Cita