Skip to content

Commit

Permalink
Bump version: 0.1.1 → 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
D3f0 committed Oct 25, 2018
1 parent e0458ce commit 258a2be
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
8 changes: 7 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,18 @@ Python package for packet filtering and manipulation using scapy
Features
--------

* TODO
* Define your filters in Python
* Pipe your output to Wireshark or TShark for visualization
* Manipulate the payloads using Python's 3 byte regxes
* Save results to pcap files
* Work in progress *live reload* of your filter file

Credits
-------

This project relies on the power of Scapy_ for either filtering or payload modification.
This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Scapy: https://scapy.net/
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
6 changes: 6 additions & 0 deletions docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@ Usage
To use pcapfilter commandline you need to provide pcap stdin and pcap stdout::

tcpdump -i en0 -s0 -w - | pcapfilter -vm myfilter.py | wireshark -k -i -

You can use ssh packet capture from your router and display it in `Wireshark`_ ::

ssh router "tcpdump -i eth1.2 -i br-lan -s0 -w - " | pcapfilter -vm main.py | wireshark -k -i -

.. _Wireshark: https://www.wireshark.org/
2 changes: 1 addition & 1 deletion pcapfilter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

__author__ = """Nahuel Defossé"""
__email__ = 'nahuel.defosse+pip@gmail.com'
__version__ = '0.1.1'
__version__ = '0.1.2'
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.1
current_version = 0.1.2
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/D3f0/pcapfilter',
version='0.1.1',
version='0.1.2',
zip_safe=False,
)

0 comments on commit 258a2be

Please sign in to comment.