<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Giuliano Bellini</title>
    <description>The latest articles on DEV Community by Giuliano Bellini (@gyulyvgc).</description>
    <link>https://dev.to/gyulyvgc</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F977953%2F4ada9043-7b5a-4707-9b9f-4952f6c2e2ff.jpeg</url>
      <title>DEV Community: Giuliano Bellini</title>
      <link>https://dev.to/gyulyvgc</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/gyulyvgc"/>
    <language>en</language>
    <item>
      <title>Announcing Sniffnet v1.4: introduced PCAP files import — it’s 2X faster than Wireshark!</title>
      <dc:creator>Giuliano Bellini</dc:creator>
      <pubDate>Sat, 28 Jun 2025 10:55:22 +0000</pubDate>
      <link>https://dev.to/gyulyvgc/announcing-sniffnet-v14-introduced-pcap-files-import-its-2x-faster-than-wireshark-476l</link>
      <guid>https://dev.to/gyulyvgc/announcing-sniffnet-v14-introduced-pcap-files-import-its-2x-faster-than-wireshark-476l</guid>
      <description>&lt;p&gt;I'm delighted to announce that &lt;strong&gt;Sniffnet v1.4&lt;/strong&gt; is finally available!&lt;/p&gt;

&lt;p&gt;For those of you that still don't know it, Sniffnet is an open-source, cross-platform, Rust-based application enabling you to &lt;strong&gt;comfortably monitor Internet traffic&lt;/strong&gt; (&lt;a href="https://sniffnet.net" rel="noopener noreferrer"&gt;official website&lt;/a&gt; | &lt;a href="https://github.com/GyulyVGC/sniffnet" rel="noopener noreferrer"&gt;GitHub repository&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;This major release brings a bunch of improvements and fixes, making Sniffnet more powerful and reliable than ever before.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu9q43eyv70bb3d8fhcu5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu9q43eyv70bb3d8fhcu5.png" alt="Overview Page" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;One of the most exciting new features is the ability to &lt;strong&gt;process network data from PCAP files&lt;/strong&gt; in addition to network adapters.&lt;/p&gt;

&lt;p&gt;PCAP (Packet Capture) is a standardized file format for storing network traffic data, widely used by many renowned network analysis tools, including &lt;em&gt;tcpdump&lt;/em&gt; and &lt;em&gt;Wireshark&lt;/em&gt; (the de-facto standard when it comes to network packet analyzers).&lt;br&gt;&lt;br&gt;
Supporting PCAP files import not only makes Sniffnet fully compatible with other network monitoring tools, but also enables to inspect historical data, which is crucial for &lt;strong&gt;troubleshooting and network forensics&lt;/strong&gt;.&lt;br&gt;&lt;/p&gt;

&lt;p&gt;It takes just about 25 seconds for Sniffnet to process a 1.6 GB file (2.6 million packets) on an 8-years old MacBook Air (1,8 GHz Dual-Core Intel Core i5).&lt;br&gt;&lt;br&gt;
This corresponds to more than 100k packets per second, making it &lt;strong&gt;2.2 times faster than Wireshark&lt;/strong&gt; on the same machine, which takes about 55 seconds to process the file.&lt;/p&gt;

&lt;p&gt;Not only Sniffnet is faster, but it also allows to &lt;strong&gt;preview and interact with the data while it's being processed&lt;/strong&gt;, as opposed to Wireshark that requires the whole file to be parsed before displaying any information.&lt;br&gt;&lt;br&gt;
This is a notable feature, especially for large files, as it permits you to start examining the traffic immediately, without waiting for the entire file to be read.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;But... how is Sniffnet this fast?&lt;/em&gt;&lt;br&gt;&lt;/p&gt;

&lt;p&gt;Part of the reason is that Sniffnet is based on the Rust programming language (well-known for its efficiency), but this doesn't tell the whole story.&lt;br&gt;&lt;br&gt;
In fact Wireshark is written in C that, despite not being as safe as Rust, is still characterized by top-tier performance.&lt;br&gt;&lt;br&gt;
Additionally, Sniffnet uses the &lt;a href="https://github.com/rust-pcap/pcap" rel="noopener noreferrer"&gt;&lt;em&gt;pcap&lt;/em&gt;&lt;/a&gt; crate to process data, which is just a Rust binding library to &lt;a href="https://github.com/the-tcpdump-group/libpcap" rel="noopener noreferrer"&gt;&lt;em&gt;libpcap&lt;/em&gt;&lt;/a&gt; (the same underlying engine used by Wireshark).&lt;br&gt;&lt;/p&gt;

