mirror of
https://github.com/raphaeIl/Novaria.git
synced 2025-12-13 15:04:36 +01:00
basic PcapParser
This commit is contained in:
24
Novaria.PcapParser/Program.cs
Normal file
24
Novaria.PcapParser/Program.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using Novaria.Common.Core;
|
||||
using Novaria.Common.Crypto;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
||||
namespace Novaria.PcapParser
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
PcapParser pcapParser = new PcapParser("first_instant_join.json");
|
||||
|
||||
pcapParser.SavePackets("parsed_packets.json");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user