私はhttp://www.codeproject.com/KB/IP/sharppcap.aspxのガイドに従って、認証を自動化するための単純なパケットスニファを実装してきましたが、フィルタリングのセクションにたどり着きました。これまでチュートリアルコードを調整する必要がありましたが、今は困惑しています。
私が受け取っているエラーは次のとおりです。
'PacketDotNet.TcpPacket.GetEncapsulated(PacketDotNet.Packet)'に最適なオーバーロードされたメソッドの一致には、いくつかの無効な引数があります
引数1:「SharpPcap.RawCapture」から「PacketDotNet.Packet」に変換できません
しかし、私はまだPacketDotNetへの言及を自分自身で行っていません(これまでのところすべてがSharpPcapでした)。
私がこれまでに持っているコード全体が含まれています。問題はdevice_OnPacketArrival()関数にあります。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using PacketDotNet;
using SharpPcap;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string ver = SharpPcap.Version.VersionString;
Console.WriteLine("SharpPcap {0}, Example1.IfList.cs", ver);
// Retrieve the device list
CaptureDeviceList devices = CaptureDeviceList.Instance;
// If no devices were found print an error
if (devices.Count < 1)
{
Console.WriteLine("No devices were found on this machine");
return;
}
// Extract a device from the list
ICaptureDevice device = devices[0];
// Register our handler function to the
// 'packet arrival' event
device.OnPacketArrival +=
new SharpPcap.PacketArrivalEventHandler(device_OnPacketArrival);
// Open the device for capturing
int readTimeoutMilliseconds = 1000;
device.Open(DeviceMode.Promiscuous, readTimeoutMilliseconds);
// tcpdump filter to capture only TCP/IP packets
string filter = "ip and tcp";
device.Filter = filter;
Console.WriteLine();
Console.WriteLine("-- The following tcpdump filter will be applied: \"{0}\"",
filter);
Console.WriteLine("-- Listening on {0}, hit 'Enter' to stop...",
device.Description);
// Start capturing packets indefinitely
device.Capture();
// Close the pcap device
// (Note: this line will never be called since
// we're capturing indefinitely
device.Close();
}
private static void device_OnPacketArrival(object sender, CaptureEventArgs e)
{
var tcp = TcpPacket.GetEncapsulated(e.Packet);
}
}
}