-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathhead_invoke_webrequest.ps1
494 lines (413 loc) · 18 KB
/
head_invoke_webrequest.ps1
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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
# https://echo.msk.ru/programs/code/2561795-echo/
# based on question: http://www.cyberforum.ru/powershell/thread2562775.html
# https://docs.microsoft.com/en-us/previous-versions/powershell/module/Microsoft.PowerShell.Utility/Invoke-WebRequest?view=powershell-3.0
# DisableKeepAlive
# see also: https://davidhamann.de/2019/04/12/powershell-invoke-webrequest-by-example/
# see also: https://powershell.org/forums/topic/converting-a-working-curl-to-powershell-invoke-webrequest/
# https://stackoverflow.com/questions/20259251/powershell-script-to-check-the-status-of-a-url
# https://codereview.stackexchange.com/questions/137826/multi-threading-with-webrequests-responses
# Powershell invoke-webrequest does not show the resource status as curl,
# because one has to specifically
# force invoke-webrequest to stop following redirects and also ignore the error:
# take care of
<#
invoke-webrequest : The request was aborted: Could not create SSL/TLS secure channel.
#>
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
[Net.ServicePointManager]::SecurityProtocol =
[Net.SecurityProtocolType]::Tls12 -bor `
[Net.SecurityProtocolType]::Tls11 -bor `
[Net.SecurityProtocolType]::Tls
[Net.ServicePointManager]::SecurityProtocol = 'tls12, tls11, tls'
# origin: https://stackoverflow.com/questions/41618766/powershell-invoke-webrequest-fails-with-ssl-tls-secure-channel
$url = 'https://www.slimjet.com/chrome/download-chrome.php?file=files%2F78.0.3904.97%2FChromeStandaloneSetup.exe'
# converted the standar curl command
# curl -I -k $url 2>/dev/null
# NOTE: redirection does not work verbatim:
# c:/tools/curl.exe -I -k $url 2>nul
# Redirection to 'nul' failed: FileStream will not open Win32 devices such as disk partitions and tape drives.
c:/tools/curl.exe -I -k $url
<#
HTTP/1.1 302 Moved Temporarily
Date: Sat, 28 Dec 2019 23:21:30 GMT
Server: Apache
location: http://www.slimjetbrowser.com/chrome/files/78.0.3904.97/ChromeStandaloneSetup.exe
Content-Type: text/html; charset=UTF-8
#>
$bad_head_request = invoke-webrequest -method Head -uri $url
$bad_head_request | select-object -expandproperty StatusCode
# 200
$bad_head_request | select-object -expandproperty Headers
<#
Key Value
--- -----
Connection keep-alive
CF-Cache-Status HIT
Age 121643
CF-RAY 54c748771f6fba82-ATL
Accept-Ranges bytes
Content-Length 58957736
Cache-Control max-age=86400
Content-Type application/x-msdownload
Date Sat, 28 Dec 2019 23:23:37 GMT
Last-Modified Tue, 12 Nov 2019 20:24:59 GMT
Set-Cookie __cfduid=df104e086629904897c1d9f70a5879f8c1577575417; expire...
Server cloudflare
#>
# NOTE: some URLs return stream
# $url = 'http://91.192.168.242:9091'
$head_request = invoke-webrequest -MaximumRedirection 0 -method Head -uri $url -erroraction silentlycontinue
$status_code = $head_request | select-object -expandproperty StatusCode
write-host $status_code
# 302
if ($status_code -eq '302' ) {
$url = $head_request.Headers.Location;
($head_request.Headers).psobject.properties| foreach-object {
# outputs multiple technical values of no interest
write-host $_.Value
}
@('Content-Type','Date','Location','Server') | foreach-object {
$header = $_;
write-host ('{0}: {1}' -f $header, $head_request.Headers.$header )
}
}
$head_request | select-object -expandproperty Headers | format-list
<#
Key : Content-Type
Value : text/html; charset=UTF-8
Key : Date
Value : Sat, 28 Dec 2019 23:28:36 GMT
Key : Location
Value : http://www.slimjetbrowser.com/chrome/files/78.0.3904.97/ChromeStandalon
eSetup.exe
Key : Server
Value : Apache
#>
$redirect_location = 'https://www.slimjet.com/chrome/files/78.0.3904.97/ChromeStandaloneSetup.exe'
$redirect_location = $head_request.Headers.Location
$url = $redirect_location
$head_request = invoke-webrequest -MaximumRedirection 0 -method Head -uri $url -erroraction silentlycontinue
$status_code = $head_request | select-object -expandproperty StatusCode
write-host $status_code
# 302
$accept = ''
if ($status_code -eq '200' ) {
$size = $head_request.Headers.'Content-Length'
write-host ('WARNING - about to start a {0} Mb download that would take a long time dependent on the connecton bandwidth' -f ([Math]::Round($size / 1048576,0)) )
$accept = Read-Host -Prompt 'Type Y to accept'
}
if ($accept -ne 'Y' -and $accept -ne 'y') {
exit 0
}
$outfile = 'result.data'
invoke-webrequest -uri $url -outfile $outfile -timeout 10
get-item -path $outfile | select-object -property Attributes,Length,Name,DirectoryName,CreationTime,LastWriteTime,VersionInfo
<#
Attributes : Archive
Length : 58957736
Name : result.data
DirectoryName : C:\Users\▒▒▒▒▒▒▒▒▒▒▒▒
CreationTime : 12/29/2019 11:10:01 AM
LastWriteTime : 12/29/2019 11:11:27 AM
#>
exit 0
# the code below is taken from the original foorum question.
# The code does not appear to really belong to the party asking for help, more likely is a
# stackoverflow paste, already seen in several topics
# e.g.
# http://forum.oszone.net/post-2901164.html#post2901164
# it does not have code
# to run the url download on a separate thread
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing
$form = New-Object System.Windows.Forms.Form
$form.Text = 'Status Server'
$form.Size = New-Object System.Drawing.Size(350,500)
$form.BackColor = "0x7AC5E7"
$form.Opacity = 0.96
$form.FormBorderStyle = [System.Windows.Forms.FormBorderStyle]::SizableToolWindow
$form.StartPosition = 'CenterScreen'
$outfile = New-TemporaryFile
$eventHandler = [System.EventHandler]{
$textBox.Text
$listbox.Items.Add
$url = $textBox.Text
[Net.ServicePointManager]::SecurityProtocol = 'tls12, tls11, tls'
$head_request = invoke-webrequest -MaximumRedirection 0 -method Head -timeout 10 -uri $url -erroraction silentlycontinue
# $outfile = ('{0}\{1}' -f $env:USERPROFILE, 'result.data')
$status_code = $head_request | select-object -expandproperty StatusCode
if ($status_code -eq '302' ) {
$url = $head_request.Headers.Location
@('Content-Type','Date','Location','Server') | foreach-object {
$header = $_;
write-host ('{0}: {1}' -f $header, $head_request.Headers.$header )
[void]$listbox.Items.Add( ('{0}: {1}' -f $header, $head_request.Headers.$header ))
}
}
invoke-webrequest -uri $url -outfile $outfile -timeout 10
# (Invoke-WebRequest -Uri $url).RawContent | Out-File $outfile.FullName
# Loading a 34 Mb file into a lostbox is not a good idea
#
# Get-Content $file.FullName | ForEach-Object {[Void]$listbox.Items.Add($_)}
$listbox.Items.Add(('Saved into "{0}"' -f $outfile.FullName) )
}
$eventHandler2 = [System.EventHandler]{
start-process -filepath 'C:\Windows\System32\notepad.exe' -argumentlist $file.FullName
Start-Sleep -Milliseconds 300
$form.Close()
}
$eventHandler3 = [System.EventHandler]{
$listBox.Items.Clear()
$textBox.Clear()
Remove-Item $file.FullName -errorAction silentlycontinue
}
$OKButton = New-Object System.Windows.Forms.Button
$OKButton.Location = New-Object System.Drawing.Point(10,420)
$OKButton.Size = New-Object System.Drawing.Size(75,23)
$OKButton.Anchor = "Top, Right"
$OKButton.Text = 'OK'
$OKButton.Add_Click($eventHandler)
$form.Controls.Add($OKButton)
$LButton = New-Object System.Windows.Forms.Button
$LButton.Location = New-Object System.Drawing.Point(170,420)
$LButton.Size = New-Object System.Drawing.Size(75,23)
$LButton.Anchor = "Top, Right"
$LButton.Text = 'Clear'
$LButton.Add_Click($eventHandler3)
$form.Controls.Add($LButton)
$NButton = New-Object System.Windows.Forms.Button
$NButton.Location = New-Object System.Drawing.Point(250,420)
$NButton.Size = New-Object System.Drawing.Size(75,23)
$NButton.Anchor = "Top, Right"
$NButton.Text = 'Notepad'
$NButton.Add_Click($eventHandler2)
$form.Controls.Add($NButton)
$CancelButton = New-Object System.Windows.Forms.Button
$CancelButton.Location = New-Object System.Drawing.Point(90,420)
$CancelButton.Size = New-Object System.Drawing.Size(75,23)
$CancelButton.Anchor = "Top, Right"
$CancelButton.Text = 'Cancel'
$CancelButton.Add_click({$form.close()})
$form.Controls.Add($CancelButton)
$label = New-Object System.Windows.Forms.Label
$label.Location = New-Object System.Drawing.Point(10,20)
$label.Size = New-Object System.Drawing.Size(280,20)
$label.Text = 'url: '
# $label.Text = 'Вставьте ссылку:'
# Unexpected token 'Ñтавьте' in expression or statement.
$form.Controls.Add($label)
$textBox = New-Object "System.Windows.Forms.TextBox"
$textBox.Location = New-Object System.Drawing.Point(10,40)
$textBox.Size = New-Object System.Drawing.Size(315,20)
$textBox.Anchor = 'Top, Left, Right'
$textBox.width = 315;
$form.Controls.Add($textBox)
$listbox = New-Object System.Windows.Forms.ListBox
$listbox.DisplayMember = $tmp.FullName
$listbox.Name = "listbox"
$listbox.Location = New-Object System.Drawing.Point(10,75)
$listbox.Size = New-Object System.Drawing.Size(315,330)
$listbox.Anchor = "Top, Bottom, Left, Right"
$listbox.Height = 330
$form.Controls.Add($listbox)
$form.Topmost = $true
$form.Add_Shown({$textBox.Select()})
$form.Add_Shown({$listbox.Select()})
$form.ShowDialog()
Remove-Item $file.FullName -errorAction silentlycontinue
exit 0
# below a yet another version of the code
<#
function GenerateForm {
[reflection.assembly]::loadwithpartialname("System.Windows.Forms") | Out-Null
[reflection.assembly]::loadwithpartialname("System.Drawing") | Out-Null
$form1 = New-Object System.Windows.Forms.Form
$button1 = New-Object System.Windows.Forms.Button
$listBox1 = New-Object System.Windows.Forms.ListBox
$RadioButton = New-Object System.Windows.Forms.RadioButton
$RadioButton1 = New-Object System.Windows.Forms.RadioButton
$InitialFormWindowState = New-Object System.Windows.Forms.FormWindowState
$b1= $false
$b2= $false
$b3= $false
#----------------------------------------------
#Generated Event Script Blocks
#----------------------------------------------
function online ($url, $name) {
$watch = [System.Diagnostics.Stopwatch]::StartNew()
$watch.Start() #Запуск таймера
$file = New-TemporaryFile
$lfile = New-TemporaryFile
$d = '#EXTM3U'
(Invoke-WebRequest -UseBasicParsing -Uri $url -TimeoutSec 20).Links.Href | Where {$_ -match "html"} | Sort-Object -Unique `
| ForEach {$_ -replace "(.*html)","$url`$1"} | Out-File $file.FullName
$ls = Get-Content $file.FullName -Encoding utf8
ForEach ($link in $ls){
$a = Invoke-WebRequest -Uri $link -TimeoutSec 20 -Method GET
if ($a.Content -match '<h1>') {
$a.Content -match '<h1>(.*) смотреть онлайн</h1>' | Out-Null
$matches[1] | ForEach-Object {[Void]$listbox1.Items.Add($_)}
$listBox1.SelectedIndex = $listBox1.Items.Count -1
$listBox1.SelectedIndex = -1
$n = '#EXTINF:-1,'+$matches[1]
if ($a -notmatch "iframe.*https?.*html") {
$a.Content -match 'iframe.*"(https?.+php)".*' | Out-Null
$Global:l = $matches[1]
if ($l -notmatch "youtube") {
(Invoke-WebRequest -UseBasicParsing -URI $l -Headers @{"Referer"=$link}).Content -match 'file:"([^"]+)"' | Out-Null
$m = $matches[1]
Add-Content $lfile.FullName -Encoding utf8 -Value $n,$m
}
else {
continue
}
}
else {
$a.Content -match 'iframe.*"(https?.+html)".*' | Out-Null
$Global:l = $matches[1]
(Invoke-WebRequest -UseBasicParsing -URI $l -Headers @{"Referer"=$link}).Content -match 'var videoLink.*(https?[^"]+m3u8)' | Out-Null
$m = $matches[1]
Add-Content $lfile.FullName -Encoding utf8 -Value $n,$m
}
}
else {
continue
}
}
$c = Get-Content $lfile.FullName -Encoding utf8
Set-Content $name -Encoding utf8 -value $d,$c
Remove-Item $file.FullName -errorAction silentlycontinue
Remove-Item $lfile.FullName -errorAction silentlycontinue
$listBox1.Items.Add("Плейлист создан!")
$listBox1.SelectedIndex = $listBox1.Items.Count -1
$listBox1.SelectedIndex = -1
$watch.Stop() #Остановка таймера
$watch.Elapsed #Время выполнения
$time = $watch.Elapsed
}
$handler_button1_Click=
{
$listBox1.Items.Clear();
if ($RadioButton.Checked) {
$url = 'http://первый сайт'
$name = '.\первый.txt'
online
}
elseif ($RadioButton1.Checked) {
$url = 'http://второй сайт'
$name = '.\второй.txt'
online
}
if ( !$RadioButton.Checked -and !$RadioButton1.Checked ) { $listBox1.Items.Add("No CheckBox selected....")}
}
$OnLoadForm_StateCorrection=
{#Correct the initial state of the form to prevent the .Net maximized form issue
$form1.WindowState = $InitialFormWindowState
}
#----------------------------------------------
#region Generated Form Code
$form1.Text = "TV"
$form1.Name = "form1"
$form1.DataBindings.DefaultDataSourceUpdateMode = 0
$form1.FormBorderStyle = [System.Windows.Forms.FormBorderStyle]::FixedSingle
$form1.StartPosition = [System.Windows.Forms.FormStartPosition]::CenterScreen
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Width = 450
$System_Drawing_Size.Height = 660
$form1.BackColor = "0x7AC5E7"
$form1.Opacity = 0.96
$form1.Icon = New-Object System.Drawing.Icon(".\favicon.ico")
$form1.ClientSize = $System_Drawing_Size
$button1.TabIndex = 1
$button1.Name = "button1"
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Width = 75
$System_Drawing_Size.Height = 23
$button1.Size = $System_Drawing_Size
$button1.UseVisualStyleBackColor = $True
$button1.Text = "Run Script"
$System_Drawing_Point = New-Object System.Drawing.Point
$System_Drawing_Point.X = 25
$System_Drawing_Point.Y = 585
$button1.Location = $System_Drawing_Point
$button1.DataBindings.DefaultDataSourceUpdateMode = 0
$button1.add_Click($handler_button1_Click)
$form1.Controls.Add($button1)
$CancelButton = New-Object System.Windows.Forms.Button
$CancelButton.Location = New-Object System.Drawing.Point(25,615)
$CancelButton.Size = New-Object System.Drawing.Size(75,23)
$CancelButton.Text = "Cancel"
$CancelButton.DialogResult = [System.Windows.Forms.DialogResult]::Cancel
$CancelButton.UseVisualStyleBackColor = $True
$button1.TabIndex = 2
$form1.CancelButton = $CancelButton
$form1.Controls.Add($CancelButton)
$listBox1.FormattingEnabled = $True
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Width = 210
$System_Drawing_Size.Height = 640
$listBox1.Size = $System_Drawing_Size
$listBox1.DataBindings.DefaultDataSourceUpdateMode = 0
$listBox1.Name = "listBox1"
$System_Drawing_Point = New-Object System.Drawing.Point
$System_Drawing_Point.X = 220
$System_Drawing_Point.Y = 13
$listBox1.Location = $System_Drawing_Point
$listBox1.TabIndex = 3
$form1.Controls.Add($listBox1)
$RadioButton.UseVisualStyleBackColor = $True
$RadioButton.Checked = $false
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Width = 154
$System_Drawing_Size.Height = 30
$RadioButton.Size = $System_Drawing_Size
$RadioButton.TabIndex = 4
$RadioButton.Text = "TV1"
$System_Drawing_Point = New-Object System.Drawing.Point
$System_Drawing_Point.X = 25
$System_Drawing_Point.Y = 40
$RadioButton.Location = $System_Drawing_Point
$RadioButton.DataBindings.DefaultDataSourceUpdateMode = 0
$RadioButton.Name = "RadioButton"
$RadioButton.add_CheckedChanged({
if ($RadioButton.Checked){
$listBox1.Items.Add( "TV1" )
}
else {
$listBox1.Items.Clear();
}
})
$form1.Controls.Add($RadioButton)
$RadioButton1.UseVisualStyleBackColor = $True
$RadioButton1.Checked = $false
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Width = 154
$System_Drawing_Size.Height = 30
$RadioButton1.Size = $System_Drawing_Size
$RadioButton1.TabIndex = 5
$RadioButton1.Text = "TV2"
$System_Drawing_Point = New-Object System.Drawing.Point
$System_Drawing_Point.X = 25
$System_Drawing_Point.Y = 75
$RadioButton1.Location = $System_Drawing_Point
$RadioButton1.DataBindings.DefaultDataSourceUpdateMode = 0
$RadioButton1.Name = "RadioButton1"
$RadioButton1.add_CheckedChanged({
if ($RadioButton1.Checked){
$listBox1.Items.Add( "TV2" )
}
else {
$listBox1.Items.Clear();
}
})
$form1.Controls.Add($RadioButton1)
#Save the initial state of the form
$InitialFormWindowState = $form1.WindowState
#Init the OnLoad event to correct the initial state of the form
$form1.add_Load($OnLoadForm_StateCorrection)
#Show the Form
$form1.ShowDialog()| Out-Null
} #End Function
#Call the Function
GenerateForm
#>