diff options
author | Kevin Robertson <robertsonk@gmail.com> | 2015-10-11 19:56:02 -0400 |
---|---|---|
committer | Kevin Robertson <robertsonk@gmail.com> | 2015-10-11 19:56:02 -0400 |
commit | 65c2df6a2b00d0b2514f84e3e5c514c073bdd6e3 (patch) | |
tree | 7ef650fef950b3aa792d4b33cbb0109411b69402 /Inveigh.psm1 | |
parent | 3ed10aaad19f8ad6ee386af6f5de0473425258d3 (diff) | |
download | Inveigh-65c2df6a2b00d0b2514f84e3e5c514c073bdd6e3.tar.gz Inveigh-65c2df6a2b00d0b2514f84e3e5c514c073bdd6e3.zip |
Moved SMB relay code to a dedicated script, also added a Scripts directory and psm1 and psd1 files
The SMB relay code is now in Inveigh-Relay.ps1. The script can be used
either through Invoke-Inveigh or as a standalone function.
Diffstat (limited to 'Inveigh.psm1')
-rw-r--r-- | Inveigh.psm1 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Inveigh.psm1 b/Inveigh.psm1 new file mode 100644 index 0000000..19c181f --- /dev/null +++ b/Inveigh.psm1 @@ -0,0 +1,9 @@ +<# +.SYNOPSIS +Inveigh is a Windows PowerShell LLMNR/NBNS spoofer with challenge/response capture over HTTP(S)/SMB and NTLMv2 HTTP to SMB relay. + +.LINK +https://github.com/Kevin-Robertson/Inveigh +#> +Import-Module $PWD\Scripts\Inveigh.ps1 +Import-Module $PWD\Scripts\Inveigh-Relay.ps1
\ No newline at end of file |