mirror of
https://github.com/raphaeIl/Novaria.git
synced 2025-12-12 14:34:38 +01:00
25 lines
479 B
C#
25 lines
479 B
C#
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");
|
|
}
|
|
}
|
|
|
|
|
|
}
|