&lt;p&gt;What really sets Sniffnet apart is that it takes a &lt;strong&gt;different approach to process network data&lt;/strong&gt;: instead of parsing the full packets' payloads, it focuses on extracting only the most relevant fields from the packets' headers, such as IP addresses, ports, and protocols.&lt;br&gt;&lt;br&gt;
This minimal amount of information is then used to infer other details like countries, domain names, autonomous systems names, upper layer services, and more.&lt;br&gt;&lt;br&gt;
Considering that nowadays more than &lt;a href="https://transparencyreport.google.com/https/overview" rel="noopener noreferrer"&gt;90% of the web traffic uses TLS&lt;/a&gt;, this strategy enables having huge performance gains without losing much relevant information: if payloads are encrypted, no meaningful data can be discerned from them anyway.&lt;br&gt;&lt;/p&gt;




&lt;p&gt;Besides supporting PCAP files, Sniffnet 1.4 introduces several other features, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;support for &lt;strong&gt;ARP&lt;/strong&gt; protocol&lt;/li&gt;
&lt;li&gt;a &lt;strong&gt;donut chart&lt;/strong&gt; reporting overall traffic statistics&lt;/li&gt;
&lt;li&gt;identification and tagging of &lt;strong&gt;unassigned/reserved "bogon" IP addresses&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;new default &lt;strong&gt;themes&lt;/strong&gt; based on palettes optimized for Accessibility&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;enhanced notifications&lt;/strong&gt; including more details about each event&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4bby0k6i6vx80vfc2d38.png" class="article-body-image-wrapper"&gt;&lt;img alt="" title="Notifications page" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4bby0k6i6vx80vfc2d38.png" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;These are just some of the most relevant changes introduced in this release.&lt;br&gt;&lt;br&gt;
For more details, you can check the &lt;a href="https://github.com/GyulyVGC/sniffnet/releases/tag/v1.4.0" rel="noopener noreferrer"&gt;release page&lt;/a&gt; on GitHub.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>rust</category>
      <category>networking</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Sniffnet 1.3 released!</title>
      <dc:creator>Giuliano Bellini</dc:creator>
      <pubDate>Mon, 08 Apr 2024 15:38:51 +0000</pubDate>
      <link>https://dev.to/gyulyvgc/sniffnet-13-released-3f3a</link>
      <guid>https://dev.to/gyulyvgc/sniffnet-13-released-3f3a</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/GyulyVGC/sniffnet" rel="noopener noreferrer"&gt;Sniffnet&lt;/a&gt; is an open source, Rust-based &lt;strong&gt;network monitoring tool&lt;/strong&gt; I’ve been working on for almost two years now.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh5rts7dcswdwc7g1ygql.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh5rts7dcswdwc7g1ygql.png" alt="Overview page" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Exactly 8 months after the previous release, I’m excited to share that today Sniffnet &lt;a href="https://github.com/GyulyVGC/sniffnet/releases/tag/v1.3.0" rel="noopener noreferrer"&gt;v1.3.0&lt;/a&gt; has been published.&lt;/p&gt;

&lt;p&gt;This release introduces several long requested features, such as &lt;strong&gt;export of PCAP files&lt;/strong&gt;, support for &lt;strong&gt;ICMP&lt;/strong&gt;, detection of more &lt;strong&gt;upper layer services&lt;/strong&gt;, and other functionalities to improve the overall user experience, such as the new &lt;strong&gt;thumbnail mode&lt;/strong&gt; and the possibility to &lt;strong&gt;totally customize&lt;/strong&gt; the application color palette.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1yxt1rwsn4mmbbgjdfar.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1yxt1rwsn4mmbbgjdfar.png" alt="Thumbnail mode" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I’ve also dedicated some efforts to enhance Sniffnet documentation and I’ve come up with a complete &lt;strong&gt;user manual&lt;/strong&gt; hosted on &lt;a href="https://github.com/GyulyVGC/sniffnet/wiki" rel="noopener noreferrer"&gt;GitHub Wiki&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>rust</category>
      <category>opensource</category>
      <category>networking</category>
      <category>news</category>
    </item>
    <item>
      <title>My Open Source project has been selected for the GitHub Accelerator Program and I'll be working on it full-time!</title>
      <dc:creator>Giuliano Bellini</dc:creator>
      <pubDate>Thu, 13 Apr 2023 13:32:57 +0000</pubDate>
      <link>https://dev.to/gyulyvgc/my-open-source-project-has-been-selected-for-the-github-accelerator-program-and-ill-be-working-on-it-full-time-4am9</link>
      <guid>https://dev.to/gyulyvgc/my-open-source-project-has-been-selected-for-the-github-accelerator-program-and-ill-be-working-on-it-full-time-4am9</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/GyulyVGC/sniffnet" rel="noopener noreferrer"&gt;&lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FGyulyVGC%2Fsniffnet%2Fblob%2Fmain%2Fresources%2Frepository%2Fheader_repository.png%3Fraw%3Dtrue" width="1280" height="550"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/GyulyVGC/sniffnet" rel="noopener noreferrer"&gt;Sniffnet&lt;/a&gt;, a network analysis tool I'm working on, has &lt;strong&gt;grown a lot&lt;/strong&gt; during the past months, and it’s been a pleasure for me to spend most of my spare time on its development.&lt;br&gt;
