-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathinstall.ps1
28 lines (22 loc) · 1.2 KB
/
install.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<#
Installer for powerexploit pentesting framework.
#>
function installer {
Process
{
$new = @(
"
__________ .__ .__ __
\______ \______ _ __ ___________ ____ ___ _________ | | ____ |__|/ |_
| ___/ _ \ \/ \/ // __ \_ __ \_/ __ \\ \/ /\____ \| | / _ \| \ __\
| | ( <_> ) /\ ___/| | \/\ ___/ > < | |_> > |_( <_> ) || |
|____| \____/ \/\_/ \___ >__| \___ >__/\_ \| __/|____/\____/|__||__|
\/ \/ \/|__|
" )
Write-Host -fore Green $new
Write-Host -fore blue "[i] Now Installing necessary Files For Powerexploit........."
$install = iex(new-object net.webclient).downloadstring("https://gist.github.com/darkoperator/6404266/raw/982cae410fc41f6c64e69d91fc3dda777554f241/gistfile1.ps1")
$psnmap = Install-Module -name PSnmap
write $install ,$psnmap
}
}installer