A Flexible Network Data Analysis Framework
Project description
NFStream is a Python framework providing fast, flexible, and expressive data structures designed to make working with online or offline network data both easy and intuitive. It aims to be the fundamental high-level building block for doing practical, real world network data analysis in Python. Additionally, it has the broader goal of becoming a common network data analytics framework for researchers providing data reproducibility across experiments.
Live Notebook | |
Project Website | |
Discussion Channel | |
Latest Release | |
Supported Versions | |
Project License | |
Build Status | |
Code Quality | |
Code Coverage |
Main Features
- Performance: NFStream is designed to be fast: AF_PACKETV3/FANOUT on Linux, parallel processing, native C (using CFFI) for critical computation and PyPy support.
- Encrypted layer-7 visibility: NFStream deep packet inspection is based on nDPI. It allows NFStream to perform reliable encrypted applications identification and metadata fingerprinting (e.g. TLS, SSH, DHCP, HTTP).
- Statistical features extraction: NFStream provides state of the art of flow-based statistical feature extraction. It includes both post-mortem statistical features (e.g. min, mean, stddev and max of packet size and inter arrival time) and early flow features (e.g. sequence of first n packets sizes, inter arrival times and directions).
- Flexibility: NFStream is easily extensible using NFPlugins. It allows to create a new feature within a few lines of Python.
- Machine Learning oriented: NFStream aims to make Machine Learning Approaches for network traffic management reproducible and deployable. By using NFStream as a common framework, researchers ensure that models are trained using the same feature computation logic and thus, a fair comparison is possible. Moreover, trained models can be deployed and evaluated on live network using NFPlugins.
How to get it?
Binary installers for the latest released version are available on Pypi.
pip install nfstream
How to use it?
Encrypted application identification and metadata extraction
Dealing with a big pcap file and just want to aggregate into labeled network flows? NFStream make this path easier in few lines:
from nfstream import NFStreamer
# We display all streamer parameters with their default values.
# See documentation for detailed information about each parameter.
# https://www.nfstream.org/docs/api#nfstreamer
my_streamer = NFStreamer(source="facebook.pcap", # or network interface
decode_tunnels=True,
bpf_filter=None,
promiscuous_mode=True,
snapshot_length=1536,
idle_timeout=120,
active_timeout=1800,
accounting_mode=0,
udps=None,
n_dissections=20,
statistical_analysis=False,
splt_analysis=0,
n_meters=0,
performance_report=0)
for flow in my_streamer:
print(flow) # print it.
# See documentation for each feature detailed description.
# https://www.nfstream.org/docs/api#nflow
NFlow(id=0,
expiration_id=0,
src_ip='192.168.43.18',
src_mac='30:52:cb:6c:9c:1b',
src_oui='30:52:cb',
src_port=52066,
dst_ip='66.220.156.68',
dst_mac='98:0c:82:d3:3c:7c',
dst_oui='98:0c:82',
dst_port=443,
protocol=6,
ip_version=4,
vlan_id=0,
tunnel_id=0,
bidirectional_first_seen_ms=1472393122365,
bidirectional_last_seen_ms=1472393123665,
bidirectional_duration_ms=1300,
bidirectional_packets=19,
bidirectional_bytes=5745,
src2dst_first_seen_ms=1472393122365,
src2dst_last_seen_ms=1472393123408,
src2dst_duration_ms=1043,
src2dst_packets=9,
src2dst_bytes=1345,
dst2src_first_seen_ms=1472393122668,
dst2src_last_seen_ms=1472393123665,
dst2src_duration_ms=997,
dst2src_packets=10,
dst2src_bytes=4400,
application_name='TLS.Facebook',
application_category_name='SocialNetwork',
application_is_guessed=0,
requested_server_name='facebook.com',
client_fingerprint='bfcc1a3891601edb4f137ab7ab25b840',
server_fingerprint='2d1eb5817ece335c24904f516ad5da12',
user_agent='',
content_type='')
Post-mortem statistical flow features extraction
NFStream performs 48 post mortem flow statistical features extraction which include detailed TCP flags analysis, minimum, mean, maximum and standard deviation of both packet size and interarrival time in each direction.
from nfstream import NFStreamer
my_streamer = NFStreamer(source="facebook.pcap",
# Disable L7 dissection for readability purpose.
n_dissections=0,
statistical_analysis=True)
for flow in my_streamer:
print(flow)
# See documentation for each feature detailed description.
# https://www.nfstream.org/docs/api#nflow
NFlow(id=0,
expiration_id=0,
src_ip='192.168.43.18',
src_mac='30:52:cb:6c:9c:1b',
src_oui='30:52:cb',
src_port=52066,
dst_ip='66.220.156.68',
dst_mac='98:0c:82:d3:3c:7c',
dst_oui='98:0c:82',
dst_port=443,
protocol=6,
ip_version=4,
vlan_id=0,
tunnel_id=0,
bidirectional_first_seen_ms=1472393122365,
bidirectional_last_seen_ms=1472393123665,
bidirectional_duration_ms=1300,
bidirectional_packets=19,
bidirectional_bytes=5745,
src2dst_first_seen_ms=1472393122365,
src2dst_last_seen_ms=1472393123408,
src2dst_duration_ms=1043,
src2dst_packets=9,
src2dst_bytes=1345,
dst2src_first_seen_ms=1472393122668,
dst2src_last_seen_ms=1472393123665,
dst2src_duration_ms=997,
dst2src_packets=10,
dst2src_bytes=4400,
bidirectional_min_ps=66,
bidirectional_mean_ps=302.36842105263156,
bidirectional_stddev_ps=425.53315715259754,
bidirectional_max_ps=1454,
src2dst_min_ps=66,
src2dst_mean_ps=149.44444444444446,
src2dst_stddev_ps=132.20354676701294,
src2dst_max_ps=449,
dst2src_min_ps=66,
dst2src_mean_ps=440.0,
dst2src_stddev_ps=549.7164925870628,
dst2src_max_ps=1454,
bidirectional_min_piat_ms=0,
bidirectional_mean_piat_ms=72.22222222222223,
bidirectional_stddev_piat_ms=137.34994188549086,
bidirectional_max_piat_ms=398,
src2dst_min_piat_ms=0,
src2dst_mean_piat_ms=130.375,
src2dst_stddev_piat_ms=179.72036811192467,
src2dst_max_piat_ms=415,
dst2src_min_piat_ms=0,
dst2src_mean_piat_ms=110.77777777777777,
dst2src_stddev_piat_ms=169.51458475436397,
dst2src_max_piat_ms=409,
bidirectional_syn_packets=2,
bidirectional_cwr_packets=0,
bidirectional_ece_packets=0,
bidirectional_urg_packets=0,
bidirectional_ack_packets=18,
bidirectional_psh_packets=9,
bidirectional_rst_packets=0,
bidirectional_fin_packets=0,
src2dst_syn_packets=1,
src2dst_cwr_packets=0,
src2dst_ece_packets=0,
src2dst_urg_packets=0,
src2dst_ack_packets=8,
src2dst_psh_packets=4,
src2dst_rst_packets=0,
src2dst_fin_packets=0,
dst2src_syn_packets=1,
dst2src_cwr_packets=0,
dst2src_ece_packets=0,
dst2src_urg_packets=0,
dst2src_ack_packets=10,
dst2src_psh_packets=5,
dst2src_rst_packets=0,
dst2src_fin_packets=0)
Early statistical flow features extraction
NFStream performs early (up to 255 packets) flow statistical features extraction (also referred as SPLT analysis in the literature). It is summarized as a sequence a these packets directions, sizes and interarrival times.
from nfstream import NFStreamer
my_streamer = NFStreamer(source="facebook.pcap",
# We disable both l7 dissection and statistical analysis
# for readability purpose.
n_dissections=0,
statistical_analysis=False,
splt_analysis=10)
for flow in my_streamer:
print(flow)
# See documentation for each feature detailed description.
# https://www.nfstream.org/docs/api#nflow
NFlow(id=0,
expiration_id=0,
src_ip='192.168.43.18',
src_mac='30:52:cb:6c:9c:1b',
src_oui='30:52:cb',
src_port=52066,
dst_ip='66.220.156.68',
dst_mac='98:0c:82:d3:3c:7c',
dst_oui='98:0c:82',
dst_port=443,
protocol=6,
ip_version=4,
vlan_id=0,
tunnel_id=0,
bidirectional_first_seen_ms=1472393122365,
bidirectional_last_seen_ms=1472393123665,
bidirectional_duration_ms=1300,
bidirectional_packets=19,
bidirectional_bytes=5745,
src2dst_first_seen_ms=1472393122365,
src2dst_last_seen_ms=1472393123408,
src2dst_duration_ms=1043,
src2dst_packets=9,
src2dst_bytes=1345,
dst2src_first_seen_ms=1472393122668,
dst2src_last_seen_ms=1472393123665,
dst2src_duration_ms=997,
dst2src_packets=10,
dst2src_bytes=4400,
# The sequence of 10 first packet direction, size and inter arrival time.
splt_direction=[0, 1, 0, 0, 1, 1, 0, 1, 0, 1],
splt_ps=[74, 74, 66, 262, 66, 1454, 66, 1454, 66, 463],
splt_piat_ms=[0, 303, 0, 0, 313, 0, 0, 0, 0, 1])
Pandas export interface
NFStream natively supports Pandas as export interface.
# See documentation for more details.
# https://www.nfstream.org/docs/api#pandas-dataframe-conversion
from nfstream import NFStreamer
my_dataframe = NFStreamer(source='teams.pcap').to_pandas()[["src_ip",
"src_port",
"dst_ip",
"dst_port",
"protocol",
"bidirectional_packets",
"bidirectional_bytes",
"application_name"]]
my_dataframe.head(5)
CSV export interface
NFStream natively supports CSV file format as export interface.
# See documentation for more details.
# https://www.nfstream.org/docs/api#csv-file-conversion
flows_count = NFStreamer(source='facebook.pcap').to_csv(path=None,
flows_per_file=0,
columns_to_anonymize=[])
Extending NFStream
Didn't find a specific flow feature? add a plugin to NFStream in few lines:
from nfstream import NFPlugin
class MyCustomFeature(NFPlugin):
def on_init(self, packet, flow):
# flow creation with the first packet
if packet.raw_size == self.custom_size:
flow.udps.packet_with_custom_size = 1
else:
flow.udps.packet_with_custom_size = 0
def on_update(self, packet, flow):
# flow update with each packet belonging to the flow
if packet.raw_size == self.custom_size:
flow.udps.packet_with_custom_size += 1
extended_streamer = NFStreamer(source='facebook.pcap',
udps=MyCustomFeature(custom_size=555))
for flow in extended_streamer:
# see your dynamically created metric in generated flows
print(flow.udps.packet_with_custom_size)
Machine Learning models training and deployment
In the following example, we demonstrate a simplistic machine learning approach training and deployment. We suppose that we want to run a classification of Social Network category flows based on bidirectional_packets and bidirectional_bytes as features. For the sake of brevity, we decide to predict only at flow expiration stage.
Training the model
from nfstream import NFPlugin, NFStreamer
import numpy
from sklearn.ensemble import RandomForestClassifier
df = NFStreamer(source="training_traffic.pcap").to_pandas()
X = df[["bidirectional_packets", "bidirectional_bytes"]]
y = df["application_category_name"].apply(lambda x: 1 if 'SocialNetwork' in x else 0)
model = RandomForestClassifier()
model.fit(X, y)
ML powered streamer on live traffic
class ModelPrediction(NFPlugin):
def on_init(self, packet, flow):
flow.udps.model_prediction = 0
def on_expire(self, flow):
# You can do the same in on_update entrypoint and force expiration with custom id.
to_predict = numpy.array([flow.bidirectional_packets,
flow.bidirectional_bytes]).reshape((1,-1))
flow.udps.model_prediction = self.my_model.predict(to_predict)
ml_streamer = NFStreamer(source="eth0", udps=ModelPrediction(my_model=model))
for flow in ml_streamer:
print(flow.udps.model_prediction)
More NFPlugin examples and details are provided on the official documentation. You can also test NFStream without installation using our live demo notebook.
Building from sources
If you want to build NFStream from sources. Please read the installation guide.
Contributing
Please read Contributing for details on our code of conduct, and the process for submitting pull requests to us.
Ethics
NFStream is intended for network data research and forensics. Researchers and network data scientists can use these framework to build reliable datasets, train and evaluate network applied machine learning models. As with any packet monitoring tool, NFStream could potentially be misused. Do not run it on any network of which you are not the owner or the administrator.
Credits
Authors
The following people contributed to NFStream:
- Zied Aouini: Creator and main developer.
- Adrian Pekar: Testing, datasets generation and storage.
- Romain Picard: Several Plugins implementation.
- Radion Bikmukhamedov: Initial work on SPLT analysis NFPlugin.
Supporting organizations
The following organizations are supporting NFStream:
- SoftAtHome: Main supporter of NFStream development.
- Technical University of Košice: Hardware and infrastructure for datasets generation and storage.
- ntop: Technical support of nDPI integration.
License
This project is licensed under the LGPLv3 License - see the License file for details
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 Distributions
Built Distributions
File details
Details for the file nfstream-6.3.1-pp37-pypy37_pp73-manylinux1_x86_64.whl
.
File metadata
- Download URL: nfstream-6.3.1-pp37-pypy37_pp73-manylinux1_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: PyPy
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 PyPy/7.3.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8a9108f2d8faa42efd5f06df30384493dfe25148f6c808592ac75d520b81f5d |
|
MD5 | 4aa6c53a0de6aedef1c22a95603345bc |
|
BLAKE2b-256 | daeded6db8974bc694e3fd4ac56c4a3a1bfb18338fd5461c4baad18580d4429d |
File details
Details for the file nfstream-6.3.1-pp37-pypy37_pp73-macosx_10_14_x86_64.whl
.
File metadata
- Download URL: nfstream-6.3.1-pp37-pypy37_pp73-macosx_10_14_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, macOS 10.14+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 PyPy/7.3.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c53400889b2f843f8d66fc6d42604e4c6228adc99bfef12aacad824c7dbd05d |
|
MD5 | 08e57965646a186db606b0fb222d32f9 |
|
BLAKE2b-256 | 769bfe2c2cc392cb66945775aa08d5f3f0b6ca21de4f32c8bc0299b6897297b6 |
File details
Details for the file nfstream-6.3.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
.
File metadata
- Download URL: nfstream-6.3.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: PyPy
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 PyPy/7.3.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68c82daf864247b25097d13462c85a0e4c8449c7c77af9e2a9a9ceacc0b58747 |
|
MD5 | d0b1badd34efbbee3880899dcd803994 |
|
BLAKE2b-256 | 09faae3b93fb72c84ac07348d6f40f76f00a2ac5d3a8ec578c062077a021cc7c |
File details
Details for the file nfstream-6.3.1-pp36-pypy36_pp73-macosx_10_14_x86_64.whl
.
File metadata
- Download URL: nfstream-6.3.1-pp36-pypy36_pp73-macosx_10_14_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, macOS 10.14+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 PyPy/7.3.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 214ca1003ce73c101ed0cf861dc2d7b096f9d0f79b8c14bbe5b5b07c2acaeb7f |
|
MD5 | 66bce303a56fcab96ab3fe2d1448d9b3 |
|
BLAKE2b-256 | a4f59c8bc0bc793dc664eae16d1b5fa258a3d8499833c666d24134e4cbe547b4 |
File details
Details for the file nfstream-6.3.1-cp39-cp39-manylinux1_x86_64.whl
.
File metadata
- Download URL: nfstream-6.3.1-cp39-cp39-manylinux1_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.9
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd90b78732ee7efbff710b14b4beac4d2f6824f0e810a96d07fd6fa554939abb |
|
MD5 | 193cf3cc50c21251df9505651e3eb880 |
|
BLAKE2b-256 | 14419a688d34fa03b2b8ef7800586e8532d2814beb5dfe5649006e130d3bf733 |
File details
Details for the file nfstream-6.3.1-cp39-cp39-macosx_10_14_x86_64.whl
.
File metadata
- Download URL: nfstream-6.3.1-cp39-cp39-macosx_10_14_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, macOS 10.14+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31b5cf9660b126a7b08cab38ccaf9e04d5072b5686f665abf3ed076761d2c43e |
|
MD5 | 72fe5c9884662de5a3b4f4999508aeed |
|
BLAKE2b-256 | c8470440853e1a5c5d9df198093d3d4204a433949c1d9a9a57bcd61f48ceba9a |
File details
Details for the file nfstream-6.3.1-cp38-cp38-manylinux1_x86_64.whl
.
File metadata
- Download URL: nfstream-6.3.1-cp38-cp38-manylinux1_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d98e90fb2b75a2fbbfcb40f015710f58992b376d836b7ae76a3e9b2f1ad0b1f6 |
|
MD5 | b0ec3ea52cdc98db2b747c22804e371b |
|
BLAKE2b-256 | 58e26bb90647d8de22e9914a2def075a086d29074a0286b98aab950b2b47bf04 |
File details
Details for the file nfstream-6.3.1-cp38-cp38-macosx_10_14_x86_64.whl
.
File metadata
- Download URL: nfstream-6.3.1-cp38-cp38-macosx_10_14_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.8, macOS 10.14+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f85c743ca3326a31e56e1345abfc82bfe722da5cf9b59dd7f975a7f3349d7e79 |
|
MD5 | d880ac957ff0dedc84f4188454c736b4 |
|
BLAKE2b-256 | 0fbdb27c60b5021a5f29da69444385e5b758f3a3eb7bf82d2ddafbe98f238e91 |
File details
Details for the file nfstream-6.3.1-cp37-cp37m-manylinux1_x86_64.whl
.
File metadata
- Download URL: nfstream-6.3.1-cp37-cp37m-manylinux1_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18c8afcbb4e7e7f0c1d8e249428c7d0afce137a34b72d1805b3ca7c083b7a878 |
|
MD5 | 17b4a086dea653115f30ce1013d3f07a |
|
BLAKE2b-256 | dc5fb3d45850491810b11dcc303905f8b0f3e29462600ac7174a24b607bb2b5c |
File details
Details for the file nfstream-6.3.1-cp37-cp37m-macosx_10_14_x86_64.whl
.
File metadata
- Download URL: nfstream-6.3.1-cp37-cp37m-macosx_10_14_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.7m, macOS 10.14+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a3282c4524df581df92fec8a25a6e16223435fa9294e96c14cba84cd5ae75bb |
|
MD5 | e1080ec124b69c96a286bace58c69fab |
|
BLAKE2b-256 | cc0c58ec14ae68e651bf9580831c6b88e4a8d457b3f2f0d19e5bff86bc4072b5 |
File details
Details for the file nfstream-6.3.1-cp36-cp36m-manylinux1_x86_64.whl
.
File metadata
- Download URL: nfstream-6.3.1-cp36-cp36m-manylinux1_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.6m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.6.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bafa65932a93cf898ea3afdd7682262e4c048cd7240151de012c5403a7ca94d9 |
|
MD5 | 11cce4423b2ba28965b3d7df1dfaf535 |
|
BLAKE2b-256 | 797d34cf761c80af804472d224d00f3c505a93f69382987a974fbbc9ed7093b2 |
File details
Details for the file nfstream-6.3.1-cp36-cp36m-macosx_10_14_x86_64.whl
.
File metadata
- Download URL: nfstream-6.3.1-cp36-cp36m-macosx_10_14_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.6m, macOS 10.14+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.6.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c2efd795db9170055a3f00ef5053e41cce44020c2eb32d689c88a138deb0bf7 |
|
MD5 | 02935a1d07cb8d22b45b6965597c66d2 |
|
BLAKE2b-256 | 32b961c6976e6815b53f344cd39a794a1fc2019f78d5954ba1d5d0973a999726 |