Browse Source

Fixed filter application and removed lazy load (temporary).

bmallred 13 years ago
parent
commit
7fc22a6f77
3 changed files with 33 additions and 23 deletions
  1. 19 22
      WhiteNoise/DeviceWorker.cs
  2. 14 1
      WhiteNoise/Main.cs
  3. BIN
      WhiteNoise/WhiteNoise.pidb

+ 19 - 22
WhiteNoise/DeviceWorker.cs

83
		{
83
		{
84
			_file = new FileInfo("results.pcap");
84
			_file = new FileInfo("results.pcap");
85
			
85
			
86
			if (!lazyLoad)
87
			{
88
				this._devices = CaptureDeviceList.Instance;
89
			}
90
			
91
			this.Devices = new List<string>();
86
			this.Devices = new List<string>();
92
			this.Filter = "ip and tcp";
87
			this.Filter = "ip and tcp";
93
			this.Timeout = 1000;
88
			this.Timeout = 1000;
94
			this.Version = SharpPcap.Version.VersionString;
89
			this.Version = SharpPcap.Version.VersionString;
95
			
90
			
96
			// Make a pretty list of devices.
97
			for (int i = 0; i < this._devices.Count; i++)
91
			if (!lazyLoad)
98
			{
92
			{
99
				this.Devices.Add(
100
					string.Format("{1}. {2}{0}", 
101
						Environment.NewLine, 
102
						i + 1, 
103
						this._devices[i].Description)
104
					);
93
				this._devices = CaptureDeviceList.Instance;
94
				
95
								// Make a pretty list of devices.
96
				for (int i = 0; i < this._devices.Count; i++)
97
				{
98
					this.Devices.Add(
99
						string.Format("{1}. {2}{0}", 
100
							Environment.NewLine, 
101
							i + 1, 
102
							this._devices[i].Description)
103
						);
104
				}
105
			}
105
			}
106
		}
106
		}
107
		
107
		
115
		{
115
		{
116
			var device = this._devices[deviceNumber - 1];
116
			var device = this._devices[deviceNumber - 1];
117
			
117
			
118
			//// NOTE: This may need to be placed elsewhere.
119
			//if (!this._captureDevices.Contains(device))
120
			//{
121
			//	this._captureDevices.Add(device);
122
			//}
123
			
124
			// Apply filter and event handler(s).
118
			// Add event handler(s).
125
			device.OnPacketArrival += new PacketArrivalEventHandler(Device_OnPacketArrival);
119
			device.OnPacketArrival += new PacketArrivalEventHandler(Device_OnPacketArrival);
126
			device.Filter = this.Filter;
127
						
120
			
128
			// Open each device requested for scan.
121
			// Open each device requested for scan.
129
			if (device is AirPcapDevice)
122
			if (device is AirPcapDevice)
130
			{
123
			{
142
				device.Open(DeviceMode.Promiscuous, this.Timeout);
135
				device.Open(DeviceMode.Promiscuous, this.Timeout);
143
			}
136
			}
144
			
137
			
138
			// Apply the filter *only* after the device is open.
139
			device.Filter = this.Filter;
140
			
145
			// Start capturing.
141
			// Start capturing.
146
			device.StartCapture();
142
			device.StartCapture();
147
		}
143
		}
192
		private static void Device_OnPacketArrival(object sender, CaptureEventArgs e)
188
		private static void Device_OnPacketArrival(object sender, CaptureEventArgs e)
193
		{
189
		{
194
			CaptureFileWriterDevice writer = null;
190
			CaptureFileWriterDevice writer = null;
191
			Debug.WriteLine("Received {0} bytes.", e.Packet.Data.Length);
195
			
192
			
196
			try
193
			try
197
			{
194
			{

+ 14 - 1
WhiteNoise/Main.cs

3
3
4
namespace WhiteNoise
4
namespace WhiteNoise
5
{
5
{
6
	/// <summary>
7
	/// Main class.
8
	/// </summary>
6
	public static class MainClass
9
	public static class MainClass
7
	{
10
	{
11
		/// <summary>
12
		/// The entry point of the program, where the program control starts and ends.
13
		/// </summary>
14
		/// <param name='args'>
15
		/// The command-line arguments.
16
		/// </param>
8
		public static void Main (string[] args)
17
		public static void Main (string[] args)
9
		{
18
		{
10
			DeviceWorker devWorker = null;
19
			DeviceWorker devWorker = null;
12
			try
21
			try
13
			{
22
			{
14
				// Initialize a new worker (this will throw an exception if no PCAP libraries are found).
23
				// Initialize a new worker (this will throw an exception if no PCAP libraries are found).
15
				devWorker = new DeviceWorker(lazyLoad: true);
24
				devWorker = new DeviceWorker();
16
			
25
			
17
				if (devWorker.Devices.Count < 1)
26
				if (devWorker.Devices.Count < 1)
18
				{
27
				{
28
					Console.WriteLine(item);
37
					Console.WriteLine(item);
29
				}
38
				}
30
				
39
				
40
				Console.WriteLine();
31
				Console.Write ("Device(s) to be captured (comma separated): ");
41
				Console.Write ("Device(s) to be captured (comma separated): ");
32
				string inputDevices = Console.ReadLine();
42
				string inputDevices = Console.ReadLine();
33
				
43
				
39
					devWorker.Filter = filter;
49
					devWorker.Filter = filter;
40
				}
50
				}
41
				
51
				
52
				Console.WriteLine();
53
				Console.WriteLine("Capturing selected devices. Press any key to exit.");
54
				
42
				// Pull apart the request in an attempt to find the devices.
55
				// Pull apart the request in an attempt to find the devices.
43
				foreach (string segment in inputDevices.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries))
56
				foreach (string segment in inputDevices.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries))
44
				{
57
				{

BIN
WhiteNoise/WhiteNoise.pidb