All Projects → chmorgan → Packetnet

chmorgan / Packetnet

Licence: mpl-2.0
Official repository - High performance .Net assembly for dissecting and constructing network packets such as ethernet, ip, tcp, udp etc.

Projects that are alternatives of or similar to Packetnet

packetnet
Official repository - High performance .Net assembly for dissecting and constructing network packets such as ethernet, ip, tcp, udp etc.
Stars: ✭ 343 (+49.13%)
Mutual labels:  ethernet, network-analysis
network-pipeline
Network traffic data pipeline for real-time predictions and building datasets for deep neural networks
Stars: ✭ 36 (-84.35%)
Mutual labels:  ethernet, network-analysis
Etherate
Linux CLI Ethernet and MPLS Testing Tool
Stars: ✭ 130 (-43.48%)
Mutual labels:  network-analysis, ethernet
Chucker
🔎 An HTTP inspector for Android & OkHTTP (like Charles but on device)
Stars: ✭ 2,169 (+843.04%)
Mutual labels:  network-analysis
Sparkling Graph
SparklingGraph provides easy to use set of features that will give you ability to proces large scala graphs using Spark and GraphX.
Stars: ✭ 139 (-39.57%)
Mutual labels:  network-analysis
Graphlayouts
new layout algorithms for network visualizations in R
Stars: ✭ 176 (-23.48%)
Mutual labels:  network-analysis
Netgraph
Drawing utilities for publication quality plots of networks
Stars: ✭ 227 (-1.3%)
Mutual labels:  network-analysis
Wireshark Cheatsheet
Wireshark Cheat Sheet
Stars: ✭ 131 (-43.04%)
Mutual labels:  network-analysis
Awesome Network Analysis
A curated list of awesome network analysis resources.
Stars: ✭ 2,525 (+997.83%)
Mutual labels:  network-analysis
Programming Languages Influence
Code to retrieve data for the programming languages influence visualizations from Freebase
Stars: ✭ 171 (-25.65%)
Mutual labels:  network-analysis
Sharesniffer
Network share sniffer and auto-mounter for crawling remote file systems
Stars: ✭ 168 (-26.96%)
Mutual labels:  network-analysis
Sfnetworks
Tidy Geospatial Networks in R
Stars: ✭ 155 (-32.61%)
Mutual labels:  network-analysis
Grano
A toolkit for mapping networks of political and economic influence through diverse types of entities and their relations. Accessible at http://granoproject.org
Stars: ✭ 181 (-21.3%)
Mutual labels:  network-analysis
Urbanaccess
A tool for GTFS transit and OSM pedestrian network accessibility analysis
Stars: ✭ 137 (-40.43%)
Mutual labels:  network-analysis
Arduinoarpspoof
Kicks out everyone in your LAN via with an enc28j60 ethernet controller and Arduino.
Stars: ✭ 215 (-6.52%)
Mutual labels:  ethernet
Ivre
Network recon framework, published by @cea-sec & @ANSSI-FR. Build your own, self-hosted and fully-controlled alternatives to Shodan / ZoomEye / Censys and GreyNoise, run your Passive DNS service, collect and analyse network intelligence from your sensors, and much more!
Stars: ✭ 2,331 (+913.48%)
Mutual labels:  network-analysis
Alfred Network Workflow
Show and change your network settings
Stars: ✭ 186 (-19.13%)
Mutual labels:  ethernet
Node Ethernet Ip
A Lightweight Ethernet/IP API written to interface with Rockwell ControlLogix/CompactLogix Controllers.
Stars: ✭ 163 (-29.13%)
Mutual labels:  ethernet
Joincap
Merge multiple pcap files together, gracefully.
Stars: ✭ 159 (-30.87%)
Mutual labels:  network-analysis
Deepgraph
Analyze Data with Pandas-based Networks. Documentation:
Stars: ✭ 232 (+0.87%)
Mutual labels:  network-analysis

NuGet Build status

New!

The newly released PacketDotNet.Connections is a supplement to Packet.NET that adds connection tracking and http following support.

Packet.Net

Packet.Net is a high performance .Net assembly for dissecting and constructing network packets such as ethernet, ip, tcp, udp etc.

Originally created by Chris Morgan [email protected]

https://github.com/chmorgan/packetnet

Code is found in the PacketDotNet namespace.

Performance

Packet.Net has been designed for the highest performance possible. As such we aim to perform the most minimal amount of data processing in order to fully determine the datagram nesting.

For example a TCP packet would be parsed into a series of linked objects like: Ethernet -> IPv4 -> TCP but no further data processing is performed until particular fields are accessed. In addition the objects point to packet memory in-place, avoiding allocation and copying of the packet contents unless necessary, such as when altering data payloads or resizing variable length fields.

Test suite

Packet.Net has a comprehensive suite of tests for each of the supported packet types, see the 'Test' subdirectory.

Supported packet formats

  • Ethernet
  • IPv4 / IPv6
  • TCP
  • UDP
  • ICMP v4 and v6
  • IGMP
  • L2TP
  • PPPoE
  • OSPF
  • Wake-on-lan
  • IEEE 802.1Q
  • IEEE 802.11
  • DRDA
  • ARP
  • LLDP
  • LSA
  • Linux SSL
  • PPP
  • and probably more, see the source code for the latest list

Getting started

A few basic examples can be found in the Examples/ directory.

Debug vs. Release builds

The Debug build depends on log4net and has log4net calls in some of its classes and code paths.

The Release build does NOT depend on log4net and, taking advantage of conditional method attributes, does not include any calls to log4net methods. This ensures that there is no performance impact on release builds.

Performance benchmarks

The Test/ directory contains a few benchmarks that were used to guide the design and implementation of Packet.Net. These benchmarks either contain 'performance' or 'benchmark' in their names.

If you have a performance concern or issue you'll want to write a concise test that reproduces your usage case in a controlled manner. It will then be possible to run and re-run this test case in various profiling modes in order to look at potential ways of optimizing code. The tests will also provide a baseline from which to compare any proposed performance improvements in order to ensure that changes are not inadvertantly reducing instead of increasing performance.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].