Menú

Mostrar Mensajes

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.

Mostrar Mensajes Menú

Mensajes - byebye

#181
CitarThe WriteProcessMemory function writes memory in a specified process. The entire area to be written to must be accessible, or the operation fails.

BOOL WriteProcessMemory(

    HANDLE hProcess,   // handle to process whose memory is written to 
    LPVOID lpBaseAddress,   // address to start writing to
    LPVOID lpBuffer,   // pointer to buffer to write data to
    DWORD nSize,   // number of bytes to write
    LPDWORD lpNumberOfBytesWritten    // actual number of bytes written
   );   


Parameters

hProcess

Identifies an open handle to a process whose memory is to be written to. The handle must have PROCESS_VM_WRITE and PROCESS_VM_OPERATION access to the process.

lpBaseAddress

Points to the base address in the specified process to be written to. Before any data transfer occurs, the system verifies that all data in the base address and memory of the specified size is accessible for write access. If this is the case, the function proceeds; otherwise, the function fails.

lpBuffer

Points to the buffer that supplies data to be written into the address space of the specified process.

nSize

Specifies the requested number of bytes to write into the specified process.

lpNumberOfBytesWritten

Points to the actual number of bytes transferred into the specified process. This parameter is optional. If lpNumberOfBytesWritten is NULL, the parameter is ignored.



Return Values

If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError. The function will fail if the requested write operation crosses into an area of the process that is inaccessible.

Remarks

WriteProcessMemory copies the data from the specified buffer in the current process to the address range of the specified process. Any process that has a handle with PROCESS_VM_WRITE and PROCESS_VM_OPERATION access to the process to be written to can call the function. The process whose address space is being written to is typically, but not necessarily, being debugged.
The entire area to be written to must be accessible. If it is not, the function fails as noted previously.

existe la documentacion.
#182
vamos que quieres hacer un trainer. writeprocessmemory.
#183
Citar¿hay alguna manera de saber qué comunica al SO cuando clicko uno de esos botones?

windows se comunica con mensajes WM_*, deberias mirar estas constantes. despues si quieres interceptar estos mensajes en una aplicacion que no es tuya tendras que injectar una dll y subclasificar las ventanas.
#184
hombre si tu ves ese mensaje, es pq el cd hace un chequeo de algun modo y eso es lo que tienes que encontrar.
#185
si.
#186
usa un listview
#187
aqui

ahi tienes los enlaces y la info que necesitas.
#188
Citarpero me vale con una dvb-T?

logicamente no.

Citarno ay que orientar la antena o algo? o no ace falta

eso tu lo sabras, yo no se como esta tu antena.
#189
si se puede, recibiras los que esten en abierto. ahora mismo las cosas estan negras y no hay nada para encender la luz ;).
#190
Ingeniería Inversa / Re: borrado de PE header
16 Enero 2008, 13:26 PM
100% que hace eso que dices, logicamente un PE no puede funcionar sin cabecera.


y para CCA, enterate mejor que es lo que necesitas hacer pq en otro post se entendia que lo querias hacer sobre un proceso, pero ese programa lo hace sobre un archivo.