forked from masters274/pfSense_API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pfSense_API.psm1
1466 lines (1095 loc) · 42.3 KB
/
pfSense_API.psm1
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<#
.Synopsis
pfSense management functions built for pfSense version 2.x
.DESCRIPTION
Haven't been able to find another API, or command line management for pfSense
.NOTES
It runs on Linux guys.... there shouldn't be a need for these functions...
.COMPONENT
Security, Networking, Firewall
.FUNCTIONALITY
pfSense task automation and scriptability
#>
#region Prerequisites
# All modules require the core
<#
Great news! The core module is now installed automatically when installed from PSGallery
#>
#endregion
#================================================= MEAT! =========================================================#
#region Connection functions
Function Connect-pfSense
{
<#
.DESCRIPTION
Authenticates to a pfSense server and returns the session variable
#>
[CmdLetBinding()]
Param
(
[Parameter(
Mandatory=$true,
Position=0,
HelpMessage='Hostname of pfSesense server'
)]
[Alias('HostName')]
[String] $Server,
[Parameter(
Mandatory=$true,
Position=1,
HelpMessage='Credentials for administering pfSense'
)]
[PSCredential] $Credential,
[Switch] $NoTLS, # Not recommended
[Switch] $IgnoreCertificateErrors
)
Begin
{
# Debugging for scripts
$Script:boolDebug = $PSBoundParameters.Debug.IsPresent
# Is -Force set?
# TODO: use to avoid asking if we should ignore self-signed web certs
$Script:boolForce = $PSBoundParameters.Force.IsPresent
# pfSense requires TLS1.2 This is not an available security protocol in Invoke-WebRequest by default
# TODO: use available function (Set-WebSecurityProtocol)
If ([Net.ServicePointManager]::SecurityProtocol -notmatch 'TLS12' -and -not $NoTLS)
{
[Net.ServicePointManager]::SecurityProtocol += [Net.SecurityProtocolType]::TLS12
}
<#
.NOTE: might be a good idea to add this to your $profile. Default is SSLv3 for Posh web commands!!!
# Security protocols for web calls. removes SSL3 and TLS1.0
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::TLS11
[Net.ServicePointManager]::SecurityProtocol += [Net.SecurityProtocolType]::TLS12
...Just a suggestion
#>
# TODO: use available function (Set-WebCertificatePolicy)
# Warn the user user that security will be degraded, and ask if they would like to proceed.
# Check if they have the proper version of core use the function to Set-WebCertificatePolicy
# Require that core be updated
# Add a note on how to revert the security policy back to the original, without restarting PowerShell
If ($IgnoreCertificateErrors)
{
Try
{
Add-Type -TypeDefinition @'
using System.Net;
using System.Security.Cryptography.X509Certificates;
public class InSecureWebPolicy : ICertificatePolicy
{
public bool CheckValidationResult(ServicePoint sPoint, X509Certificate cert,WebRequest wRequest, int certProb)
{
return true;
}
}
'@
}
Catch
{}
$pol = [System.Net.ServicePointManager]::CertificatePolicy
[System.Net.ServicePointManager]::CertificatePolicy = New-Object -TypeName InSecureWebPolicy
<#
.NOTE: There is a timeout value to using this option. At the end of this function the
policy is returned to its original configuration. PowerShell takes a little time, almost
like cache, to recognize the reversion. Therefore this option is only good for fast
scripting, and not for coding on the command line.
It is recommended that you import the cert into your trusted certificates store
#>
}
}
Process
{
# Variables
$uri = 'https://{0}/index.php' -f $Server
$pfWebSession = $null
$retObject = @()
$dictOptions = @{
host=$Server
NoTLS=$([bool] $NoTLS)
}
If ($NoTLS) # highway to tha Danger Zone!!!
{
$uri = $uri -Replace "^https:",'http:'
Invoke-DebugIt -Console -Message '[WARNING]' -Value 'Insecure option selected (no TLS)' -Color 'Yellow'
}
Invoke-DebugIt -Console -Message '[INFO]' -Value $uri.ToString()
$request = iwr -Uri $uri
$webCredential = @{login='Login'
usernamefld=$Credential.GetNetworkCredential().UserName
passwordfld=$Credential.GetNetworkCredential().Password
__csrf_magic=$($request.InputFields[0].Value)
}
Invoke-WebRequest -Uri $uri -Body $webCredential -Method Post -SessionVariable pfWebSession | Out-Null
$retObject += $pfWebSession
$retObject += $dictOptions
$retObject
}
End
{
[System.Net.ServicePointManager]::CertificatePolicy = $pol
}
}
#endregion
#region User functions
Function Add-pfSenseUser
{
<#
.Synopsis
Adds a new user via pfSense user management page
.DESCRIPTION
Great for automating the turn up of new remote users
.EXAMPLE
$Creds = Get-Credential
$pfs = Connect-pfSense -Server firewall.local -Credential $Creds
Add-pfSenseUser -Session $pfs -Server firewall.local -UserName 'player1' -Password 'MySecretPassword' -FullName 'Player One'
Creates a user account on the pfSense firewall named "firewall.local"
.NOTES
For the certificate, you'll need to get the CA's reference ID. This is located in the page source
code of either the CA itself, or on the Add User Management Page. This can be found by visiting one of
these pages, right-click and select view page source, the perfrom a search for caref.
I'll write something to get this later... an example of this: 4813b1f414fec
<div>
<select class="form-control" name="caref" id="caref">
<option value="4813b1f414fec">pfSenseCertificateAuthority</option>
</div>
#>
[CmdLetBinding()]
[CmdletBinding(DefaultParameterSetName='NoCert')]
Param
(
[Parameter(Mandatory=$true, Position=0,
HelpMessage='Valid/active websession to server'
)] [PSObject] $Session,
[Parameter(Mandatory=$true, Position=1,
HelpMessage='User name'
)] [String] $UserName,
[Parameter(Mandatory=$true, Position=2,
HelpMessage='Password for the user'
)] [Alias('Password')]
[String] $UserPass,
[Parameter(Mandatory=$true, Position=3,
HelpMessage='Display name for the user'
)] [String] $FullName,
[Parameter(ParameterSetName='Certificate')]
[Switch] $Certificate,
[Parameter(Mandatory=$false,ParameterSetName="NoCert")]
[Parameter(Mandatory=$true,ParameterSetName="Certificate",
HelpMessage='Name of the CA'
)] [String] $CA,
[Int] $KeyLength = 2048,
[Int] $LifeTime = 3650,
[Switch] $Quiet # No output upon completion
)
Begin
{
# Debugging for scripts
$Script:boolDebug = $PSBoundParameters.Debug.IsPresent
$Password = $UserPass
}
Process
{
# Variables
$Server = $Session.host
[bool] $NoTLS = $Session.NoTLS
[Microsoft.PowerShell.Commands.WebRequestSession] $webSession = $Session[0]
$uri = 'https://{0}/system_usermanager.php' -f $Server
If ($NoTLS) # highway to tha Danger Zone!!!
{
$uri = $uri -Replace "^https:",'http:'
Invoke-DebugIt -Console -Message '[WARNING]' -Value 'Insecure option selected (no TLS)' -Color 'Yellow'
}
Invoke-DebugIt -Console -Message '[INFO]' -Value $uri.ToString()
# pfSense requires a lot of magic.... ++ foreach POST
$request = Invoke-WebRequest -Uri $uri -Method Get -WebSession $webSession
$dictPostData = @{
__csrf_magic=$($request.InputFields[0].Value)
usernamefld=$UserName
passwordfld1=$Password
passwordfld2=$Password
descr=$FullName
utype='user'
save='Save'
# Needed for version >= 2.4.4
dashboardcolumns=2
webguicss='pfSense.css'
} # Change the utype to 'system' to create a protected system user
$dictCertData = @{ # Extra form fields when requesting a certificate for the user
showcert='yes'
name="$($UserName)_cert"
caref=$CA
keylen=$KeyLength
lifetime=$LifeTime
}
If ($Certificate) # Should we request a cert from the CA?
{
$dictPostData += $dictCertData
}
# submit/post the form to the server
$uri += '?act=new'
Invoke-DebugIt -Console -Message '[INFO]' -Value ('Post URI: {0}' -f $uri)
Try
{
$rawRet = Invoke-WebRequest -Uri $uri -Method Post -Body $dictPostData -WebSession $webSession -EA Stop |
Out-Null
If ($rawRet.StatusCode -eq 200 -and -not $Quiet)
{
Invoke-DebugIt -Console -Message 'Success' -Force -Color 'Green' `
-Value ('User: {0}, created successfully!' -f $FullName)
}
}
Catch
{
Write-Error -Message 'Something went wrong submitting the form'
}
}
End
{
}
}
Function Get-pfSenseUser
{
[CmdLetBinding()]
Param
(
[Parameter(Mandatory=$true, Position=0,
HelpMessage='Valid/active websession to server'
)] [PSObject] $Session,
[AllowNull()]
[Parameter(Position=1)]
[String] $UserName,
[Switch] $CertInfo,
[Switch] $Detail
)
Begin
{
# Debugging for scripts
$Script:boolDebug = $PSBoundParameters.Debug.IsPresent
Function Script:Where-Deleteable
{
param
(
[Object]
[Parameter(Mandatory=$true, ValueFromPipeline=$true, HelpMessage="Data to filter")]
$InputObject
)
process
{
if ($InputObject.title -match 'Delete user')
{
$InputObject
}
}
}
}
Process
{
# Variables
$objUsers = @()
$objUsersDetail = @()
#--------------------------------------------------------------------------------------#
$Server = $Session.host
[bool] $NoTLS = $Session.NoTLS
[Microsoft.PowerShell.Commands.WebRequestSession] $webSession = $Session[0]
$uri = 'https://{0}/system_usermanager.php' -f $Server
If ($NoTLS) # highway to tha Danger Zone!!!
{
$uri = $uri -Replace "^https:",'http:'
Invoke-DebugIt -Console -Message '[WARNING]' -Value 'Insecure option selected (no TLS)' -Color 'Yellow'
}
Invoke-DebugIt -Console -Message '[INFO]' -Value $uri.ToString()
# pfSense requires a lot of magic.... ++ foreach POST
$request = Invoke-WebRequest -Uri $uri -Method Get -WebSession $webSession
# Get a list of deletable users.
$users = $request.Links | Where-Deleteable # Note: can't delete yourself
# Build an array with usernames and IDs, which can be deleted by the current user.
Foreach ($user in $users)
{
$uname = $user.href.Split(';').Replace('&','').Trim() -match 'username'
$uid = $user.href.Split(';').Replace('&','').Trim() -match 'userid'
$objBuilder = New-Object -TypeName PSObject
$objBuilder | Add-Member -MemberType NoteProperty -Name 'Username' -Value $($uname.Split('=')[1])
$objBuilder | Add-Member -MemberType NoteProperty -Name 'UserID' -Value $($uid.Split('=')[1])
If ($CertInfo)
{
$userEditUri = $uri + ('?act=edit&userid={0}' -f $($uid.Split('=')[1]))
$userReq = Invoke-WebRequest -Uri $userEditUri -WebSession $webSession -Method Get
$cert = $userReq.ParsedHtml.frames.document.body.outerHTML.Split("`n") |
Where-Object {$_ -match "Remove this certificate association"}
If ($cert)
{
#$certName = ''
$boolCert = $true
}
Else
{
#$certName = $null
$boolCert = $false
}
$objBuilder | Add-Member -MemberType NoteProperty -Name 'Cert' -Value $boolCert
#$objBuilder | Add-Member -MemberType NoteProperty -Name 'CertName' -Value $certName
}
$objUsers += $objBuilder
}
If ($Detail)
{
$tempFile = $env:TEMP + '\' + [guid]::NewGuid().guid + '.xml'
[xml] $xmlFile = Backup-pfSenseConfig -Session $Session -OutputXML
Foreach ($user in $xmlFile.pfsense.system.user)
{
# Cert info if exists
$objCert = $xmlFile.pfsense.cert | ? {$_.refid -eq $user.cert}
$objCA = $xmlFile.pfsense.ca | ? {$_.refid -eq $objCert.caref}
$uid = $objUsers | ? {$_.username -eq $user.name} | %{$_.userid}
$objCrl = $xmlFile.pfsense.crl | ? {$_.caref -eq $objCA.refid}
$objBuilder = New-Object -TypeName PSObject
$objBuilder |
Add-Member -MemberType NoteProperty -Name 'Username' -Value $user.name
$objBuilder |
Add-Member -MemberType NoteProperty -Name 'System_UID' -Value $user.uid
$objBuilder |
Add-Member -MemberType NoteProperty -Name 'UserID' -Value $uid
$objBuilder |
Add-Member -MemberType NoteProperty -Name 'FullName' -Value $user.descr.'#cdata-section'
$objBuilder |
Add-Member -MemberType NoteProperty -Name 'Expiration' -Value $user.expires
$objBuilder |
Add-Member -MemberType NoteProperty -Name 'User_Type' -Value $user.scope
$objBuilder |
Add-Member -MemberType NoteProperty -Name 'Cert' -Value $objCert.descr.'#cdata-section'
$objBuilder |
Add-Member -MemberType NoteProperty -Name 'Cert_ID' -Value $user.cert
$objBuilder |
Add-Member -MemberType NoteProperty -Name 'CA' -Value $objCA.descr.'#cdata-section'
$objBuilder |
Add-Member -MemberType NoteProperty -Name 'CA_ID' -Value $objCA.refid
$objBuilder |
Add-Member -MemberType NoteProperty -Name 'CRL' -Value $objCrl.descr.'#cdata-section'
$objBuilder |
Add-Member -MemberType NoteProperty -Name 'CRL_ID' -Value $objCrl.refid
$objUsersDetail += $objBuilder
}
If ($UserName)
{
Try
{
$objUsersDetail | Where-Object {$_.Username -eq $UserName}
}
Catch
{
Write-Host -ForegroundColor Red "Username $UserName not found"
$objUsersDetail
}
}
Else
{
$objUsersDetail
}
}
Else
{
If ($UserName)
{
Try
{
$objUsers | Where-Object {$_.Username -eq $UserName}
}
Catch
{
Write-Host -ForegroundColor Red "Username $UserName not found"
$objUsers
}
}
Else
{
$objUsers
}
}
}
End
{
Remove-Variable -Name xmlFile -Force -ErrorAction SilentlyContinue -WarningAction SilentlyContinue
[GC]::Collect()
}
}
Function Remove-pfSenseUser
{
[CmdLetBinding()]
Param
(
[Parameter(Mandatory=$true, Position=0,
HelpMessage='Valid/active websession to server'
)] [PSObject] $Session,
[Parameter(Mandatory=$true, Position=1,
HelpMessage='User name'
)] [String] $UserName,
[Switch] $RevokeCert,
[Switch] $Quiet
)
Begin
{
# Debugging for scripts
$Script:boolDebug = $PSBoundParameters.Debug.IsPresent
}
Process
{
# Variables
$Server = $Session.host
[bool] $NoTLS = $Session.NoTLS
[Microsoft.PowerShell.Commands.WebRequestSession] $webSession = $Session[0]
$uri = 'https://{0}/system_usermanager.php' -f $Server
If ($NoTLS) # highway to tha Danger Zone!!!
{
$uri = $uri -Replace "^https:",'http:'
Invoke-DebugIt -Console -Message '[WARNING]' -Value 'Insecure option selected (no TLS)' -Color 'Yellow'
}
Invoke-DebugIt -Console -Message '[INFO]' -Value $uri.ToString()
# pfSense requires a lot of magic.... ++ foreach POST
$request = Invoke-WebRequest -Uri $uri -Method Get -WebSession $webSession
# Get a list of deletable users.
$objUser = Get-pfSenseUser -Session $Session -Detail -UserName $UserName
# Get the ID of the username to be deleted.
Try
{
[bool] (!($objUser.UserID -eq $null))
Invoke-DebugIt -Console -Message '[INFO]' -Value ('User ID found: {0}' -f $objUser.UserID)
}
Catch
{
Write-Error -Message `
'Failed to get the user ID for the username provided. Check the username, and try again'
return
}
If ($RevokeCert)
{
Revoke-pfSenseUserCert -Session $Session -UserName $UserName -Reason 'Cessation of Operation'
}
# Dictionary submitted as body in our POST request
$dictPostData = @{
__csrf_magic=$($request.InputFields[0].Value)
'delete_check[]'=$($objUser.UserID)
'dellall'='dellall'
}
Try
{
$rawRet = Invoke-WebRequest -Uri $uri -Method Post -Body $dictPostData -WebSession $webSession -EA Stop |
Out-Null
If ($rawRet.StatusCode -eq 200 -and -not $Quiet)
{
Invoke-DebugIt -Console -Message 'Success' -Force -Color 'Green' `
-Value ('User: {0}, deleted successfully!' -f $UserName)
}
}
Catch
{
Write-Error -Message 'Something went wrong submitting the form'
}
}
End
{
}
}
Function Export-pfSenseUserCert
{
[CmdLetBinding()]
Param
(
[Parameter(Mandatory=$true, Position=0,
HelpMessage='Valid/active websession to server'
)] [PSObject] $Session,
[Parameter(Mandatory=$true, Position=1,
HelpMessage='User name'
)] [String] $UserName,
[Parameter(Position=2)]
[ValidateSet('Cert','Key','P12')]
[String] $CertAction = 'Cert',
[Parameter(Position=3)]
[ValidateScript({
try {
$Folder = Get-Item $($_ |Split-Path -Parent) -ErrorAction Stop
} catch [System.Management.Automation.ItemNotFoundException] {
Throw [System.Management.Automation.ItemNotFoundException] "${_} Maybe there are network issues?"
}
if ($Folder.PSIsContainer) {
$True
} else {
Throw [System.Management.Automation.ValidationMetadataException] "The path '${_}' is not a container."
}
})]
[String] $FilePath
)
Begin
{
# Debugging for scripts
$Script:boolDebug = $PSBoundParameters.Debug.IsPresent
Function Script:Extract-WebTable
{ # code from Lee Holmes
# http://www.leeholmes.com/blog/2015/01/05/extracting-tables-from-powershells-invoke-webrequest/
Param
(
[Parameter(Mandatory = $true)]
[Microsoft.PowerShell.Commands.HtmlWebResponseObject] $WebRequest,
[Parameter(Mandatory = $true)]
[int] $TableNumber
)
## Extract the tables out of the web request
$tables = @($WebRequest.ParsedHtml.getElementsByTagName("TABLE"))
$table = $tables[$TableNumber]
$titles = @()
$rows = @($table.Rows)
## Go through all of the rows in the table
Foreach ($row in $rows)
{
$cells = @($row.Cells)
## If we've found a table header, remember its titles
If ($cells[0].tagName -eq "TH")
{
$titles = @($cells | ForEach-Object { ("" + $_.InnerText).Trim() })
continue
}
## If we haven't found any table headers, make up names "P1", "P2", etc.
If (-not $titles)
{
$titles = @(1..($cells.Count + 2) | ForEach-Object { "P$_" })
}
## Now go through the cells in the the row. For each, try to find the
## title that represents that column and create a hashtable mapping those
## titles to content
$resultObject = [Ordered] @{}
For ($intCounter = 0; $intCounter -lt $cells.Count; $intCounter++)
{
$title = $titles[$intCounter]
If (-not $title) { continue }
$resultObject[$title] = ("" + $cells[$intCounter].InnerText).Trim()
}
## And finally cast that hashtable to a PSCustomObject
[PSCustomObject] $resultObject
}
}
}
Process
{
# Variables
$Server = $Session.host
[bool] $NoTLS = $Session.NoTLS
[Microsoft.PowerShell.Commands.WebRequestSession] $webSession = $Session[0]
$uri = 'https://{0}/system_certmanager.php' -f $Server
If ($NoTLS) # highway to tha Danger Zone!!!
{
$uri = $uri -Replace "^https:",'http:'
Invoke-DebugIt -Console -Message '[WARNING]' -Value 'Insecure option selected (no TLS)' -Color 'Yellow'
}
Invoke-DebugIt -Console -Message '[INFO]' -Value $uri.ToString()
# Get the page contents so we can parse the table. We'll need the iterated ID based on the web table.
$request = Invoke-WebRequest -Uri $uri -Method Get -WebSession $webSession
$objTable = Extract-WebTable -WebRequest $request -TableNumber 0
# get the ID of the user on the page
$userID = $objTable.IndexOf(($objTable | Where-Object {$_.name -match $UserName}))
Switch ($CertAction)
{
Key {
$uri += ('?act=key&id={0}' -f $userID)
$fExt = 'key'
Break
}
P12 {
$uri += ('?act=p12&id={0}' -f $userID)
$fExt = 'p12'
Break
}
Default {
$uri += ('?act=exp&id={0}' -f $userID)
$fExt = 'crt'
Break
}
}
If (!$FilePath)
{
[String] $FilePath = ('{0}\{1}_pfSenseUserCertificate.{2}' -f $($PWD.Path), $UserName, $fExt)
}
Invoke-DebugIt -Console -Message '[INFO]' -Value ('Export path = {0}' -f $FilePath) -Force
Invoke-DebugIt -Console -Message '[INFO]' -Value ('URI = {0}' -f $uri.ToString())
$exRequest = Invoke-WebRequest -Uri $uri -Method Get -WebSession $webSession
ConvertFrom-HexToFile -HexString $exRequest.Content -FilePath $FilePath
}
End
{
}
}
Function Revoke-pfSenseUserCert
{
Param
(
[Parameter(Mandatory=$true, Position=0,
HelpMessage='Valid/active websession to server'
)] [PSObject] $Session,
[Parameter(Mandatory=$true, Position=1,
HelpMessage='User name'
)] [String] $UserName,
[ValidateSet('No Status (default)', 'Unspecified', 'Key Compromise', 'CA Compromise',
'Affiliation Change', 'Superseded', 'Cessation of Operation', 'Certificate Hold'
)] [String] $Reason = 'Unspecified',
[Switch] $Quiet
)
Begin
{
}
Process
{
# Variables
$Server = $Session.host
[bool] $NoTLS = $Session.NoTLS
[Microsoft.PowerShell.Commands.WebRequestSession] $webSession = $Session[0]
$user = Get-pfSenseUser -Session $Session -Detail -UserName $UserName
$dictReason = @{
'No Status (default)' = '-1'
'Unspecified' = 0
'Key Compromise' = 1
'CA Compromise' = 2
'Affiliation Changed' = 3
'Superseded' = 4
'Cessation of Operation' = 5
'Certificate Hold' = 6
}
If ($user.count -gt 1 -or $user -eq $null)
{
Write-Error -Message ('Failed to get username {0}' -f $UserName)
Return
}
If (!$user.CRL_ID)
{
Write-Error -Message ('No CRL for {0}' -f $UserName)
Return
}
$uri = 'https://{0}/system_crlmanager.php?act=edit&id={1}' -f $Server, $user.CRL_ID
If ($NoTLS) # highway to tha Danger Zone!!!
{
$uri = $uri -Replace "^https:",'http:'
Invoke-DebugIt -Console -Message '[WARNING]' -Value 'Insecure option selected (no TLS)' -Color 'Yellow'
}
Invoke-DebugIt -Console -Message '[INFO]' -Value $uri.ToString()
# pfSense requires a lot of magic.... ++ foreach POST
$request = Invoke-WebRequest -Uri $uri -Method Get -WebSession $webSession
# Dictionary submitted as body in our POST request
$dictPostData = @{
__csrf_magic=$($request.InputFields[0].Value)
certref=$($user.Cert_ID)
crlreason=$($dictReason["$Reason"])
submit='Add'
id=$($user.CRL_ID)
act='addcert'
crlref=$($user.CRL_ID)
}
Try
{
$rawRet = Invoke-WebRequest -Uri $uri -Method Post -Body $dictPostData -WebSession $webSession -EA Stop |
Out-Null
If ($rawRet.StatusCode -eq 200 -and -not $Quiet)
{
Invoke-DebugIt -Console -Message 'Success' -Force -Color 'Green' `
-Value ('Certificate: {0}, revoked successfully!' -f $UserName)
}
}
Catch
{
Write-Error -Message 'Something went wrong submitting the form'
}
}
End
{
}
}
Function Restore-pfSenseUserCert
{
<#
Un-Revoke: Remove a user's certificate from a CRL
#>
Param
(
[Parameter(Mandatory=$true, Position=0,
HelpMessage='Valid/active websession to server'
)] [PSObject] $Session,
[Parameter(Mandatory=$true, Position=1,
HelpMessage='User name'
)] [String] $UserName
)
Begin
{
}
Process
{
}
End
{
}
}
#endregion
#region System functions
Function Backup-pfSenseConfig
{
<#
.Synopsis
Backup your pfSense firewall
.DESCRIPTION
Long description
.EXAMPLE
$Creds = Get-Credential
$pfs = Connect-pfSense -Server firewall.local -Credential $Creds
Backup-pfSenseConfig -Server firewall.local -Session $pfs
#>
[CmdLetBinding()]
Param
(
[Parameter(
Mandatory=$true,
Position=0,
HelpMessage='Valid/active websession to server'
)]
[PSObject] $Session,
[Parameter(Position=1)]
[Switch] $OutputXML,
[Parameter(Position=1)]
[ValidateScript({
try {
$Folder = Get-Item $($_ | Split-Path -Parent) -ErrorAction Stop
} catch [System.Management.Automation.ItemNotFoundException] {
Throw [System.Management.Automation.ItemNotFoundException] "${_} Maybe there are network issues?"
}
if ($Folder.PSIsContainer) {