-
Notifications
You must be signed in to change notification settings - Fork 9
/
RunUserSimulation.ps1
454 lines (290 loc) · 14.3 KB
/
RunUserSimulation.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
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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
#just in case it was launched from the wrong folder, as the present working directory
# NEEDS to be the one containing the script (because of relative-path dot sourcing other modules)
$script_path = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent
cd $script_path
#generate logs
$ErrorActionPreference="SilentlyContinue"
Stop-Transcript | out-null
$ErrorActionPreference = "Continue"
$LogName = Get-Date -Format "yyyy-MM-dd-----HH-mm-ss"
$global:global_Log = ".\Logs\" + $LogName + ".txt"
Start-Transcript -path $global_Log -append -IncludeInvocationHeader
# Start the actual script
#import config and tools, and modules
Try{. .\Config.ps1 -ErrorAction Stop}
Catch {
Write-Host Config File could not ne loaded. Looks like you removed the config file, left it open, or that you made a error when ediditng it.
Write-Host This program will exit in one minute
Start-Sleep -s 60
Break
}
Try{. .\Modules\Tools.ps1 -ErrorAction Stop}
Catch {
Write-Host One or more module could not be loaded.
Write-Host This program will exit in one minute
Start-Sleep -s 60
Break
}
function simulate-user
{
<#
.SYNOPSIS
This function simulate user behavior on the local windows systems. Author: Michael Bleuez. All rights belong to RHEA GROUP
.PARAMETER Unactivity
Performs selected actions each "Unactivity" seconds (default 2s); a higher unactivity will generate less traffic & user activity. Must be a positive integer
.PARAMETER actiontimeout
Set timeout in seconds for each action to be perfomed so the script does not hang (default 60s).
.PARAMETER duration
How long the whole programm should run (in minutes). 0 means no limit
.PARAMETER All
Equivalent to all parameters below
.PARAMETER IE
Turn on Internet Explorer (random) navigation
.PARAMETER MapShare
Turn on network shares mapping
.NOTES
Some of the powershell cmdlets require powershell version 3+
#>
[CmdletBinding()]
Param(
[Parameter(Mandatory=$False)]
[bool]$IE,
[Parameter(Mandatory=$False)]
[bool]$MapShare,
[Parameter(Mandatory=$False)]
[bool]$Typing,
[Parameter(Mandatory=$False)]
[bool]$schedule,
[Parameter(Mandatory=$False)]
[int]$Unactivity = 2,
[Parameter(Mandatory=$False)]
[int]$actiontimeout = 60,
[Parameter(Mandatory=$False)]
[int]$duration = 0
)
$pc = "all"
$list_computer = ,$pc
$IEhash = @{}
$Maphash = @{}
$Typehash = @{}
$IEhash.Add($pc, $IE)
$Maphash.Add($pc, $MapShare)
$Typehash.Add($pc, $Typing)
"Start of operations"
$round_counter = 0
$startDate = Get-Date
$lastactiontimestamp = [int]((Get-Date -UFormat "%R").Split(":")[0]) * 60 + [int]((Get-Date -UFormat "%R").Split(":")[1])#time of the day but in minutes
$line_number = 1
$displayheader = $true
while (($duration -eq 0) -or ($startDate.AddMinutes($duration) -gt (Get-Date))) {
Start-Sleep -s $Unactivity #sleep for unactivity time
log_header $round_counter $displayheader
$round_counter += $displayheader #only increase count if we displayed the previous header
$displayheader = $false #set to false to only display non-empty round headers
if ($schedule) {$IEhash, $Maphash, $Typehash, $line_number, $lastactiontimestamp = update-schedule -IEhash $IEhash -Maphash $Maphash -Typehash $Typehash -line_number $line_number -lastactiontimestamp $lastactiontimestamp -PClist $list_computer}
########################################################################place new features under this
<#if (<$switchhash>[$pc]){
$job = Start-Job -Name <name> -ArgumentList $pwd -FilePath Modules\name.ps1"
Get-Job | Wait-Job -Timeout $actiontimeout | Receive-Job
#failsafe so no stray windows/process
$temp = (Get-Job -Name <name> -ErrorAction SilentlyContinue| Stop-Job)
"----------------------------------------------------------"
$displayheader = $true
Start-Sleep -s $Unactivity
}#> #template
if ($IEhash[$pc]){
$job = Start-Job -Name EIsimu -ArgumentList $pwd -FilePath .\Modules\IE.ps1
Get-Job | Wait-Job -Timeout $actiontimeout | Receive-Job
#failsafe so no stray windows/process
$temp = (Get-Job -Name EIsimu -ErrorAction SilentlyContinue| Stop-Job)
$temp = (Get-Process iexplore -ErrorAction SilentlyContinue | Stop-Process)
$temp = (Get-Process ielowutil -ErrorAction SilentlyContinue | Stop-Process)
"----------------------------------------------------------"
$displayheader = $true
Start-Sleep -s $Unactivity
} #generate IE activity
if ($Maphash[$pc]){
$job = Start-Job -Name MapShare -ArgumentList $pwd -FilePath .\Modules\MapShare.ps1
Get-Job | Wait-Job -Timeout $actiontimeout | Receive-Job
#failsafe so no stray windows/process
(Get-Job MapSharesimu -ErrorAction SilentlyContinue | Stop-Job) |Out-Null
"-------------------------------------------------------------------------------"
$displayheader = $true
Start-Sleep -s $Unactivity
} #generate shares map activity
if ($Typehash[$pc]){
$job = Start-Job -Name Typekey -ArgumentList $pwd -FilePath "Modules\Type.ps1"
Get-Job | Wait-Job -Timeout $actiontimeout | Receive-Job
#failsafe so no stray windows/process
$temp = (Get-Job -Name Typekey -ErrorAction SilentlyContinue| Stop-Job)
"----------------------------------------------------------"
$displayheader = $true
Start-Sleep -s $Unactivity
}#generate key strokes activity
#######################################################################place new features above this
}#end of while
#stop the transcript
Stop-Transcript
if ($global_email){
sendlogmail -Path $global_Log -SmtpServer $PSEmailServer -ToAddress $email_address
}
"This is the end of the user simulation"
"Script will exit in one minute"
Start-Sleep -s 60
}
function simulate-user-server
{
<#
.SYNOPSIS
This function simulate user behavior on multiple (networked) windows systems. Author: Michael Bleuez. All rights belong to RHEA GROUP
See simulate-user for the common parameters.
.PARAMETER autodetect
If the computer is to detect automatically the PCs on the same network. Not reliable
.PARAMETER PClist
In case autodetect is disabled, provide a list of the PCs of the network to send tasks to.
.NOTES
Some of the powershell cmdlets require powershell version 3+
#>
[CmdletBinding()]
Param(
[Parameter(Mandatory=$False)]
[bool]$IE,
[Parameter(Mandatory=$False)]
[bool]$MapShare,
[Parameter(Mandatory=$False)]
[bool]$Typing,
[Parameter(Mandatory=$False)]
[bool]$schedule,
[Parameter(Mandatory=$False)]
[int]$Unactivity = 2,
[Parameter(Mandatory=$False)]
[int]$actiontimeout = 60,
[Parameter(Mandatory=$False)]
[int]$duration = 0,
[Parameter(Mandatory=$False)]
[bool]$autodetect = $true,
[Parameter(Mandatory=$False)]
[array]$PClist
)
Use-RunAs
"Running as administrator"
if ($autodetect){
$list_computer_dirty = net view
$list_computer = @()
ForEach ($line in $list_computer_dirty){
if ($line.StartsWith("\\")){
$list_computer += $line.substring(2) -replace '(^\s+|\s+$)','' -replace '\s+',' '
}
}
"Detected Computers:"
$list_computer
"Start of operations"
}
else {
$list_computer = $PClist
"Computers on the network:"
$list_computer
"Start of operations"
}
$IEhash = @{}
$Maphash = @{}
$Typehash = @{}
foreach ($pc in $list_computer){
$IEhash.Add($pc, $IE)
$Maphash.Add($pc, $MapShare)
$Typehash.Add($pc, $Typing)
}
$round_counter = 0
$startDate = Get-Date
$lastactiontimestamp = [int]((Get-Date -UFormat "%R").Split(":")[0]) * 60 + [int]((Get-Date -UFormat "%R").Split(":")[1]) #time of the day but in minutes
$line_number = 1
$displayheader = $true
while (($duration -eq 0) -or ($startDate.AddMinutes($duration) -gt (Get-Date))) {
Start-Sleep -s $Unactivity
log_header $round_counter $displayheader
$round_counter += $displayheader #only increase count if we displayed the previous header
if ($schedule) {$IEhash, $Maphash, $Typehash, $line_number, $lastactiontimestamp = update-schedule -IEhash $IEhash -Maphash $Maphash -Typehash $Typehash -line_number $line_number -lastactiontimestamp $lastactiontimestamp -PClist $list_computer}
########################################################################place new features under this
if ($true){
"#####IE activity####"
Try {
foreach ($pc in $list_computer){
if ($IEhash[$pc]){
$job = Invoke-Command -ComputerName $pc -ArgumentList $pwd -FilePath .\Modules\IE.ps1 -AsJob -JobName $pc -ErrorAction Stop
}
}
#wait for all to complete or timeout
Get-Job | Wait-Job -Timeout $actiontimeout | Receive-Job
#failsafe
"Exiting activity"
foreach ($pc in $list_computer){
if ($IEhash[$pc]){
(Get-Job IEsimu -ErrorAction SilentlyContinue | Stop-Job) |Out-Null -ErrorAction Stop
$temp = Invoke-Command -ComputerName $pc -ScriptBlock {Get-Process iexplore -ErrorAction SilentlyContinue | Stop-Process} -ErrorAction Stop
$temp = Invoke-Command -ComputerName $pc -ScriptBlock {Get-Process ielowutil -ErrorAction SilentlyContinue | Stop-Process} -ErrorAction Stop
}
}
"----------------------------------------------------------"
}
Catch {"Failed to send command to remote PC"}
} #generate IE activity
Start-Sleep -s $Unactivity
if ($true){
"#####Map Shares activity#####"
Try {
foreach ($pc in $list_computer){
if ($Maphash[$pc]){
$job = Invoke-Command -ComputerName $pc -ArgumentList $pwd -FilePath .\Modules\MapShare.ps1 -AsJob -JobName MapShares -ErrorAction Stop
}
}
#wait for all to complete or timeout
Get-Job | Wait-Job -Timeout $actiontimeout | Receive-Job
#failsafe so no stray windows/process
"Exiting activity"
foreach ($pc in $list_computer){
if ($Maphash[$pc]){$temp = Invoke-Command -ComputerName $pc -ScriptBlock {(Get-Job MapShares -ErrorAction SilentlyContinue | Stop-Job) |Out-Null} -ErrorAction Stop}
}
"----------------------------------------------------------"
}
catch {"Failed to send command to remote PC"}
} #generate shares map activity
Start-Sleep -s $Unactivity
if ($true){
"#####Typing activity#####"
Try {
foreach ($pc in $list_computer){
if ($Typehash[$pc]){
$job = Invoke-Command -ComputerName $pc -ArgumentList $pwd -FilePath .\Modules\Type.ps1 -AsJob -JobName Type -ErrorAction Stop
}
}
#wait for all to complete or timeout
Get-Job | Wait-Job -Timeout $actiontimeout | Receive-Job
#failsafe so no stray windows/process
"Exiting activity"
foreach ($pc in $list_computer){
if ($Typehash[$pc]){$temp = Invoke-Command -ComputerName $pc -ScriptBlock {(Get-Job Type -ErrorAction SilentlyContinue | Stop-Job) |Out-Null} -ErrorAction Stop}
}
"----------------------------------------------------------"
}
catch {"Failed to send command to remote PC"}
} #generate shares map activity
#######################################################################place new features above this
}#end of while
}
#Launch the correct script
if (!$global_standalone){
"If you see an empty log, or few logs starting at about the same time, only the most recent will be significant";"The formers are 'orphan' logs stopped when the script was relaunched with admin rights (after the UAC prompt)"
"Running in multisession mode"
simulate-user-server -IE $global_IE -MapShare $global_MapShare -Typing $global_type -schedule $global_schedule -Unactivity $global_unactivity -actiontimeout $global_actiontimeout -duration $global_duration -autodetect $global_autodetect -PClist $global_listPCs
}
else {
"Running on the local session only"
simulate-user -IE $global_IE -MapShare $global_MapShare -Typing $global_type -schedule $global_schedule -Unactivity $global_unactivity -actiontimeout $global_actiontimeout -duration $global_duration
}
"This is the end of the user simulation"
"Script will exit in one minute"
Start-Sleep -s 60
#stop the transcrit if it was not stopped before
$ErrorActionPreference="SilentlyContinue"
Stop-Transcript | out-null
$ErrorActionPreference = "Continue"