Rewrite netstat and arp/net-neighbor collection method#197
Open
lhotlan64 wants to merge 5 commits intofox-it:mainfrom
Open
Rewrite netstat and arp/net-neighbor collection method#197lhotlan64 wants to merge 5 commits intofox-it:mainfrom
lhotlan64 wants to merge 5 commits intofox-it:mainfrom
Conversation
Contributor
|
Dear @lhotlan64, Thank you very much for your contribution to Dissect! |
…enforces a minimum Windows version
Member
|
I think something went wrong with the diff on |
Author
|
Well, this is going terribly :^) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This rewrite changes the way information about active connections and the arp cache is collected from a live system.
Netstat
Originally,
netstat -anowas invoked by theNetstatmodule. Now, information about the active connections (both TCP4/6 and UDP4/6) is obtained using theGetExtendedTcpTableandGetExtendedUdpTableAPI calls fromiphlpapi.dll.Arp
Originally, either
arp -avorGet-NetNeighborwas invoked by theWinArpCachemodule, depending on the operating system version. Now, information about peers is obtained usingGetIpNetTable(2). Additionally, information about the adapters is obtained.Formatting
No changes were made in the way the information is stored within the resulting package, which remains "command output", as to not introduce any major changes. The output is shown in a similar manner to that of the originally invoked binaries. However, the ability to format the information as both JSON and CSV output is included, and exposed by the following functions:
format_net_connections_csvformat_net_connections_jsonand
format_net_neighbors_csvformat_net_neighbors_jsonThese formats could later be used for more easy parsing of the information.
Collection using acquire was tested on both 32 and 64 bit.