-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
afd809b
commit 11dd960
Showing
1 changed file
with
10 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
|
||
#Get-ChildItem (Join-Path $PSScriptRoot *.ps1) #| % { . $_.FullName} | ||
<# | ||
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}} | ||
|