mirror of
https://github.com/tennc/webshell
synced 2024-11-22 19:23:05 +00:00
300ccb3c8d
Antak-WebShell
14 lines
495 B
PowerShell
14 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}}
|
|
|