mirror of
https://github.com/tennc/webshell
synced 2024-11-10 05:44:11 +00:00
15 lines
495 B
PowerShell
15 lines
495 B
PowerShell
|
|
|||
|
<#
|
|||
|
Import this module to use all the scripts in nishang, except Keylogger in current powershell session. The module must reside in the nishang folder.
|
|||
|
|
|||
|
PS > Import-Module .\nishang.psm1
|
|||
|
|
|||
|
http://www.labofapenetrationtester.com/2014/06/nishang-0-3-4.html
|
|||
|
https://github.com/samratashok/nishang
|
|||
|
#>
|
|||
|
|
|||
|
|
|||
|
#Code stolen from here https://github.com/mattifestation/PowerSploit
|
|||
|
Get-ChildItem -Recurse (Join-Path $PSScriptRoot *.ps1) | ForEach-Object { if ($_.Name -ne "Keylogger.ps1") {. $_.FullName}}
|
|||
|
|