-
Notifications
You must be signed in to change notification settings - Fork 1
/
Form2.vb
448 lines (406 loc) · 18.2 KB
/
Form2.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
Imports System.IO
Imports System.Net
Imports System.Text.RegularExpressions
Imports System.Threading
Public Class Form2
Private Property pageready As Boolean = False
Private trd As Thread
Dim count As Integer = 0
Dim linea As String = ""
Private Sub Form2_Load(sender As Object, e As EventArgs) Handles MyBase.Load
CheckForIllegalCrossThreadCalls = False
BackgroundWorker1.WorkerSupportsCancellation = True
End Sub
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
cbHideMyName.ForeColor = Color.Black
cbNNTIME.ForeColor = Color.Black
cbPremProxy.ForeColor = Color.Black
cbFreeProxyList2.ForeColor = Color.Black
cbSpysru.ForeColor = Color.Black
cbHTTPtunnel.ForeColor = Color.Black
Me.Cursor = Cursors.AppStarting
Progress.Maximum = 0
' ProgressBar Total
If cbHideMyName.Checked = True Then
Progress.Maximum = Progress.Maximum + 10
End If
If cbNNTIME.Checked = True Then
Progress.Maximum = Progress.Maximum + 10
End If
If cbPremProxy.Checked = True Then
Progress.Maximum = Progress.Maximum + 10
End If
If cbFreeProxyList2.Checked = True Then
Progress.Maximum = Progress.Maximum + 10
End If
If cbSpysru.Checked = True Then
Progress.Maximum = Progress.Maximum + 10
End If
If cbHTTPtunnel.Checked = True Then
Progress.Maximum = Progress.Maximum + 10
End If
Button1.Enabled = False
lbCountProxys.Text = "0"
Progress.Value = 0
If cbHideMyName.Checked = True Then
WebBrowser1.Navigate("https://hidemy.name/es/proxy-list/")
WaitForPageLoad()
WebBrowser1.Document.ExecCommand("SelectAll", True, vbNull)
WebBrowser1.Document.ExecCommand("Copy", False, vbNull)
Dim sourceCode As String = ""
sourceCode = Clipboard.GetText
sourceCode = sourceCode.Replace$(vbCrLf, "").Replace$(" ", ":")
Dim matches As MatchCollection = Regex.Matches(sourceCode, "\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}:\d{1,5}")
For Each m As Match In matches ' Loop over matches.
For Each c As Capture In m.Captures ' Loop over captures.
ListView1.Items.Add(c.Value)
Next
Next
Clipboard.Clear()
cbHideMyName.ForeColor = Color.Green
Progress.Value = Progress.Value + 10
lbCountProxys.Text = ListView1.Items.Count
End If
If cbNNTIME.Checked = True Then
WebBrowser1.Navigate("http://nntime.com/")
WaitForPageLoad()
WebBrowser1.Document.ExecCommand("SelectAll", True, vbNull)
WebBrowser1.Document.ExecCommand("Copy", False, vbNull)
Dim sourceCode As String = ""
sourceCode = Clipboard.GetText
sourceCode = sourceCode.Replace$(vbCrLf, "").Replace$(" ", ":").Replace$("1:2:3:4:5", "").Replace$("6:7:8:9:10", "").Replace$("11:12:13:14:15", "")
Dim matches As MatchCollection = Regex.Matches(sourceCode, "\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}:\d{1,5}")
For Each m As Match In matches ' Loop over matches.
For Each c As Capture In m.Captures ' Loop over captures.
ListView1.Items.Add(c.Value)
Next
Next
Clipboard.Clear()
cbNNTIME.ForeColor = Color.Green
Progress.Value = Progress.Value + 10
lbCountProxys.Text = ListView1.Items.Count
End If
If cbFreeProxyList2.Checked = True Then
WebBrowser1.Navigate("https://free-proxy-list.net/")
WaitForPageLoad()
WebBrowser1.Document.ExecCommand("SelectAll", True, vbNull)
WebBrowser1.Document.ExecCommand("Copy", False, vbNull)
Dim sourceCode As String = ""
sourceCode = Clipboard.GetText
sourceCode = sourceCode.Replace$(vbCrLf, "").Replace$(" ", ":")
Dim matches As MatchCollection = Regex.Matches(sourceCode, "\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}:\d{1,5}")
For Each m As Match In matches ' Loop over matches.
For Each c As Capture In m.Captures ' Loop over captures.
ListView1.Items.Add(c.Value)
Next
Next
Clipboard.Clear()
cbFreeProxyList2.ForeColor = Color.Green
Progress.Value = Progress.Value + 10
lbCountProxys.Text = ListView1.Items.Count
End If
If cbSpysru.Checked = True Then
WebBrowser1.Navigate("http://spys.ru/en/anonymous-proxy-list/")
WaitForPageLoad()
WebBrowser1.Document.ExecCommand("SelectAll", True, vbNull)
WebBrowser1.Document.ExecCommand("Copy", False, vbNull)
Dim sourceCode As String = ""
sourceCode = Clipboard.GetText
sourceCode = sourceCode.Replace$(vbCrLf, "").Replace$(" ", "-")
Dim matches As MatchCollection = Regex.Matches(sourceCode, "\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}:\d{1,5}")
For Each m As Match In matches ' Loop over matches.
For Each c As Capture In m.Captures ' Loop over captures.
ListView1.Items.Add(c.Value)
Next
Next
Clipboard.Clear()
cbSpysru.ForeColor = Color.Green
Progress.Value = Progress.Value + 10
lbCountProxys.Text = ListView1.Items.Count
End If
If cbHTTPtunnel.Checked = True Then
WebBrowser1.Navigate("http://www.httptunnel.ge/ProxyListForFree.aspx")
WaitForPageLoad()
WebBrowser1.Document.ExecCommand("SelectAll", True, vbNull)
WebBrowser1.Document.ExecCommand("Copy", False, vbNull)
Dim sourceCode As String = ""
sourceCode = Clipboard.GetText
sourceCode = sourceCode.Replace$(vbCrLf, "").Replace$("2017", "").Replace$(" ", ":").Replace$("/", "&&&&")
Dim matches As MatchCollection = Regex.Matches(sourceCode, "\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}:\d{1,5}")
For Each m As Match In matches ' Loop over matches.
For Each c As Capture In m.Captures ' Loop over captures.
ListView1.Items.Add(c.Value)
Next
Next
Clipboard.Clear()
cbHTTPtunnel.ForeColor = Color.Green
Progress.Value = Progress.Value + 10
lbCountProxys.Text = ListView1.Items.Count
End If
If cbPremProxy.Checked = True Then
WebBrowser1.Navigate("https://premproxy.com/proxy/")
WaitForPageLoad()
WebBrowser1.Document.ExecCommand("SelectAll", True, vbNull)
WebBrowser1.Document.ExecCommand("Copy", False, vbNull)
Dim sourceCode As String = ""
sourceCode = Clipboard.GetText
sourceCode = sourceCode.Replace$(vbCrLf, "")
Dim matches As MatchCollection = Regex.Matches(sourceCode, "\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}:\d{1,5}")
For Each m As Match In matches ' Loop over matches.
For Each c As Capture In m.Captures ' Loop over captures.
ListView1.Items.Add(c.Value)
Next
Next
Clipboard.Clear()
cbPremProxy.ForeColor = Color.Green
Progress.Value = Progress.Value + 10
lbCountProxys.Text = ListView1.Items.Count
End If
Button1.Enabled = True
lbCountProxys.Text = ListView1.Items.Count
Me.Cursor = Cursors.Default
End Sub
Private Sub WaitForPageLoad()
AddHandler WebBrowser1.DocumentCompleted, New WebBrowserDocumentCompletedEventHandler(AddressOf PageWaiter)
While Not pageready
Application.DoEvents()
End While
pageready = False
End Sub
Private Sub PageWaiter(ByVal sender As Object, ByVal e As WebBrowserDocumentCompletedEventArgs)
If WebBrowser1.ReadyState = WebBrowserReadyState.Complete Then
pageready = True
RemoveHandler WebBrowser1.DocumentCompleted, New WebBrowserDocumentCompletedEventHandler(AddressOf PageWaiter)
End If
End Sub
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
End Sub
Private Sub ListView1_DoubleClick(sender As Object, e As EventArgs) Handles ListView1.DoubleClick
For i As Integer = 0 To ListView1.SelectedItems.Count - 1
Form1.txtIP.Text = Me.ListView1.SelectedItems.Item(i).Text
Form1.btnApply.PerformClick() 'Connect
Me.BackgroundWorker1.CancelAsync()
Me.Close()
Next
End Sub
Private Sub cbSelect_CheckedChanged(sender As Object, e As EventArgs) Handles cbSelect.CheckedChanged
If cbSelect.Checked = True Then
cbHideMyName.Checked = True
cbNNTIME.Checked = True
cbPremProxy.Checked = True
cbFreeProxyList2.Checked = True
cbSpysru.Checked = True
cbHTTPtunnel.Checked = True
Else
cbHideMyName.Checked = False
cbNNTIME.Checked = False
cbPremProxy.Checked = False
cbFreeProxyList2.Checked = False
cbSpysru.Checked = False
cbHTTPtunnel.Checked = False
End If
End Sub
Private Sub CheckUplinkToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles CheckUplinkToolStripMenuItem.Click
CheckUplinkToolStripMenuItem.Enabled = False
Progress.Maximum = 100
Progress.Value = 0
trd = New Thread(AddressOf ThreadTask)
trd.IsBackground = True
trd.Start()
End Sub
Private Sub ThreadTask()
For i As Integer = 0 To ListView1.SelectedItems.Count - 1
Try
Dim NewProxy As New WebProxy(Me.ListView1.SelectedItems.Item(i).Text)
Dim request As WebRequest = WebRequest.Create("https://www.google.com")
Progress.Value = Progress.Value + 50
request.Proxy = NewProxy
request.Timeout = 5000
Dim response As HttpWebResponse = CType(request.GetResponse(), HttpWebResponse)
If (response.StatusCode = HttpStatusCode.OK) Then
Progress.Value = Progress.Value + 50
Me.ListView1.SelectedItems.Item(i).BackColor = Color.Green
Else
Progress.Value = Progress.Value + 50
Me.ListView1.SelectedItems.Item(i).BackColor = Color.Red
End If
Catch ex As Exception
Progress.Value = Progress.Value + 50
Me.ListView1.SelectedItems.Item(i).BackColor = Color.Red
End Try
CheckUplinkToolStripMenuItem.Enabled = True
Next
End Sub
Public Sub Verify(ProxyList As String)
Try
Dim NewProxy As New WebProxy(ProxyList)
Dim request As WebRequest = WebRequest.Create("https://www.google.com")
request.Proxy = NewProxy
request.Timeout = 5000
Dim response As HttpWebResponse = CType(request.GetResponse(), HttpWebResponse)
If (response.StatusCode = HttpStatusCode.OK) Then
MsgBox("ok")
Else
MsgBox("no")
End If
Catch ex As Exception
MsgBox("no")
End Try
End Sub
Private Sub CheckAllToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles CheckAllToolStripMenuItem.Click
Progress.Maximum = ListView1.Items.Count
Progress.Value = 0
linea = ListView1.Items.Item(count).Text
BackgroundWorker1.RunWorkerAsync()
End Sub
Private Sub BackgroundWorker1_DoWork(sender As Object, e As System.ComponentModel.DoWorkEventArgs) Handles BackgroundWorker1.DoWork
Try
Dim NewProxy As New WebProxy(linea)
Dim request As WebRequest = WebRequest.Create("http://www.google.com")
request.Proxy = NewProxy
request.Timeout = 10000
Dim response As HttpWebResponse = CType(request.GetResponse(), HttpWebResponse)
If (response.StatusCode = HttpStatusCode.OK) Then
ListView1.Items.Item(count).BackColor = Color.Green
ListView1.Items.Item(count).ForeColor = Color.White
Else
ListView1.Items.Item(count).BackColor = Color.Red
'request.KeepAlive = False
End If
Catch ex As Exception
Try
ListView1.Items.Item(count).BackColor = Color.Red
Catch
End Try
End Try
End Sub
Private Sub BackgroundWorker1_RunWorkerCompleted(sender As Object, e As System.ComponentModel.RunWorkerCompletedEventArgs) Handles BackgroundWorker1.RunWorkerCompleted
If count = ListView1.Items.Count - 1 Then
Try
count = 0
linea = ""
Progress.Value = ListView1.Items.Count
Catch
End Try
Else
Try
'Increment
count += 1
Progress.Value = Progress.Value + 1
linea = ListView1.Items.Item(count).Text
BackgroundWorker1.RunWorkerAsync()
Catch
End Try
End If
End Sub
Private Sub CSVToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles CSVToolStripMenuItem.Click
Dim dlg As New SaveFileDialog
dlg.Filter = "CSV files (*.CSV)|*.csv"
dlg.FilterIndex = 1
dlg.RestoreDirectory = True
If dlg.ShowDialog = Windows.Forms.DialogResult.OK Then
If ExportListViewToCSV(dlg.FileName, ListView1) Then
Process.Start(dlg.FileName)
End If
End If
End Sub
Public Function ExportListViewToCSV(ByVal filename As String, ByVal lv As ListView) As Boolean
Try
' Open output file
Dim os As New StreamWriter(filename)
' Write records
For i As Integer = 0 To lv.Items.Count - 1
For j As Integer = 0 To lv.Columns.Count - 1
os.Write(lv.Items(i).SubItems(j).Text + ";")
Next
os.WriteLine()
Next
os.Close()
Catch ex As Exception
' catch any errors
Return False
End Try
Return True
End Function
Private Sub CSVToolStripMenuItem1_Click(sender As Object, e As EventArgs) Handles CSVToolStripMenuItem1.Click
Dim ofd As New OpenFileDialog
If ofd.ShowDialog = Windows.Forms.DialogResult.OK AndAlso ofd.FileName <> "" Then
Try
Using reader As New Microsoft.VisualBasic.FileIO.TextFieldParser(ofd.FileName)
reader.TextFieldType = FileIO.FieldType.Delimited
reader.SetDelimiters(";")
While Not reader.EndOfData
Dim Fields() As String = reader.ReadFields
Dim item As New ListViewItem
item.Text = Fields(0)
For x = 1 To UBound(Fields)
item.SubItems.Add(Fields(x))
Next
ListView1.Items.Add(item)
End While
End Using
Catch ex As Exception
MessageBox.Show(Err.Description)
End Try
End If
End Sub
Private Sub TXTToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles TXTToolStripMenuItem.Click
Dim dlg As New SaveFileDialog
dlg.Filter = "TXT files (*.TXT)|*.txt"
dlg.FilterIndex = 1
dlg.RestoreDirectory = True
If dlg.ShowDialog = Windows.Forms.DialogResult.OK Then
Using file As New IO.StreamWriter(dlg.FileName, False)
Dim line As String = ""
For Each item As ListViewItem In Me.ListView1.Items
line = ""
For Each subitem As ListViewItem.ListViewSubItem In item.SubItems
line += subitem.Text '+ vbTab
Next
file.WriteLine(line)
Next
file.Close()
End Using
End If
Process.Start(dlg.FileName)
End Sub
Private Sub Form2_FormClosing(sender As Object, e As FormClosingEventArgs) Handles MyBase.FormClosing
Me.BackgroundWorker1.CancelAsync()
End Sub
Private Sub ClearToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles ClearToolStripMenuItem.Click
ListView1.Items.Clear()
End Sub
Private Sub TXTToolStripMenuItem1_Click(sender As Object, e As EventArgs) Handles TXTToolStripMenuItem1.Click
Dim openfile = New OpenFileDialog()
openfile.Filter = "Text (*.txt)|*.txt"
If (openfile.ShowDialog() = System.Windows.Forms.DialogResult.OK) Then
Dim myfile As String = openfile.FileName
Dim allLines As String() = File.ReadAllLines(myfile)
For Each line As String In allLines
ListView1.Items.Add(line)
Next
End If
End Sub
Private Sub RemoveToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles RemoveToolStripMenuItem.Click
' Remove IP Address : Port.
For i As Integer = ListView1.SelectedItems.Count - 1 To 0 Step -1
ListView1.SelectedItems(i).Remove()
lbCountProxys.Text = ListView1.Items.Count
Next
End Sub
Private Sub CopyToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles CopyToolStripMenuItem.Click
' Copy IP Address : Port to Clipboard.
For i As Integer = ListView1.SelectedItems.Count - 1 To 0 Step -1
My.Computer.Clipboard.SetText(ListView1.SelectedItems(i).Text)
Next
End Sub
Private Sub RemoveDownlinkToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles RemoveDownlinkToolStripMenuItem.Click
' Remove IP Address : Port Status: Downlink
For Each item As ListViewItem In Me.ListView1.Items
If item.BackColor = Color.Red Then
item.Remove()
lbCountProxys.Text = ListView1.Items.Count
End If
Next
End Sub
End Class