I'm not gonna lie: passing hours and hours on this project has become my favorite hobby lately.&lt;br&gt;
&lt;br&gt;I can’t deny that sometimes &lt;strong&gt;it’s been hard&lt;/strong&gt; to balance Sniffnet’s development with the daily University routine, made of never-ending lectures, group projects, deliveries, and home study. &lt;br&gt;
I often ended up coding late (I mean &lt;em&gt;very&lt;/em&gt; late) at night or skipping meals/lectures, since 24 hours a day never seemed enough.&lt;br&gt;
Seeing Sniffnet getting traction and evolving, improving day after day, motivated me to &lt;strong&gt;keep pushing&lt;/strong&gt; despite the obstacles along the way.&lt;br&gt;
&lt;br&gt;&lt;strong&gt;Long story short&lt;/strong&gt;: having more time to dedicate to open-source was one of my primary wishes (and needs 😅).&lt;/p&gt;

&lt;p&gt;

&lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fuser-images.githubusercontent.com%2F100347457%2F227869349-cc588f0f-13bf-45e4-aaf6-b55a5c641191.png" width="800" height="2"&gt;

&lt;/p&gt;

&lt;p&gt;&lt;a href="https://accelerator.github.com" rel="noopener noreferrer"&gt;&lt;br&gt;
&lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fuser-images.githubusercontent.com%2F100347457%2F230674800-c4bf0556-c1de-4bc6-aef3-aab9dae5204f.png" width="456" height="447"&gt;&lt;br&gt;
&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Today, it’s such a joy for me to announce that &lt;strong&gt;Sniffnet has been selected for the GitHub Accelerator Program&lt;/strong&gt; 🎉&lt;br&gt;
&lt;br&gt;The &lt;a href="https://accelerator.github.com" rel="noopener noreferrer"&gt;GitHub Accelerator&lt;/a&gt; is a program to pioneer new ways for developers to sustainably work on their &lt;strong&gt;open-source projects full-time&lt;/strong&gt;.&lt;br&gt;
20 promising and influential open-source projects &lt;a href="https://github.blog/2023-04-12-github-accelerator-our-first-cohort-and-whats-next/" rel="noopener noreferrer"&gt;have been elected&lt;/a&gt;, out of more than a thousand total applicants.&lt;br&gt;
The maintainers of such projects will participate in a 10-week program receiving an initial &lt;strong&gt;sponsorship&lt;/strong&gt; as well as &lt;strong&gt;mentorship&lt;/strong&gt; from open-source leaders and enterprise partners on how to grow software projects and build durable streams of funding.&lt;br&gt;
&lt;br&gt;This means that during the next few months I’ll be able to &lt;strong&gt;work on Sniffnet full-time&lt;/strong&gt;, with the aspiration to bring it to the next level.&lt;br&gt;
I’ve lots of ideas for new features and improvements and I’m looking forward to implementing them all 😁&lt;/p&gt;

&lt;p&gt;

&lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fuser-images.githubusercontent.com%2F100347457%2F227869349-cc588f0f-13bf-45e4-aaf6-b55a5c641191.png" width="800" height="2"&gt;

&lt;/p&gt;

&lt;p&gt;

&lt;img alt=""&gt;

&lt;/p&gt;

&lt;p&gt;Turning such a huge passion into a full-time job is the best thing I could’ve ever asked for.&lt;br&gt;
I truly wish that this journey will continue even after the 10 weeks of the program, with the hope of working on open-source for my &lt;strong&gt;entire career&lt;/strong&gt;.&lt;br&gt;
&lt;br&gt;I believe that more and more programmers deserve to have opportunities like this one, and I hope the Accelerator will pave the way to a &lt;strong&gt;brighter perspective for the open-source community&lt;/strong&gt;.&lt;br&gt;
&lt;br&gt;I can’t wait to see what the future has in store, and I feel blessed to have such an amazing occasion.&lt;br&gt;
I’ll do my best to get the most out of this experience 🌟&lt;/p&gt;

