diff options
author | Kevin Robertson <Kevin-Robertson@users.noreply.github.com> | 2021-06-21 22:20:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-21 22:20:40 -0400 |
commit | ba633e0f39f8118f70fc785c046b2c0289e77c3d (patch) | |
tree | d7f151dabd6aadc1b9d4dfe791a724ad31dc295f | |
parent | 30fb707d86f505e1be191f28d9c83b3d0f4d52e9 (diff) | |
download | Inveigh-ba633e0f39f8118f70fc785c046b2c0289e77c3d.tar.gz Inveigh-ba633e0f39f8118f70fc785c046b2c0289e77c3d.zip |
Update README.md
-rw-r--r-- | README.md | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -31,7 +31,7 @@ The C# version of Inveigh contains attacks for the following protocols: * [HTTPS](#HTTPS) [listener] * [SMB](#SMB) [packet sniffer | listener] * [LDAP](#LDAP) [listener] -* [WebDAV] [listener] +* [WebDAV](#WebDAV) [listener] * [Proxy Auth] [listener] Inveigh works with both IPv4 and IPv6 in cases where support for both is provided by the underlying protocol. @@ -406,9 +406,9 @@ Start NBNS spoofer [+] [23:33:09] NBNS(00) request [TEST] from 10.10.2.201 [response sent] ``` ### <a name="HTTP"></a>HTTP -Start HTTP listener on port 80 +Start HTTP listener on port 80 (enabled by default) ``` -.\Inveigh.exe +.\Inveigh.exe ... [+] HTTP Listener [HTTPAuth NTLM | WPADAuth NTLM | Port 80] ... @@ -429,7 +429,7 @@ Start HTTPS listener on port 443 with Inveigh's default cert ... ``` ### <a name="SMB"></a>SMB -Start SMB packet sniffer +Start SMB packet sniffer (enabled by default) ``` .\Inveigh.exe ... @@ -451,6 +451,14 @@ Start LDAP listener on port 389 [+] LDAP Listener [Port 389] ... ``` +### <a name="WebDAV"></a>WebDAV +Start the HTTP listener with WebDAV support (enabled by default) +``` +.\Inveigh.exe +... +[+] WebDAV [WebDAVAuth NTLM] +... +``` ## Console Inveigh contains a console that is accessible while the tool is running (hit escape to enter and exit). The console provides easy access to captured credentials/hashes and other various information. The console's prompt provides real-time updates for cleartext, NTLMv1, and NTLMv2 captue counts in the format of unique:total. Note, the console may be inaccessible when running through C2. |