diff options
author | HarmJ0y <will@harmj0y.net> | 2016-12-14 18:24:33 -0500 |
---|---|---|
committer | HarmJ0y <will@harmj0y.net> | 2016-12-14 18:24:33 -0500 |
commit | cf444398cab3f77f9b8cc7bd23e3e506621eb150 (patch) | |
tree | 4ef2606fb6b48fab8766df94608d2bd32801ce9f /docs/Persistence/Install-SSP.md | |
parent | a81faf36a4cdf925b4cb7cc1019648b37967e0bc (diff) | |
download | PowerSploit-cf444398cab3f77f9b8cc7bd23e3e506621eb150.tar.gz PowerSploit-cf444398cab3f77f9b8cc7bd23e3e506621eb150.zip |
For ./Persistence/ :
-PSScriptAnalyzering
-Tweaking of synopsis blocks in order to support platyPS
-Code standardization
-Generated docs
Diffstat (limited to 'docs/Persistence/Install-SSP.md')
-rwxr-xr-x | docs/Persistence/Install-SSP.md | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/docs/Persistence/Install-SSP.md b/docs/Persistence/Install-SSP.md new file mode 100755 index 0000000..99193c0 --- /dev/null +++ b/docs/Persistence/Install-SSP.md @@ -0,0 +1,60 @@ +# Install-SSP
+
+## SYNOPSIS
+Installs a security support provider (SSP) dll.
+
+Author: Matthew Graeber (@mattifestation)
+License: BSD 3-Clause
+Required Dependencies: None
+Optional Dependencies: None
+
+## SYNTAX
+
+```
+Install-SSP [[-Path] <String>]
+```
+
+## DESCRIPTION
+Install-SSP installs an SSP dll.
+Installation involves copying the dll to
+%windir%\System32 and adding the name of the dll to
+HKLM\SYSTEM\CurrentControlSet\Control\Lsa\Security Packages.
+
+## EXAMPLES
+
+### -------------------------- EXAMPLE 1 --------------------------
+```
+Install-SSP -Path .\mimilib.dll
+```
+
+## PARAMETERS
+
+### -Path
+{{Fill Path Description}}
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+## INPUTS
+
+## OUTPUTS
+
+## NOTES
+The SSP dll must match the OS architecture.
+i.e.
+You must have a 64-bit SSP dll
+if you are running a 64-bit OS.
+In order for the SSP dll to be loaded properly
+into lsass, the dll must export SpLsaModeInitialize.
+
+## RELATED LINKS
+
|