Skip to content

Commit

Permalink
Comments added
Browse files Browse the repository at this point in the history
  • Loading branch information
samratashok committed Jun 2, 2014
1 parent afd809b commit 11dd960
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion nishang.psm1
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}}

0 comments on commit 11dd960

Please sign in to comment.