Quellcode durchsuchen

Fixed filter application and removed lazy load (temporary).

bmallred vor 13 Jahren
Ursprung
Commit
7fc22a6f77
3 geänderte Dateien mit 33 neuen und 23 gelöschten Zeilen
  1. 19 22
      WhiteNoise/DeviceWorker.cs
  2. 14 1
      WhiteNoise/Main.cs
  3. BIN
      WhiteNoise/WhiteNoise.pidb

+ 19 - 22
WhiteNoise/DeviceWorker.cs

@ -83,25 +83,25 @@ namespace WhiteNoise
83 83
		{
84 84
			_file = new FileInfo("results.pcap");
85 85
			
86
			if (!lazyLoad)
87
			{
88
				this._devices = CaptureDeviceList.Instance;
89
			}
90
			
91 86
			this.Devices = new List<string>();
92 87
			this.Filter = "ip and tcp";
93 88
			this.Timeout = 1000;
94 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,16 +115,9 @@ namespace WhiteNoise
115 115
		{
116 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 119
			device.OnPacketArrival += new PacketArrivalEventHandler(Device_OnPacketArrival);
126
			device.Filter = this.Filter;
127
						
120
			
128 121
			// Open each device requested for scan.
129 122
			if (device is AirPcapDevice)
130 123
			{
@ -142,6 +135,9 @@ namespace WhiteNoise
142 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 141
			// Start capturing.
146 142
			device.StartCapture();
147 143
		}
@ -192,6 +188,7 @@ namespace WhiteNoise
192 188
		private static void Device_OnPacketArrival(object sender, CaptureEventArgs e)
193 189
		{
194 190
			CaptureFileWriterDevice writer = null;
191
			Debug.WriteLine("Received {0} bytes.", e.Packet.Data.Length);
195 192
			
196 193
			try
197 194
			{

+ 14 - 1
WhiteNoise/Main.cs

@ -3,8 +3,17 @@ using System.Diagnostics;
3 3
4 4
namespace WhiteNoise
5 5
{
6
	/// <summary>
7
	/// Main class.
8
	/// </summary>
6 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 17
		public static void Main (string[] args)
9 18
		{
10 19
			DeviceWorker devWorker = null;
@ -12,7 +21,7 @@ namespace WhiteNoise
12 21
			try
13 22
			{
14 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 26
				if (devWorker.Devices.Count < 1)
18 27
				{
@ -28,6 +37,7 @@ namespace WhiteNoise
28 37
					Console.WriteLine(item);
29 38
				}
30 39
				
40
				Console.WriteLine();
31 41
				Console.Write ("Device(s) to be captured (comma separated): ");
32 42
				string inputDevices = Console.ReadLine();
33 43
				
@ -39,6 +49,9 @@ namespace WhiteNoise
39 49
					devWorker.Filter = filter;
40 50
				}
41 51
				
52
				Console.WriteLine();
53
				Console.WriteLine("Capturing selected devices. Press any key to exit.");
54
				
42 55
				// Pull apart the request in an attempt to find the devices.
43 56
				foreach (string segment in inputDevices.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries))
44 57
				{

BIN
WhiteNoise/WhiteNoise.pidb