&lt;p&gt;&lt;br&gt;
&lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fuser-images.githubusercontent.com%2F100347457%2F231460175-6a0263d8-66d3-46e2-be61-2b35b912df24.jpg" width="800" height="600"&gt;&lt;br&gt;
&lt;/p&gt;

</description>
      <category>github</category>
      <category>opensource</category>
      <category>rust</category>
      <category>programming</category>
    </item>
    <item>
      <title>Sniffnet: monitor your network traffic with ease - New Release v1.1.0</title>
      <dc:creator>Giuliano Bellini</dc:creator>
      <pubDate>Tue, 07 Feb 2023 21:00:52 +0000</pubDate>
      <link>https://dev.to/gyulyvgc/sniffnet-monitor-your-network-traffic-with-ease-new-release-v110-4khk</link>
      <guid>https://dev.to/gyulyvgc/sniffnet-monitor-your-network-traffic-with-ease-new-release-v110-4khk</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/GyulyVGC/sniffnet" rel="noopener noreferrer"&gt;Sniffnet&lt;/a&gt; is a simple yet insightful application to let you have a glance into your network traffic in a straightforward and appealing way.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4wgq9e7y2q3r4z4wxcsl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4wgq9e7y2q3r4z4wxcsl.png" alt="Overview" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Today it has been updated to version 1.1.0, which introduces several new functionalities:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🌍 Added Geolocation of the remote IP addresses&lt;/li&gt;
&lt;li&gt;⭐ Implemented the possibility of marking a group of connections as favorites and added favorites view to the report&lt;/li&gt;
&lt;li&gt;🔉 Added Custom Notifications to inform the user when defined network events occur:

&lt;ul&gt;
&lt;li&gt;data intensity exceeded a defined packets per second rate&lt;/li&gt;
&lt;li&gt;data intensity exceeded a defined bytes per second rate&lt;/li&gt;
&lt;li&gt;new data are exchanged from one of the favorite connections&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fuser-images.githubusercontent.com%2F100347457%2F216972251-41a413e5-89f7-4c8c-b41b-a291470cba59.png" class="article-body-image-wrapper"&gt;&lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fuser-images.githubusercontent.com%2F100347457%2F216972251-41a413e5-89f7-4c8c-b41b-a291470cba59.png" width="800" height="500"&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;⚙️ Added Settings pages to configure the state of the application (persistently stored in a configuration file):

&lt;ul&gt;
&lt;li&gt;customise notifications&lt;/li&gt;
&lt;li&gt;choose between 4 different application styles&lt;/li&gt;
&lt;li&gt;set the application language (this release introduces the Italian language 🇮🇹, and &lt;a href="https://github.com/GyulyVGC/sniffnet/issues/60" rel="noopener noreferrer"&gt;more languages will be supported soon&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fuser-images.githubusercontent.com%2F100347457%2F216972254-10d0c9fd-34eb-43f4-94dd-61e882bcc364.png" class="article-body-image-wrapper"&gt;&lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fuser-images.githubusercontent.com%2F100347457%2F216972254-10d0c9fd-34eb-43f4-94dd-61e882bcc364.png" width="800" height="500"&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;Feedbacks and comments are warmly welcomed! Have a good day!&lt;/p&gt;

</description>
      <category>watercooler</category>
    </item>
    <item>
      <title>Comfortably monitor your internet traffic with Sniffnet</title>
      <dc:creator>Giuliano Bellini</dc:creator>
      <pubDate>Wed, 23 Nov 2022 19:39:52 +0000</pubDate>
      <link>https://dev.to/gyulyvgc/comfortably-monitor-your-internet-traffic-with-sniffnet-56b</link>
      <guid>https://dev.to/gyulyvgc/comfortably-monitor-your-internet-traffic-with-sniffnet-56b</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/GyulyVGC/sniffnet" rel="noopener noreferrer"&gt;Sniffnet&lt;/a&gt; is a simple yet insightful application to let you have a glance into your network traffic in a straightforward and appealing way.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2rfrs3uo3gxgkl85077k.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2rfrs3uo3gxgkl85077k.gif" alt="Image description" width="720" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Sniffnet lets you filter and analyse your network traffic providing useful information.&lt;/p&gt;

&lt;p&gt;The application is supported on MacOS, Windows and Linux.&lt;/p&gt;

</description>
      <category>rust</category>
      <category>github</category>
      <category>opensource</category>
      <category>analytics</category>
    </item>
  </channel>
</rss>
