supongo que tiene que modificar la parte de la RTL_USER_PROCESS_PARAMETERSPEB de su proceso (ver http://en.wikipedia.org/wiki/Process_Environment_Block por ejemplo y http://undocumented.ntinternals.net/UserMode/Undocumented%20Functions/NT%20Objects/Process/PEB.html). Puede intentar usar NtQueryInformationProcess para obtener PEB. Luego puede modificar ProcessParameters.CommandLine
. Espero que funcione.
ACTUALIZADO: He verificado mi sugerencia. Funciona. El siguiente programa de prueba de demostrar esto:
#include <Windows.h>
#include <Winternl.h> // for PROCESS_BASIC_INFORMATION and ProcessBasicInformation
#include <stdio.h>
#include <tchar.h>
typedef NTSTATUS (NTAPI *PFN_NT_QUERY_INFORMATION_PROCESS) (
IN HANDLE ProcessHandle,
IN PROCESSINFOCLASS ProcessInformationClass,
OUT PVOID ProcessInformation,
IN ULONG ProcessInformationLength,
OUT PULONG ReturnLength OPTIONAL);
int main()
{
HANDLE hProcess = OpenProcess (PROCESS_QUERY_INFORMATION | PROCESS_VM_READ,
FALSE, GetCurrentProcessId());
PROCESS_BASIC_INFORMATION pbi;
ULONG ReturnLength;
PFN_NT_QUERY_INFORMATION_PROCESS pfnNtQueryInformationProcess =
(PFN_NT_QUERY_INFORMATION_PROCESS) GetProcAddress (
GetModuleHandle(TEXT("ntdll.dll")), "NtQueryInformationProcess");
NTSTATUS status = pfnNtQueryInformationProcess (
hProcess, ProcessBasicInformation,
(PVOID)&pbi, sizeof(pbi), &ReturnLength);
// remove full information about my command line
pbi.PebBaseAddress->ProcessParameters->CommandLine.Length = 0;
getchar(); // wait till we can verify the results
return 0;
}
Si empezamos el programa con algunos parámetros veremos
en lugar de los siguientes visto antes
¿Estás intentando hacer MALWARE? Lástima que ya hay algunas respuestas plausibles. –
No, pero es una solución multiproceso que me gustaría que sea lo más segura posible. Uno lanza otro con una clave secreta pasada a través de la línea de comando, solo estoy tratando de eliminarlo una vez que ha sido procesado por la rutina de inicio. –
@Alf: ¿Qué es el malware-y sobre la modificación de la línea de comandos del proceso? Es algo que un programa puede hacer ya que es su propia memoria. Lea http://blogs.msdn.com/b/oldnewthing/archive/2009/02/23/9440784.aspx, por ejemplo. – Joey