Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Request #77

Closed
cgoat opened this issue Jan 27, 2021 · 2 comments · Fixed by #112
Closed

Feature Request #77

cgoat opened this issue Jan 27, 2021 · 2 comments · Fixed by #112
Assignees
Labels
enhancement New feature or request Needs Work An issue that requires follow-up task

Comments

@cgoat
Copy link

cgoat commented Jan 27, 2021

Can we add an option of adding more features to the JSON file. Right now i see the Source, Destination, Protocol, SrcPort, DestPort. Other options can be details about the packet itself (Time, Sequence Number, Flags etc..). I am trying to build a graph in neo4j.

I currently am able to create a graph with the code below

WITH "file:///home/xxx/dump/output.json" AS url
CALL apoc.load.json(url)
YIELD value AS NetworkTraffic
UNWIND NetworkTraffic AS items
MERGE (s:Packet{id: items.Source, protocol:items.Prtocol, Srcport:Items.SrcPort})
MERGE (d:Packet{id: items.Destination, Destport:Items.DestPort})
CREATE (s) -[r:connects]->(d)
RETURN s,d,r;

NEO4J

@odedshimon
Copy link
Owner

Hi @cgoat,
Thanks you for your suggestion.
I found it a usefull feature and it will be implemented in the next releases - so keep follow 😃
Cheers,
Oded.

@odedshimon odedshimon added enhancement New feature or request Needs Work An issue that requires follow-up task labels Jan 27, 2021
@odedshimon odedshimon self-assigned this Sep 13, 2021
@odedshimon odedshimon mentioned this issue Sep 15, 2021
3 tasks
@odedshimon odedshimon linked a pull request Sep 15, 2021 that will close this issue
3 tasks
@odedshimon
Copy link
Owner

odedshimon commented Sep 15, 2021

Hi @cgoat
I have done a massive refactor to handle this feature.
Network Map user control now have a control describes the node details (open ports, DNS records, sessions count)
The exported files including a new file named "BruteShark Network Nodes Data.json" that holds all the nodes details.

That will be take place at next release

Thanks you for your suggestion :-)

image
NodeDetails2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request Needs Work An issue that requires follow-up task
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants