Skip to content

pwndizzle/com-research

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A collection of random bits of COM related POC code.

  • com-enum.ps1

    • A script to recursively enumerate exposed COM methods.
  • clsids.txt

  • shellex.cpp + VS Project

    • Example code to show how to interact with COM methods using IDispatch in C++. I've included the full Visual Stuido project for easier import/testing.
  • checkreg.cs

    • Some C# code to enumerate files in temp locations and HKCU that are referenced by COM registry entries.

Examples

Method enumeration using Powershell:

$Obj = [System.Activator]::CreateInstance([Type]::GetTypeFromProgID("Excel.Application"));$Obj | gm

$Obj = [System.Activator]::CreateInstance([Type]::GetTypeFromCLSID("00020812-0000-0000-C000-000000000046"));$Obj | gm

Using Powershell to execute ShellExecute method:

([System.Activator]::CreateInstance([Type]::GetTypeFromCLSID("C08AFD90-F2A1-11D1-8455-00A0C91F3880"))).Document.Application.ShellExecute("cmd","/c notepad")

Using VBScript to execute ShellExecute method:

Sub test()
Set obj = GetObject("new:C08AFD90-F2A1-11D1-8455-00A0C91F3880")
obj.Document.Application.ShellExecute "cmd", "/c calc", "", Null, 0
End Sub

About

Research into COM

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published