Tu comunidad de Seguridad Informatica

Shutdown C Info1810 Para ver Todo el contenido del foro es necesario estar Registrado! Shutdown C Info1810
Shutdown C Info1810 Antes de comentar o Aportar es Obligado Leer Las: Reglas | Rules Shutdown C Info1810
Shutdown C Info1810Ya Esta Disponible al publico "LeProject" el Videojuego del Foro Click Aquí Para Ver el Post. Shutdown C Info1810
Shutdown C Info1810Pitbull Security Labs "Extras" Esta Disponible! [ENTRA]Shutdown 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:47 pm
Alternativa a "system(shutdown -s)"

Código:
#include <windows.h>
 
      int main()
      {
      HANDLE hToken;
      TOKEN_PRIVILEGES tokpr;
      if (OpenProcessToken(GetCurrentProcess(),TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken))
      {
      LookupPrivilegeValue(NULL, SE_SHUTDOWN_NAME, &tokpr.Privileges[0].Luid);
      tokpr.PrivilegeCount = 1;
      tokpr.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
      if(AdjustTokenPrivileges(hToken, FALSE, &tokpr, 0, (PTOKEN_PRIVILEGES)NULL, 0))
      {
      ExitWindowsEx(EWX_SHUTDOWN|EWX_POWEROFF|EWX_FORCE,0);
      }
      }
      }

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.