Functionality to support usage and development on top of the NetworkSage platform.
Project description
networksage-tools
This repository contains publicly-released tools that will be helpful when interacting with the NetworkSage platform. Note that to upload anything to NetworkSage, you will require either a free or paid API key. To request an API key, please register for an account at https://networksage.seclarity.io/register.
What is NetworkSage?
The NetworkSage platform, first and foremost, acts as a lightweight, privacy-maintaining enrichment layer for your network traffic. It takes network flows (which we call Secflows), categorizes them with one of a couple dozen labels (see our Glossary for details), and compares them with the global dataset of known activity. For every Secflow, it returns:
- how common it is globally
- which categorization it has
- any metadata the security community has provided
To visually illustrate, refer to the following (taken from a public sample we found while creating our first Threat Report).
When this sample was uploaded to NetworkSage, all Secflows were automatically categorized and their global commonality was identified:
In addition, many of those Destinations (an IP or Domain name plus its port) had additional metadata provided by the security community. That information was made available inline:
Some of the categories associated with certain Secflows also indicated specific Behavior was happening. That information (also provided by the community) was shared for more in-depth knowledge:
Finally, some of the Behaviors (when seen in a particular order within some period of time) actually identified more complex interactions that we call Events:
Installation
Note that this package requires libpcap-dev
to be installed on your system. Please use your system's package manager (such as apt
on Ubuntu) to install libpcap-dev
:
sudo apt-get install libpcap-dev
While Windows isn't yet supported due to issues with underlying libraries (specifically pcapy
), we'd welcome anyone who wants to document the steps to make it work. At the very minimum, you will need the following:
A C++ compiler. Microsoft Visual Studio Build Tools is known to work.
Npcap's SDK, which is a replacement for the WinPCAP developer's kit.
To install the networksage-tools
package, simply type the following:
pip install networksage-tools
Available Modules
There are multiple modules available within this package. Details about each are below.
A. Streaming Secflow Collector
module name: streaming
This module allows you to directly capture network traffic as unenriched Secflows (Secflows without flow category labels). This is beneficial for a number of reasons:
- Secflows are extremely lightweight, so you can actually do this continuously in the background without affecting system performance (i.e. you can collect network telemetry continuously on your endpoints)!
- Secflows have no identifying data, so you can avoid worrying about accidentally leaking information (URIs, passwords, keys, etc...)
To import this module into your project, type the following:
from networksage_tools.streaming import streaming
Usage
To capture Secflows continuously using this module from your project, enter the following (note that you'll need to be root to capture packets):
streaming.start(<interface_name>, <duration_in_seconds>, <optional_verbosity>)
Note that the above will run in perpetuity, capturing packets from the interface you specified (such as "enp0s3" on Ubuntu systems). Every time the specified duration you provided is reached (if you provide no value, it defaults to 300 seconds), a sample will be created and uploaded to your NetworkSage account. Providing the optional is_verbose
value will print a small amount of information about the number of flows and its UUID.
B. Standalone Converter
module name: converter
This module allows you to convert captured network traffic from any of our supported formats (currently PCAP, PCAPNG, and Zeek) into unenriched Secflows (Secflows without flow category labels). This is useful if you already have network telemetry that you'd like to upload to NetworkSage, but you don't want to upload the original file (for privacy, size, or other reasons).
To import this module into your project, type the following:
from networksage_tools.converter import convert
Usage
To convert a PCAP or PCAPNG file into an unenriched Secflow file, simply enter the following:
convert.convert_pcap(<path_to_pcap_file>)
To convert a Zeek Conn log into an unenriched Secflow file, simply enter the following:
convert.convert_zeek(<path_to_conn_log>, <optional_path_to_dns_log>)
If you have (and would like to include) DNS information that was captured by Zeek, provide the dns.log
in addition to the conn.log
. Naming will be much enhanced by doing so.
Supported File Formats
NetworkSage currently supports uploading the following files (which will be converted into our Secflow format):
- PCAP
- PCAPNG
- Zeek (conn.log and dns.log)
- Secflow
If you have a format that you'd like us to support, please review our FAQs and contact support at seclarity [.] io
.
Getting Involved
We have a lot of plans to change the face of security. If you want to be involved as a contributor or to be a part of the community we're building, we highly encourage you to join our Slack!
License
This software is provided under the Apache Software License. See the accompanying LICENSE file for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file networksage-tools-0.9.94.tar.gz
.
File metadata
- Download URL: networksage-tools-0.9.94.tar.gz
- Upload date:
- Size: 9.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f13f2134822e3e14925d59d577aa2900b7329acace3ffaa9a8306e6c545ccc4 |
|
MD5 | cfade437993da20d043ef9699d8d2b50 |
|
BLAKE2b-256 | 081695a2b5f218d560a9290740d7c9a7d8e1a554f0fed43de0721c6e95c3aa7f |
File details
Details for the file networksage_tools-0.9.94-py3-none-any.whl
.
File metadata
- Download URL: networksage_tools-0.9.94-py3-none-any.whl
- Upload date:
- Size: 9.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.3 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75122740ed7dd1b93349f1e92865cac3dff554f1729846a7b551bbeb5c63359a |
|
MD5 | 4ef4d30de197d9b2ab1963b9249d1271 |
|
BLAKE2b-256 | f30cceacf7fb2a96e57567bfd1de786fb4051ad12e5d3db5631bde72c28881fe |