|
| 1 | +NetworkMiner 2.7.1 |
| 2 | + * PacketHandler.cs: Fixed bug related to live sniffing. Thanks to Jeff Rivett for |
| 3 | + reporting the issue! |
| 4 | + |
| 5 | +NetworkMiner 2.7 |
| 6 | + * WinPCapWrapper.cs: Changed int pointers to 64 bit values in order to handle WinPcap |
| 7 | + and npcap drivers correctly. |
| 8 | + Thanks to Jeff Rivett for reporting the issue! |
| 9 | + |
| 10 | + * Smb2PacketHandler.cs: Added requested SMB2 filename info from SMB2 Create Requests |
| 11 | + and error messages from negative SMB2 responses to Parameters tab. |
| 12 | + |
| 13 | + * Smb2Packet.cs: Better extraction of SMB2 file transfers by extracting End-of-File |
| 14 | + values from Smb2CreateResponse. |
| 15 | + |
| 16 | + * LpdPacket.cs: Added support for Line Printer Daemon Protocol (RFC1179). |
| 17 | + Thanks to Hayo Brouwer (of Ricoh) for helping out with capture files! |
| 18 | + |
| 19 | + * NetworkTcpSession.cs: Modified TCP Keepalive handling to support protocols |
| 20 | + that transmit 1 byte TCP payloads containing a 0x00 byte (like LPD). |
| 21 | + |
| 22 | + * TcpPacket.cs: Changed GetSubPackets function to allow application layer packets |
| 23 | + with only one byte of L7 data to be returned. |
| 24 | + |
| 25 | + * SatoriTcpOsFingerprinter.cs: Improved performance by indexing fingerprints based |
| 26 | + on TCP flags. |
| 27 | + |
| 28 | + * HttpPacketHandler.cs: Generic extraction of files sent with HTTP POST, including |
| 29 | + WAP.MMS messages. More files are now extracted from HTTP POST uploads. |
| 30 | + |
| 31 | + * DnsPacket.cs: Added extraction of TXT records to DNS tab |
| 32 | + |
| 33 | + * DnsPacket.cs: Added extraction of SRV records to DNS tab |
| 34 | + |
| 35 | + * NetworkMinerForm.cs: Double-clicking on a file now opens up the file details window |
| 36 | + |
| 37 | + * ExtractedFileDetailsForm.cs: Added hex viewer to file details window |
| 38 | + |
| 39 | + * FileStreamAssembler.cs: The file extension is now identified based on the contents |
| 40 | + of the file's header (fewer "octet-stream" files, more ".exe" and ".zip" etc.) |
| 41 | + |
| 42 | + * NetworkMinerForm.cs: Added warning message when trying to open/run an executable |
| 43 | + file with right-click -> "Open file" |
| 44 | + |
| 45 | + * TlsRecordPacket.cs: Extraction of JA3S hashes from TLS Server Hello packets to |
| 46 | + Parameters tab and Host Details |
| 47 | + |
| 48 | + * PcapParser.cs: Added support for nanosecond PCAP files |
| 49 | + |
1 | 50 |
|
2 | 51 | NetworkMiner 2.6
|
3 | 52 |
|
4 |
| - * KerberosPacketHandler.cs: Better extraction of Salt from Kerberos ERROR packets. |
| 53 | + * KerberosPacketHandler.cs: Better extraction of Salt from Kerberos ERROR packets. |
5 | 54 |
|
6 |
| - * NtlmSspPacketHandler.cs: Added John-the-Ripper formated extraction of LanMan, NTLMv1 |
7 |
| - and NTLMv2 challenge/response hashes |
8 |
| - LanMan example: $LM$A9C604D244C4E99D |
9 |
| - NTLMv1 example: $NETNTLM$1122334455667788$B2B2220790F40C88BCFF347C652F67A7C4A70D3BEBD70233 |
10 |
| - NTLMv2 example: $NETNTLMv2$NTLMV2TESTWORKGROUP$1122334455667788$07659A550D5E9D02996DFD95C87EC1D5$0101000000000000006CF6385B74CA01B3610B02D99732DD000000000200120057004F0052004B00470052004F00550050000100200044004100540041002E00420049004E0043002D0053004500430055005200490000000000 |
11 |
| - - LM (hashcat "-m 3000") |
12 |
| - - NETNTLM (hashcat "-m 5500") |
13 |
| - - NETNTLMv2 (hashcat "-m 5600") |
| 55 | + * NtlmSspPacketHandler.cs: Added John-the-Ripper formated extraction of LanMan, NTLMv1 |
| 56 | + and NTLMv2 challenge/response hashes |
| 57 | + LanMan example: $LM$A9C604D244C4E99D |
| 58 | + NTLMv1 example: $NETNTLM$1122334455667788$B2B2220790F40C88BCFF347C652F67A7C4A70D3BEBD70233 |
| 59 | + NTLMv2 example: $NETNTLMv2$NTLMV2TESTWORKGROUP$1122334455667788$07659A550D5E9D02996DFD95C87EC1D5$0101000000000000006CF6385B74CA01B3610B02D99732DD000000000200120057004F0052004B00470052004F00550050000100200044004100540041002E00420049004E0043002D0053004500430055005200490000000000 |
| 60 | + - LM (hashcat "-m 3000") |
| 61 | + - NETNTLM (hashcat "-m 5500") |
| 62 | + - NETNTLMv2 (hashcat "-m 5600") |
14 | 63 |
|
15 | 64 | * HttpPakcetHandler.cs: Improved extraction of json data sent in HTTP(2) POST requests.
|
16 | 65 | Now with support for Content-Encoding: gzip
|
@@ -47,7 +96,7 @@ NetworkMiner 2.6
|
47 | 96 | attachment filenames.
|
48 | 97 |
|
49 | 98 | * SipPacketHandler.cs: SIP chat messages [RFC3428] are extracted to the "Messages" tab.
|
50 |
| - Audio extraction of VoIP calls is still a feature that is exlusively available only |
| 99 | + Audio extraction of VoIP calls is still a feature that is exclusively available only |
51 | 100 | in NetworkMiner Professional though.
|
52 | 101 |
|
53 | 102 | * HttpPacketHandler.cs and Http2PacketHandler.cs: The HTTP header "Accept-Language" and
|
|
0 commit comments