diff options
author | Kevin Robertson <robertsonk@gmail.com> | 2018-02-19 23:36:13 -0500 |
---|---|---|
committer | Kevin Robertson <robertsonk@gmail.com> | 2018-02-19 23:36:13 -0500 |
commit | 43edf71b54567698d24d7c44ce3410120841b53a (patch) | |
tree | 978bae559d6ec42f76c1168f125704132e755b59 /Inveigh.psm1 | |
parent | 32550b99a7f8e8006f16d185e9d6f40fe4b3d9ea (diff) | |
download | Inveigh-43edf71b54567698d24d7c44ce3410120841b53a.tar.gz Inveigh-43edf71b54567698d24d7c44ce3410120841b53a.zip |
Inveigh 1.4 dev
This is an early version of Inveigh 1.4. There is probably alot that is
broken.
Inveigh:
1. Invoke-DNSUpdate integration - Inveigh will attempt to inject DNS
records if the same LLMNR/NBNS request is observed from multiple
systems. The goal is to find requests that could be valid in other
subnets and leverage them through DNS. This version requires that
Inveigh is running with a domain auth user context.
2. Reworked output system and formating.
3. hmm...I forget.
Inveigh Relay:
1. New attack with Invoke-TheHash integration - In addition to that
standard psexec style attack, Inveigh Relay now has the ability to
create and maintain authenticated priv and unpriv SMB2 sessions. These
sessions can be used by Invoke-SMBClient (attack file shares) and
Invoke-SMBExec.
Invoke-InveighRelay -Attack session -Target 10.10.10.10
wait for relay
Get-Inveigh -session
Invoke-SMBClient -Session 0 -Source \\10.10.10.10\share
2. Multitarget - Inveigh Relay will now accept an array of targets. As
relay attempts come in, Inveigh Relay will attempt to select the best
target (still needs work).
3. SMB signing check for targets on startup.
4. Reworked output system and formating.
I'm temporarily housing newer versions of Invoke-DNSUpdate,
Invoke-SMBClient, and Invoke-SMBExec here. They need to be imported into
the same powershell session for integration to work. There is also
probably a lot broken with these.
Diffstat (limited to 'Inveigh.psm1')
-rw-r--r-- | Inveigh.psm1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Inveigh.psm1 b/Inveigh.psm1 index 96708d8..c7b0027 100644 --- a/Inveigh.psm1 +++ b/Inveigh.psm1 @@ -1,9 +1,9 @@ <# .SYNOPSIS -Inveigh is a Windows PowerShell LLMNR/mDNS/NBNS spoofer/man-in-the-middle tool. +Inveigh is a Windows PowerShell LLMNR/NBNS/mDNS/DNS spoofer/man-in-the-middle tool. .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 +Import-Module $PWD\Inveigh.ps1 +Import-Module $PWD\Inveigh-Relay.ps1
\ No newline at end of file |