diff --git a/pycatsniffer_bv3/dissectors/README.md b/pycatsniffer_bv3/dissectors/README.md new file mode 100644 index 0000000..42357bb --- /dev/null +++ b/pycatsniffer_bv3/dissectors/README.md @@ -0,0 +1,14 @@ +# About our dissectors +## Lua +The Lua version of our dissector is designed for development purposes. If you want to experiment with custom builds or make modifications, this is the version to use. +## Compliled +Our compiled dissector is built specifically for Wireshark version 4.4.0. If you need to compile it for an older version of Wireshark, you will need to do so manually. For guidance, visit our [Catsniffer Wireshark repo](https://github.com/ElectronicCats/CatSniffer-Wireshark). +This version is more stable than the Lua version and offers faster processing times. + +You need to add to the main path of Wireshark inside the **epan** folder: +### Files +- **Macos**: catsniffer.so +- **Windows**: catsniffer.dll +- **Linux**: catsniffer.so + +> Take care, linux and macos file extension are the same but different file size. diff --git a/pycatsniffer_bv3/dissectors/linux/catsniffer.so b/pycatsniffer_bv3/dissectors/linux/catsniffer.so new file mode 100644 index 0000000..b01e40f Binary files /dev/null and b/pycatsniffer_bv3/dissectors/linux/catsniffer.so differ diff --git a/pycatsniffer_bv3/dissectors/mac/catsniffer.so b/pycatsniffer_bv3/dissectors/mac/catsniffer.so new file mode 100755 index 0000000..d3ef8ea Binary files /dev/null and b/pycatsniffer_bv3/dissectors/mac/catsniffer.so differ diff --git a/pycatsniffer_bv3/dissectors/windows/catsniffer.dll b/pycatsniffer_bv3/dissectors/windows/catsniffer.dll new file mode 100644 index 0000000..8ae1fbf Binary files /dev/null and b/pycatsniffer_bv3/dissectors/windows/catsniffer.dll differ