-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExport-FileServerPermissions.ps1
More file actions
432 lines (358 loc) · 15.9 KB
/
Export-FileServerPermissions.ps1
File metadata and controls
432 lines (358 loc) · 15.9 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
<#
.SYNOPSIS
Enumerates file server shares and NTFS permissions, outputting Cypher code for graph database import.
.DESCRIPTION
Connects to a file server, enumerates shares, and documents share-level and NTFS permissions.
Outputs Cypher code to create nodes and relationships for Server, Share, User, and Group entities.
.PARAMETER ServerName
The name of the file server to enumerate.
.PARAMETER OutputFile
The path to the output file for Cypher code. Defaults to .\FileServerPermissions.cypher
.EXAMPLE
.\Export-FileServerPermissions.ps1 -ServerName FS01 -OutputFile C:\temp\permissions.cypher
#>
[CmdletBinding()]
param(
[Parameter(Mandatory=$true)]
[string]$ServerName,
[Parameter(Mandatory=$false)]
[string]$OutputFile = ".\FileServerPermissions_$($ServerName)_$(Get-Date -Format 'yyyyMMdd_HHmmss').cypher"
)
# Get credentials
$cred = Get-Credential -Message "Enter credentials to access $ServerName"
# Initialize output file
if (Test-Path $OutputFile) {
Remove-Item $OutputFile -Force
}
# Function to write Cypher code with retry logic
function Write-CypherCode {
param([string]$cypher)
$maxRetries = 5
$retryCount = 0
$success = $false
while (-not $success -and $retryCount -lt $maxRetries) {
try {
Add-Content -Path $OutputFile -Value $cypher -Encoding UTF8 -ErrorAction Stop
Add-Content -Path $OutputFile -Value "" -Encoding UTF8 -ErrorAction Stop
$success = $true
}
catch {
$retryCount++
if ($retryCount -lt $maxRetries) {
Start-Sleep -Milliseconds (100 * $retryCount) # Exponential backoff
}
else {
Write-Host " ERROR: Failed to write to file after $maxRetries attempts: $($_.Exception.Message)" -ForegroundColor Red
throw
}
}
}
}
# Function to extract domain\username or just username
function Get-AccountInfo {
param([string]$identityReference)
if ($identityReference -match '^(.+?)\\(.+)$') {
return @{
Domain = $Matches[1]
SamAccountName = $Matches[2]
FullName = $identityReference
}
} else {
return @{
Domain = ""
SamAccountName = $identityReference
FullName = $identityReference
}
}
}
# Function to determine if account is a group or user
function Get-AccountType {
param([string]$samAccountName, [string]$domain)
try {
if ($domain -and $domain -ne "BUILTIN" -and $domain -ne "NT AUTHORITY") {
$searcher = [adsisearcher]"(samAccountName=$samAccountName)"
$result = $searcher.FindOne()
if ($result) {
$objectClass = $result.Properties["objectclass"]
if ($objectClass -contains "group") {
return "Group"
} elseif ($objectClass -contains "user") {
return "User"
}
}
}
} catch {
# If AD lookup fails, make educated guess
}
# Default assumptions for built-in accounts
if ($samAccountName -match "group|users|admins|administrators") {
return "Group"
}
return "User" # Default to User
}
Write-Host "`n=== File Server Permission Enumeration ===" -ForegroundColor Cyan
Write-Host "Server: $ServerName" -ForegroundColor Yellow
Write-Host "Output: $OutputFile`n" -ForegroundColor Yellow
# If output file is in OneDrive, warn user
if ($OutputFile -match "OneDrive") {
Write-Host "WARNING: Output file is in OneDrive folder. Consider using a local path to avoid file locking issues." -ForegroundColor Yellow
Write-Host "Press Enter to continue or Ctrl+C to cancel..." -ForegroundColor Yellow
Read-Host
}
# Create Server node
Write-Host "[1/4] Creating Server node..." -ForegroundColor Green
$serverCypher = @"
// ============================================
// CREATE SERVER NODE
// ============================================
MERGE (server:Server {name: "$ServerName"})
ON CREATE SET server.created = datetime()
ON MATCH SET server.lastScanned = datetime();
"@
Write-CypherCode -cypher $serverCypher
# Get shares using WMI with credentials
Write-Host "[2/4] Enumerating shares..." -ForegroundColor Green
try {
$shares = Get-WmiObject -Class Win32_Share -ComputerName $ServerName -Credential $cred |
Where-Object { $_.Type -eq 0 -and $_.Name -notmatch '\$$' }
Write-Host " Found $($shares.Count) shares" -ForegroundColor Gray
} catch {
Write-Host " ERROR: Failed to enumerate shares - $($_.Exception.Message)" -ForegroundColor Red
exit 1
}
# Create CIM session for share permissions
Write-Host " Creating CIM session..." -ForegroundColor Gray
try {
$cimSession = New-CimSession -ComputerName $ServerName -Credential $cred
} catch {
Write-Host " ERROR: Failed to create CIM session - $($_.Exception.Message)" -ForegroundColor Red
exit 1
}
$shareCount = 0
$totalShares = $shares.Count
# Process each share
Write-Host "[3/4] Processing share permissions..." -ForegroundColor Green
foreach ($share in $shares) {
$shareCount++
$shareName = $share.Name
$sharePath = $share.Path
$uncPath = "\\$ServerName\$shareName"
Write-Host " [$shareCount/$totalShares] Processing share: $shareName" -ForegroundColor Gray
# Escape for Cypher - do it RIGHT HERE inline
$safeShareName = $shareName.Replace('\', '\\').Replace('"', '\"')
$safeSharePath = $sharePath.Replace('\', '\\').Replace('"', '\"')
$safeUncPath = $uncPath.Replace('\', '\\').Replace('"', '\"')
# Create Share node and link to Server
$shareCypher = @"
// ============================================
// SHARE: $shareName
// ============================================
MERGE (share:Share {name: "$safeShareName", server: "$ServerName"})
ON CREATE SET
share.path = "$safeSharePath",
share.uncPath = "$safeUncPath",
share.created = datetime()
ON MATCH SET share.lastScanned = datetime();
MATCH (server:Server {name: "$ServerName"})
MATCH (share:Share {name: "$safeShareName", server: "$ServerName"})
MERGE (server)-[:HOSTS]->(share);
"@
Write-CypherCode -cypher $shareCypher
# Get share-level permissions using CIM
try {
$shareAccess = Get-SmbShareAccess -Name $shareName -CimSession $cimSession -ErrorAction Stop
foreach ($perm in $shareAccess) {
$accountName = $perm.AccountName
$accountInfo = Get-AccountInfo -identityReference $accountName
$accountType = Get-AccountType -samAccountName $accountInfo.SamAccountName -domain $accountInfo.Domain
$permissionString = $perm.AccessRight.ToString()
$accessType = $perm.AccessControlType.ToString()
# Escape inline
$safeSamAccountName = $accountInfo.SamAccountName.Replace('\', '\\').Replace('"', '\"')
$safeDomain = $accountInfo.Domain.Replace('\', '\\').Replace('"', '\"')
$safeFullName = $accountInfo.FullName.Replace('\', '\\').Replace('"', '\"')
# Create User/Group node and relationship
$principalCypher = @"
// Share Permission: $accountName -> $shareName
MERGE (principal:$accountType {samAccountName: "$safeSamAccountName"})
ON CREATE SET
principal.domain = "$safeDomain",
principal.fullName = "$safeFullName",
principal.created = datetime();
MATCH (principal:$accountType {samAccountName: "$safeSamAccountName"})
MATCH (share:Share {name: "$safeShareName", server: "$ServerName"})
MERGE (principal)-[r:HAS_SHARE_ACCESS]->(share)
ON CREATE SET
r.permissions = "$permissionString",
r.accessType = "$accessType",
r.discovered = datetime()
ON MATCH SET
r.permissions = "$permissionString",
r.accessType = "$accessType",
r.lastSeen = datetime();
"@
Write-CypherCode -cypher $principalCypher
}
} catch {
Write-Host " WARNING: Could not retrieve share permissions for $shareName - $($_.Exception.Message)" -ForegroundColor Yellow
}
}
# Process NTFS permissions for top-level folders
Write-Host "[4/4] Processing NTFS permissions for top-level folders..." -ForegroundColor Green
$folderCount = 0
foreach ($share in $shares) {
$shareName = $share.Name
$uncPath = "\\$ServerName\$shareName"
$sharePath = $share.Path
Write-Host " Processing share: $shareName" -ForegroundColor Gray
try {
# Remote script that extracts all ACL info before returning
$remoteScript = {
param($sharePath, $shareName)
# Create a result object that we'll always return
$result = [PSCustomObject]@{
Success = $false
ShareError = $null
Folders = @()
}
try {
# Check if path exists
if (-not (Test-Path -Path $sharePath)) {
$result.ShareError = "Path does not exist: $sharePath"
return $result
}
# Try to get folders
$topFolders = Get-ChildItem -Path $sharePath -Directory -ErrorAction Stop
if (-not $topFolders) {
$result.Success = $true
$result.ShareError = "No folders found in share"
return $result
}
foreach ($folder in $topFolders) {
$folderInfo = [PSCustomObject]@{
Name = $folder.Name
FullName = $folder.FullName
Permissions = @()
Error = $null
}
try {
$acl = Get-Acl -Path $folder.FullName -ErrorAction Stop
# Extract all ACL information into serializable format
foreach ($access in $acl.Access) {
$permissionInfo = [PSCustomObject]@{
IdentityReference = $access.IdentityReference.Value
FileSystemRights = $access.FileSystemRights.ToString()
AccessControlType = $access.AccessControlType.ToString()
IsInherited = $access.IsInherited
InheritanceFlags = $access.InheritanceFlags.ToString()
PropagationFlags = $access.PropagationFlags.ToString()
}
$folderInfo.Permissions += $permissionInfo
}
} catch {
$folderInfo.Error = $_.Exception.Message
}
$result.Folders += $folderInfo
}
$result.Success = $true
} catch {
$result.ShareError = $_.Exception.Message
}
return $result
}
$remoteResult = Invoke-Command -ComputerName $ServerName -Credential $cred -ScriptBlock $remoteScript -ArgumentList $sharePath, $shareName -ErrorAction Stop
# Check the result structure
if (-not $remoteResult) {
Write-Host " WARNING: No result returned from remote command for share $shareName" -ForegroundColor Yellow
continue
}
if ($remoteResult.ShareError) {
Write-Host " INFO: $($remoteResult.ShareError)" -ForegroundColor Gray
continue
}
if (-not $remoteResult.Success) {
Write-Host " WARNING: Remote command failed for share $shareName" -ForegroundColor Yellow
continue
}
$remoteFolders = $remoteResult.Folders
if (-not $remoteFolders -or $remoteFolders.Count -eq 0) {
continue
}
Write-Host " Found $($remoteFolders.Count) folders" -ForegroundColor Gray
foreach ($folderInfo in $remoteFolders) {
$folderCount++
$folderName = $folderInfo.Name
$folderFullPath = "$uncPath\$folderName"
# Escape inline
$safeFolderName = $folderName.Replace('\', '\\').Replace('"', '\"')
$safeFolderPath = $folderFullPath.Replace('\', '\\').Replace('"', '\"')
$safeShareName = $shareName.Replace('\', '\\').Replace('"', '\"')
# Create Folder node
$folderCypher = @"
// ============================================
// FOLDER: $folderName in share $shareName
// ============================================
MERGE (folder:Folder {path: "$safeFolderPath"})
ON CREATE SET
folder.name = "$safeFolderName",
folder.share = "$safeShareName",
folder.server = "$ServerName",
folder.created = datetime()
ON MATCH SET folder.lastScanned = datetime();
MATCH (share:Share {name: "$safeShareName", server: "$ServerName"})
MATCH (folder:Folder {path: "$safeFolderPath"})
MERGE (share)-[:CONTAINS]->(folder);
"@
Write-CypherCode -cypher $folderCypher
# Process NTFS permissions
if ($folderInfo.Permissions -and $folderInfo.Permissions.Count -gt 0) {
foreach ($permission in $folderInfo.Permissions) {
$accountInfo = Get-AccountInfo -identityReference $permission.IdentityReference
$accountType = Get-AccountType -samAccountName $accountInfo.SamAccountName -domain $accountInfo.Domain
$rights = $permission.FileSystemRights
$accessType = $permission.AccessControlType
$isInherited = $permission.IsInherited
# Escape inline
$safeSamAccountName = $accountInfo.SamAccountName.Replace('\', '\\').Replace('"', '\"')
$safeDomain = $accountInfo.Domain.Replace('\', '\\').Replace('"', '\"')
$safeFullName = $accountInfo.FullName.Replace('\', '\\').Replace('"', '\"')
$safeRights = $rights.Replace('\', '\\').Replace('"', '\"')
# Create User/Group node and relationship
$ntfsCypher = @"
// NTFS Permission: $($accountInfo.FullName) -> $folderName
MERGE (principal:$accountType {samAccountName: "$safeSamAccountName"})
ON CREATE SET
principal.domain = "$safeDomain",
principal.fullName = "$safeFullName",
principal.created = datetime();
MATCH (principal:$accountType {samAccountName: "$safeSamAccountName"})
MATCH (folder:Folder {path: "$safeFolderPath"})
MERGE (principal)-[r:HAS_NTFS_ACCESS]->(folder)
ON CREATE SET
r.permissions = "$safeRights",
r.accessType = "$accessType",
r.isInherited = $($isInherited.ToString().ToLower()),
r.discovered = datetime()
ON MATCH SET
r.permissions = "$safeRights",
r.accessType = "$accessType",
r.isInherited = $($isInherited.ToString().ToLower()),
r.lastSeen = datetime();
"@
Write-CypherCode -cypher $ntfsCypher
}
}
}
} catch {
Write-Host " WARNING: Could not process share $shareName - $($_.Exception.Message)" -ForegroundColor Yellow
}
}
# Clean up CIM session
Remove-CimSession -CimSession $cimSession
Write-Host "`n=== Enumeration Complete ===" -ForegroundColor Cyan
Write-Host "Processed:" -ForegroundColor Yellow
Write-Host " - 1 Server" -ForegroundColor Gray
Write-Host " - $totalShares Shares" -ForegroundColor Gray
Write-Host " - $folderCount Top-level Folders" -ForegroundColor Gray
Write-Host "`nCypher output saved to: $OutputFile" -ForegroundColor Green
Write-Host "`nYou can now import this file into your graph database.`n" -ForegroundColor Cyan