aboutsummaryrefslogtreecommitdiff
path: root/Inveigh.psm1
diff options
context:
space:
mode:
authorKevin Robertson <robertsonk@gmail.com>2016-08-21 19:59:20 -0400
committerKevin Robertson <robertsonk@gmail.com>2016-08-21 19:59:20 -0400
commita991da593917b5b9ea282a32abea890c989ee2bd (patch)
treea7fd216a908f6289401b7e1fdca8087d9795ac3c /Inveigh.psm1
parent747b0d1f2fff960e378776a3cdcc9fd857a387dc (diff)
downloadInveigh-a991da593917b5b9ea282a32abea890c989ee2bd.tar.gz
Inveigh-a991da593917b5b9ea282a32abea890c989ee2bd.zip
Early version of Inveigh 1.2 with the new Inveigh-Unprivileged script. This is still a work in progress and has not been fully tested.
1. Inveigh-Unprivileged – This script contains only LLMNR/NBNS spoofing and hash capture methods that do not require local admin access. The NBNS spoofer can be used without disabling the local NBNS service. The LLMNR spoofer does require stopping (needs admin) the local service and freeing up port 5355. It will work without admin on a system with LLMNR disabled. This script replaces Inveigh-BruteForce since it contains the same functionality. Note that there can still be systems configurations that will prevent Inveigh-Unprivileged from working, and require admin access to change (e.g. local firewall blocking traffic, LLMNR enabled). 2. Extras – Added an extras directory for functions that don’t fit the main scripts. a. Send-NBNSResponse – This function sends a crafted NBNS response packet to a specific target. For name resolution to be successful, the specified TargetIP, Hostname, and TransactionID must match a very (very very) recent NBNS request. You must have an external method (wireshark,etc) of viewing the required NBNS request fields for traffic on the target subnet. The odds of pulling this attack off manually are slim due to the narrow response window. I've only been able to get it to work manually by watching tshark with the the transaction ID being listed in the output. Ideally, this function would be fed by another script. b. Send-LLMNResponse – Just like Send-NBNSResponse but even harder to use manually. c. Invoke-NBNSC2 - Invoke-NBNSC2 will listen for NBNS requests and execute set commands if requests for specific hostnames are received. The function must be supplied with an even number of Hostnames and Commands. NBNS requests can be sent from a NBNS enabled system on the same subnet using ping, etc.
Diffstat (limited to 'Inveigh.psm1')
-rw-r--r--Inveigh.psm14
1 files changed, 2 insertions, 2 deletions
diff --git a/Inveigh.psm1 b/Inveigh.psm1
index 3e0cf7e..1e76490 100644
--- a/Inveigh.psm1
+++ b/Inveigh.psm1
@@ -1,10 +1,10 @@
<#
.SYNOPSIS
-Inveigh is a Windows PowerShell LLMNR/NBNS spoofer with challenge/response capture over HTTP(S)/SMB and NTLMv2 HTTP to SMB relay.
+Inveigh is a Windows PowerShell LLMNR/NBNS spoofer/man-in-the-middle tool.
.LINK
https://github.com/Kevin-Robertson/Inveigh
#>
Import-Module $PWD\Scripts\Inveigh.ps1
-Import-Module $PWD\Scripts\Inveigh-BruteForce.ps1
+Import-Module $PWD\Scripts\Inveigh-Unprivileged.ps1
Import-Module $PWD\Scripts\Inveigh-Relay.ps1 \ No newline at end of file