Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Pcap-splitter allows you to split a pcap file into subsets of pcap files based on sessions, flows, ip addresses, number of bytes, number of network packets...

License

NotificationsYou must be signed in to change notification settings

jdaniele71/pcap-splitter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Pcap-splitter allows you to split a.pcap file into subsets of.pcap files based on sessions, flows, ip addresses, number of bytes, number of network packets...

To perform these actions, Pcap-splitter makes use of the PcapSplitter tool belonging to the suitePcapPlusPlus.

Installation

System Requirements

For Pcap-splitter to work, the installation of the suite PcapPlusPlus is required in the system. To carry out the installation, you can follow the set of steps detailed below or make use of theinstallation manual.

sudo apt-get install libpcap-devgit clone https://github.com/seladb/PcapPlusPlus.git./configure-linux.shmake allsudo make install

You can also install PcapPlusPlus in any other operating system by downloadingthe binaries and adding them to the path.

Installation of Pcap-splitter

To install Pcap-splitter execute the following code:

pip install pcap-splitter

User's manual

Once PcapPlusPlus is installed in the operating system, you can start using pcap-splitter as shown below.

  • Example 1
>>>frompcap_splitter.splitterimportPcapSplitter>>>ps=PcapSplitter("network_traffic.pcap")>>>print(ps.split_by_session("dest_pcaps_folder"))Started...Finished.Readandwritten27290packetsto250files
  • Example 2
>>>frompcap_splitter.splitterimportPcapSplitter>>>ps=PcapSplitter("network_traffic.pcap")>>>print(ps.split_by_session("dest_pcaps_folder",pkts_bpf_filter="dst port 80"))Started...Finished.Readandwritten120packetsto11files
  • Example 3
>>>frompcap_splitter.splitterimportPcapSplitter>>>ps=PcapSplitter("network_traffic.pcap")>>>print(ps.split_by_count(100,"dest_pcaps_folder"))Started...Finished.Readandwritten27290packetsto273files

Relevant methods

split_by_size(self, size_bytes, dest_path, pkts_bpf_filter="")
Split files by size in bytes.

split_by_count(self, count_pkts, dest_path, pkts_bpf_filter="")
Split files by packet count.

split_by_client_ip(self, dest_path, pkts_bpf_filter="")
Split files by client IP, meaning all connections with the same client IP will be in the same file.

split_by_server_ip(self, dest_path, pkts_bpf_filter="")
split files by server IP, meaning all connections with the same server IP will be in the same file.

split_by_server_port(self, dest_path, pkts_bpf_filter="")
Split files by IP src and dst (2-tuple), meaning all connections with the same IPs will be in the same file.

split_by_ip_src_dst(self, dest_path, pkts_bpf_filter="")
Split files by IP src and dst (2-tuple), meaning all connections with the same IPs will be in the same file.

split_by_session(self, dest_path, pkts_bpf_filter="")
Split files by connection (5-tuple), meaning all packets of a connection will be in the same file.

split_by_filter(self, bpf_filter, dest_path, pkts_bpf_filter="")
Split file into two files: one that contains all packets matching the given BPF filter (file #0) and one that contains the rest of the packets (file #1).

split_by_round_robin(self, n_files, dest_path, pkts_bpf_filter="")
Split the file in a round-robin manner - each packet to a different file.

Contact

shramos(at)protonmail(dot)com

About

Pcap-splitter allows you to split a pcap file into subsets of pcap files based on sessions, flows, ip addresses, number of bytes, number of network packets...

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python100.0%

[8]ページ先頭

©2009-2025 Movatter.jp