forked from darkoperator/Posh-SSH
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Trust.ps1
124 lines (116 loc) · 3.51 KB
/
Trust.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
# .ExternalHelp Posh-SSH.psm1-Help.xml
function Get-SSHTrustedHost
{
[CmdletBinding()]
[OutputType([int])]
Param()
Begin{}
Process
{
$Test_Path_Result = Test-Path -Path "hkcu:\Software\PoshSSH"
if ($Test_Path_Result -eq $false)
{
Write-Verbose -Message 'No previous trusted keys have been configured on this system.'
New-Item -Path HKCU:\Software -Name PoshSSH | Out-Null
return
}
$poshsshkey = [Microsoft.Win32.Registry]::CurrentUser.OpenSubKey('Software\PoshSSH', $true)
$hostnames = $poshsshkey.GetValueNames()
$TrustedHosts = @()
foreach($h in $hostnames)
{
$TrustedHost = @{
SSHHost = $h
Fingerprint = $poshsshkey.GetValue($h)
}
$TrustedHosts += New-Object -TypeName psobject -Property $TrustedHost
}
}
End
{
$TrustedHosts
}
}
# .ExternalHelp Posh-SSH.psm1-Help.xml
function New-SSHTrustedHost
{
[CmdletBinding()]
Param
(
# IP Address of FQDN of host to add to trusted list.
[Parameter(Mandatory=$true,
ValueFromPipelineByPropertyName=$true,
Position=0)]
$SSHHost,
# SSH Server Fingerprint.
[Parameter(Mandatory=$true,
ValueFromPipelineByPropertyName=$true,
Position=1)]
$FingerPrint
)
Begin
{
}
Process
{
$softkey = [Microsoft.Win32.Registry]::CurrentUser.OpenSubKey('Software', $true)
if ( $softkey.GetSubKeyNames() -contains 'PoshSSH')
{
$poshsshkey = [Microsoft.Win32.Registry]::CurrentUser.OpenSubKey('Software\PoshSSH', $true)
}
else
{
Write-Verbose 'PoshSSH Registry key is not present for this user.'
New-Item -Path HKCU:\Software -Name PoshSSH | Out-Null
Write-Verbose 'PoshSSH Key created.'
$poshsshkey = [Microsoft.Win32.Registry]::CurrentUser.OpenSubKey('Software\PoshSSH', $true)
}
Write-Verbose "Adding to trusted SSH Host list $($SSHHost) with a fingerprint of $($FingerPrint)"
$poshsshkey.SetValue($SSHHost, $FingerPrint)
Write-Verbose 'SSH Host has been added.'
}
End
{
}
}
# .ExternalHelp Posh-SSH.psm1-Help.xml
function Remove-SSHTrustedHost
{
[CmdletBinding()]
Param
(
# Param1 help description
[Parameter(Mandatory=$true,
ValueFromPipelineByPropertyName=$true,
Position=0)]
[string]
$SSHHost
)
Begin
{
}
Process
{
$softkey = [Microsoft.Win32.Registry]::CurrentUser.OpenSubKey('Software', $true)
if ($softkey.GetSubKeyNames() -contains 'PoshSSH' )
{
$poshsshkey = [Microsoft.Win32.Registry]::CurrentUser.OpenSubKey('Software\PoshSSH', $true)
}
else
{
Write-warning 'PoshSSH Registry key is not present for this user.'
return
}
Write-Verbose "Removing SSH Host $($SSHHost) from the list of trusted hosts."
if ($poshsshkey.GetValueNames() -contains $SSHHost)
{
$poshsshkey.DeleteValue($SSHHost)
Write-Verbose 'SSH Host has been removed.'
}
else
{
Write-Warning "SSH Hosts $($SSHHost) was not present in the list of trusted hosts."
}
}
End{}
}