diff options
author | Kevin Robertson <Kevin-Robertson@users.noreply.github.com> | 2021-06-21 20:51:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-21 20:51:57 -0400 |
commit | 5a3297fb195204808df147ffd748d8ebd5530e8f (patch) | |
tree | f382d99a6abf00b2928c86c0705f1b1532566061 | |
parent | 55c5adc3ac04a90544ee85efe5f970e4d41fafae (diff) | |
download | Inveigh-5a3297fb195204808df147ffd748d8ebd5530e8f.tar.gz Inveigh-5a3297fb195204808df147ffd748d8ebd5530e8f.zip |
Update README.md
-rw-r--r-- | README.md | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -28,7 +28,7 @@ The C# version of Inveigh contains attacks for the following protocols: * [DHCPv6](#DHCPv6) [packet sniffer | listener] * [ICMPv6](#ICMPv6) [privileged raw socket] * [HTTP](#HTTP) [listener] -* [HTTPS] [listener] +* [HTTPS](#HTTPS) [listener] * [SMB] [packet sniffer | listener] * [LDAP] [listener] * [WebDAV] [listener] @@ -420,6 +420,14 @@ Start HTTP listeners on multiple ports [+] HTTP Listener [HTTPAuth NTLM | WPADAuth NTLM | Ports 80:8080] ... ``` +### <a name="HTTPS"></a>HTTPS +Start HTTPS listener on port 443 with Inveigh's default cert +``` +.\Inveigh.exe -https y +... +[+] HTTPS Listener [HTTPAuth NTLM | WPADAuth NTLM | Port 443] +... +``` ## 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. |