-
Notifications
You must be signed in to change notification settings - Fork 2
/
day102.htm
1590 lines (1589 loc) · 67.8 KB
/
day102.htm
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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<style>
/* width */
::-webkit-scrollbar {
width: 10px;
overflow: auto;
height: 0em;
}
/* Track */
::-webkit-scrollbar-track {
background: #34a8eb;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #63c6ff
;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: yellow;
}
.style10 {
font-size: 9px;
color: #FFFFFF;
}
</style>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head>
<title>Day 102 flood</title>
<link href="https://www.helpukr.xyz/bootstrap.helpukr.css" rel="stylesheet" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
/* Add "https://api.ipify.org?format=json" This method uses ipify.org api to get the clients IP Address.
This method is completely free and no limitations of use. */
$.getJSON("https://api.ipify.org?format=json",
function(data) {
// userip element is where the IP will be displayed
$("#userip").html(data.ip);
})
</script>
<style>
h6 {
color:white;
}
</style>
<style>
body {
padding: 0;
margin: 0;
font-family: Arial, sans-serif;
background-color: #FFD600;
}
.title {
margin: 3rem auto 3rem auto;
text-align: center;
color: #005BBC;
}
.intro .howto {
background-color: #005BBC;
}
.intro .howto h3 {
color: #FFD600;
text-align: center;
margin-top: 1rem;
}
.intro .howto p {
color: white;
text-align: justify;
}
.footer {
color: #005BBC;
text-align: center;
margin-top: 2rem;
}
.desc{
color:black;
padding-top: 2rem;
padding-bottom: 2rem;
margin: 0 auto;
width: 60%;
}
.desc h3 {
text-align: center;
color: #005BBC;
}
#stats h4 {
font-size: 1.1em;
text-decoration: underline;
color: #005BBC;
font-weight: 400;
}
table.status {
margin-bottom: 10px;
}
.style1 {
color: #CC0000;
font-weight: bold;
}
.style6 {color: #FF6262}
.style7 {font-size: 0.1px}
.style9 {
color: #FFD600;
font-weight: bold;
font-size: 18px;
}
.style10 {font-size: 24px}
.style11 {
font-size: 16px;
color: #FFFFFF;
}
.style13 {
margin: 3rem auto 3rem auto;
text-align: center;
color: #FFD600;
font-size: 24px;
font-weight: bold;
}
.style14 {color: #FFFFFF}
.style15 {color: #FFFF00}
.style16 {color: #FF3300}
.style17 {color: #FF6633}
.style21 {color: #B9DCFF}
.style22 {color: #ECE3AA}
table {
border-color: #fffd9c;
}
</style>
<body>
<div class="modal" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true" data-bs-backdrop="static" data-bs-keyboard="false">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header" style=" padding-bottom: 4px; padding-top: 3px;padding-left: 3px;">
<h5 id="exampleModalLabel" style=" margin-bottom: 0px;">
<span class="modal-title style1"><img class="qIBnUc" src="https://i.imgur.com/hwWmsDc.png" draggable="false" width="50px" alt="UKR"> Warning: </span><span class="modal-title style6">Read before you continue. <span class="style16"><i>[</span><span class="style17"><b>Day 102</span></b><span class="style16">]</i></span></span></h5></div>
<div class="modal-body" style=" padding-top: 5px; padding-bottom: 0px;">
<p style=" margin-bottom: 0px;"><b>WARNING ABOUT TODAYS SCRIPT:</b><br>this list of targets is made up of around 2000 targets and will be very slow on low performance machines.<br><br> As you're likely already aware, the action of DoSing or participating in DDoS is illegal, and for good reason.
Click on continue if you have a VPN Enabled, use a proxy, use the Tor browser or have your own secure connection and wish to support Ukraine in taking down Russian propaganda.</p>
<hr style=" margin-top: 5px; margin-bottom: 5px;">
<p>This works by sending GET requests to each targeted website.<br>
It’s like opening each website at once on your PC and<br>
re-requesting the data over and over, although the data is not saved or cached, It should be fair to say that your Internet service Provider (ISP) won’t be any more bothered about this than they would you browsing the internet, but its best to stay safe.</p></div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" onClick="window.location.href='https://www.helpukr.xyz'">Leave</button>
<button type="button" class="btn btn-primary" data-dismiss="exampleModalLabel" onClick="togglePause(); myModal.toggle();">Continue</button></div></div></div></div>
<table width="100%" border="0" align="center" bgcolor="#005BBC">
<tr>
<td bgcolor="#004A9D"><div align="center">
<table width="200" border="1" style="border-top-width: 0px;">
<tbody><tr>
<td><table width="989" border="1" align="left" style="border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-right-width: 0px;">
<tbody>
<tr>
<td width="239" bgcolor="#005BB7"><div align="right"><span class="style14"><strong> Info:</strong> Your Public IP Address is: </span></div></td>
<td width="175" bgcolor="#005BB7"><h6 id="userip" style="margin-bottom: 0px;">Loading..</h6></td>
<td width="553" bgcolor="#005BB7"><div align="right"><span class="style21">For privacy, download the Tor Browser:</span> <a href="https://www.torproject.org/download/" target="_blank" class="style22" rel="nofollow">https://www.torproject.org/download/</a> </div></td>
</tr>
</tbody>
</table></td>
</tr>
</tbody></table>
<p class="style13" style="margin-top: 0px;margin-bottom: 0px;"> Propaganda http(s) flood for <span class="style15">Day 102 </span>using targets from the IT Army of Ukraine. </p>
</div></td>
</tr><tr>
<td bgcolor="#0057B7"><div align="center" class="style9 style10">
<h3><u>Information about this tool.</u></h3>
</div></td>
</tr><tr>
<td><table width="90%" border="0" align="center">
<tr>
<td align="center"><p class="style11">This tool is hosted via <a href="https://pages.github.com/" target="_blank" class="align-content-sm-between"><a href="https://pages.github.com/" target="_blank" class="style15">GitHub Page</a>, You can download it for local use and customization <a href="https://raw.githubusercontent.com/helpukr/helpukr.github.io/main/day102.htm" target="_blank" class="style15">here</a>. A new page will be added for each day, with a new set of targets from the Ukrainian IT Army's telegram servers.</p>
<p class="style11">All of the news in the Russian federation is fake and need to be shut down, we need as many people as possible to help. Just a tiny 1kbps of data could be the edge needed to take down a server hosting propaganda. <br>
<br>
Just open this page and leave it running on your devices as long as possible, it will flood targets selected specifically for that day.<br>
Targets are
chosen by an intelligence team who are always looking at what services are aiding Russia’s war,
together we can pose a huge load on their infrastructure.</p>
<details>
<summary><span style="color: #ffff99;">Click Here for <b>FAQ</b> <i>(Questions & Answers)</i></span></summary>
<p><table width="100%" border="0">
<tbody>
<tr>
<td><hr style=" margin-top: 5px; margin-bottom: 5px; color: #FFFFFF"><p class="style11">FAQ:<br>
<span style="color: #ffff99;"><strong>Q)</strong></span> How can I use this in the tor browser if HTTPS overrides HTTP no matter what i try?<br>
<span style="color: #ffff99;"><strong>A)</strong></span> Download the page for local use, it won't use any http/https protocols because those are used to request files from a web server, but using it locally (directly from your computer) bypasses the need and allows you to flood both HTTP and HTTPS from your TOR Browser's IP.</p>
<p class="style11"><span style="color: #ffff99;"><strong>Q)</strong></span> How can I see what's happening in more detail?<br>
<span style="color: #ffff99;"><strong>A)</strong></span>
open the developer console by pressing F12 and select the Network Tab.<br>
If you're on a mac you can't use F12 for this, instead right click anywhere on the site and click inspect, then click the network tab </p>
<p class="style11" style="margin-bottom: 0px;"><span style="color: #ffff99;"><strong>Q)</strong></span> After so much time has passed, my browser/computer become very laggy and unresponsive or my browser crashes, how can I fix this?<br>
<span style="color: #ffff99;"><strong>A)</strong></span> This happens because everything that happens is logged by the browser, but you can stop it pretty easily.<br>
In the Network tab on the developer console (F12), press both the red button and the stop symbol. </p>
<details style="margin-bottom: 16px;">
<summary><span style="color: #ffff99;">Click Here to see Example</span></summary>
<img src="https://i.imgur.com/5Cw6kai.png" draggable="false"> </details>
<p class="style11"><span style="color: #ffff99;"><strong>Q)</strong></span> Why are some of the requests having the same number error after a while?<br>
<span style="color: #ffff99;"><strong>A)</strong></span>
This is likely caused by the IP of the VPN you're using has been blocked on their side, but it could also mean the site's just totally overloaded and cannot respond to any requests.<br>
Also if you’re are using https:// in the address bar that would cause the http:// addresses to do the same</p></td>
</tr>
</tbody>
</table></p>
</details>
<hr style=" margin-top: 5px; margin-bottom: 5px; color: #FFFFFF"></td>
</tr>
</table>
<table width="613" border="0" align="center">
<tr>
<td width="607"><h3 align="center" class="style14">Session Status</h3>
<p align="center" class="style14" style=" margin-bottom: 0px; padding-bottom: 2px;">Below is a log of sites that ether responded with errors or failed to respond at all.<br>
It’s normal for this number to count up slow or fast and can often change.<br>
If a lot of services are overloaded the numbers will go fast, else they’ll go slower.<br>
If all requests are the same as all errors on some sites, it most likely means that the<br>
site operator has banned the IP you’re using. </p>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div class="desc text-center" style=" padding-top: 4px;">
<p align="center" class="style7" style=" margin-bottom: 0px;">Total number of requests: <span id="totalrequests">0</span></p>
<p>So far <span id="totalerrors"><em>zero</em></span> sites have responded with errors</p>
<button type="button" class="btn btn-primary" onClick="togglePause();" style=" padding-left: 32px; padding-right: 32px; padding-top: 8px; padding-bottom: 8px;">Resume</button>
</div>
<div id="stats" class="container">
<div class="row">
</div>
</div>
<p class="footer">This website is an easy to run solution to flooding Russian propaganda via any internet capable device with a browser.<br>
For example you can walk around town shopping and flood Russian propaganda from a phone in your pocket.<br>
It can even be used via the browser app on a Smart TV in the background whilst you watch TV.<br>
With your help you can convince a Russian to rebel agents the war by making them<br>
look elsewhere for news, remember, Nothing you do is too little!<br>
Glory to Ukraine, Glory to the hero’s. </p>
<script>
// target list
var urls = [
// This list is Huge, use on a high proformance machine.
'https://www.vpgazeta.ru/',
'http://91.142.86.5:80',
'https://78.ru/tv',
'http://95.181.181.207:80',
'https://95.181.181.207:443',
'https://ngzv.ru/',
'http://176.99.9.19:80',
'https://176.99.9.19:443',
'https://yamal-media.ru/air',
'http://46.148.233.112:80',
'https://46.148.233.112:443',
'https://rv-news.ru/',
'http://217.144.98.141:80',
'https://217.144.98.141:443',
'https://ufanotes.ru/',
'http://94.228.118.7:80',
'https://94.228.118.7:443',
'https://vm.ru/',
'http://213.135.71.21:80',
'https://213.135.71.21:443',
'https://progorod43.ru/',
'http://212.41.26.46:80',
'https://212.41.26.46:443',
'https://azned.net/',
'http://84.38.184.156:80',
'https://84.38.184.156:443',
'https://wolsk.ru/',
'http://92.255.104.25:80',
'https://92.255.104.25:443',
'http://inmytishchi.ru/',
'http://178.57.80.130:80',
'https://178.57.80.130:443',
'http://innoginsk.ru/',
'https://www.novgorod.ru/',
'http://84.38.185.16:80',
'https://84.38.185.16:443',
'https://radio1.news/',
'http://185.65.148.25:80',
'https://185.65.148.25:443',
'https://gazeta-n1.ru/',
'http://185.200.242.182:80',
'https://185.200.242.182:443',
'https://kurgan.ru/',
'http://195.161.62.72:80',
'https://195.161.62.72:443',
'https://vnru.ru/',
'http://185.178.208.133:80',
'https://185.178.208.133:443',
'https://xn--217-eddps6di.xn--p1ai/',
'http://81.177.141.73:80',
'https://81.177.141.73:443',
'https://donetsk-dr.ru/',
'http://91.224.23.226:80',
'https://91.224.23.226:443',
'https://www.tvtomsk.ru/tv.html',
'http://78.140.48.78:80',
'https://78.140.48.78:443',
'http://inlotoshino.ru/',
'https://vesti-sochi.tv/',
'http://91.236.136.9:80',
'https://91.236.136.9:443',
'https://pushkino.tv/',
'http://46.229.215.243:80',
'https://46.229.215.243:443',
'https://www.mordovmedia.ru/',
'http://185.71.64.138:80',
'https://185.71.64.138:443',
'http://zhuktv.ru/',
'http://77.232.152.77:80',
'https://77.232.152.77:443',
'http://in-istra.ru/',
'http://trc.odintv.ru/',
'http://91.189.114.14:80',
'https://91.189.114.14:443',
'https://www.m24.ru/live',
'http://93.174.73.99:80',
'https://93.174.73.99:443',
'http://195.42.165.43:80',
'https://195.42.165.43:443',
'http://195.42.165.46:80',
'https://195.42.165.46:443',
'http://in-dmitrov.ru/',
'https://gazetanovgorod.ru/',
'http://185.178.208.137:80',
'https://185.178.208.137:443',
'https://ves-vesti.ru/',
'http://176.99.5.253:80',
'http://www.ramtv.ru/',
'http://178.22.50.186:80',
'https://178.22.50.186:443',
'https://www.penza-press.ru/',
'http://185.165.123.185:80',
'https://185.165.123.185:443',
'https://kirov-portal.ru/',
'http://185.178.208.180:80',
'https://185.178.208.180:443',
'https://open-dubna.ru/',
'http://91.189.114.24:80',
'https://91.189.114.24:443',
'https://gorodn.ru/',
'http://94.228.116.39:80',
'https://94.228.116.39:443',
'https://volgograd-trv.ru/',
'http://80.87.203.23:80',
'https://80.87.203.23:443',
'https://www.eg-online.ru/',
'http://82.146.47.50:80',
'https://82.146.47.50:443',
'https://www.amur.life/',
'http://185.178.208.138:80',
'https://185.178.208.138:443',
'https://salsknews.ru/',
'http://www.idmedina.ru/',
'https://89.104.86.182:443',
'http://etrk.ru/',
'http://195.208.1.121:80',
'https://195.208.1.121:443',
'https://xn----htbkaf0ag0a2a.com/',
'http://37.18.21.184:80',
'https://37.18.21.184:443',
'https://lotosgtrk.ru/',
'http://92.255.104.209:80',
'https://92.255.104.209:443',
'https://nvk-online.ru/new/',
'http://151.236.80.40:80',
'https://151.236.80.40:443',
'https://zebra-tv.ru/',
'http://185.129.100.66:80',
'https://185.129.100.66:443',
'http://inelstal.ru/',
'https://otstv.ru/live/',
'http://185.200.242.234:80',
'https://185.200.242.234:443',
'https://volga.news/',
'http://82.202.190.245:80',
'https://82.202.190.245:443',
'https://www.gtrkmariel.ru/',
'http://82.202.170.86:80',
'https://82.202.170.86:443',
'https://svetochnews.ru/',
'http://31.31.198.37:80',
'https://31.31.198.37:443',
'https://www.moe-online.ru/',
'http://82.202.192.219:80',
'https://82.202.192.219:443',
'http://kaluga24.tv/',
'http://82.202.170.138:80',
'https://82.202.170.138:443',
'https://region-tyumen.ru/',
'http://92.255.106.246:80',
'https://92.255.106.246:443',
'https://nntv.media/volga24',
'http://185.165.123.36:80',
'https://185.165.123.36:443',
'http://www.br-tvr.ru/',
'http://80.247.38.109:80',
'https://80.247.38.109:443',
'https://www.zvportal.ru/',
'http://185.219.40.51:80',
'https://185.219.40.51:443',
'http://in-domodedovo.ru/',
'https://vestnickprimanich.ru/',
'https://lubertsyriamo.ru/',
'http://79.143.27.95:80',
'https://79.143.27.95:443',
'https://most.tv/',
'http://194.58.122.214:80',
'https://194.58.122.214:443',
'http://indubnacity.ru/',
'http://www.otv-media.ru/',
'http://213.183.48.28:80',
'https://213.183.48.28:443',
'http://www.tv-tvs.ru/',
'http://217.26.17.162:80',
'https://217.26.17.162:443',
'https://bloknot-voronezh.ru/',
'http://91.206.127.28:80',
'https://91.206.127.28:443',
'https://mirbelogorya.ru/',
'http://194.190.30.202:80',
'https://194.190.30.202:443',
'https://vestinn.ru/',
'http://93.120.235.197:80',
'https://93.120.235.197:443',
'https://volsklife.ru/',
'http://92.255.106.28:80',
'https://92.255.106.28:443',
'http://dagpravda.ru/',
'http://185.178.208.162:80',
'https://185.178.208.162:443',
'https://tvr24.tv/',
'http://185.220.35.69:80',
'https://185.220.35.69:443',
'http://tv41.ru/',
'http://178.210.67.105:80',
'https://www.cheltv.ru/rossiya-24-yuzhnyj-ural-onlajn-translyaciya/',
'http://91.226.83.211:80',
'https://91.226.83.211:443',
'https://www.enisey.tv/live/',
'http://151.236.80.36:80',
'https://151.236.80.36:443',
'http://gazeta-bam.ru/',
'https://novosti-saratova.ru/',
'http://95.183.10.90:80',
'https://95.183.10.90:443',
'http://inpavposad.ru/',
'http://inserpuhov.ru/',
'http://infryazino.ru/',
'https://www.kolyma.ru/',
'http://213.189.221.198:80',
'https://213.189.221.198:443',
'http://inshahovskoe.ru/',
'https://ktv-ray.ru/translyacii/',
'https://v1.ru/',
'http://195.19.220.27:80',
'https://195.19.220.27:443',
'https://ngs55.ru/',
'http://195.19.220.26:80',
'https://195.19.220.26:443',
'https://53news.ru/',
'https://russia58.tv/',
'http://81.200.248.58:80',
'https://81.200.248.58:443',
'https://stolicaonego.ru/',
'http://185.129.102.25:80',
'https://185.129.102.25:443',
'http://involokolamsk.ru/',
'https://pdmsk-time.ru/',
'http://5.23.51.100:80',
'https://5.23.51.100:443',
'https://www.donland.ru/news/',
'http://185.178.208.60:80',
'https://185.178.208.60:443',
'https://maumediacenter.ru/',
'http://194.67.112.76:80',
'https://194.67.112.76:443',
'http://tvpodolsk.ru/',
'http://109.94.0.75:80',
'https://109.94.0.75:443',
'https://www.znamenka.info/',
'http://31.31.198.252:80',
'https://31.31.198.252:443',
'https://www.sarbc.ru/',
'http://185.178.208.190:80',
'https://185.178.208.190:443',
'https://novvedomosti.ru/',
'http://185.178.208.22:80',
'https://185.178.208.22:443',
'https://12-kanal.ru/',
'http://91.215.42.39:80',
'https://91.215.42.39:443',
'https://pg11.ru/',
'https://gorodz.info/',
'http://193.168.131.126:80',
'https://193.168.131.126:443',
'https://riamo.ru/',
'http://185.169.155.194:80',
'https://185.169.155.194:443',
'https://kagalnitskievesti.ru',
'https://omskinform.ru/',
'http://90.156.243.24:80',
'https://90.156.243.24:443',
'http://www.dmitrovtv.ru/',
'http://91.197.159.238:80',
'https://echosevera.ru/',
'http://178.208.71.31:80',
'https://178.208.71.31:443',
'https://biwork.ru/',
'http://185.200.242.179:80',
'https://185.200.242.179:443',
'https://www.nsktv.ru/onair/sibir_24/',
'http://195.211.5.41:80',
'https://195.211.5.41:443',
'https://www.newkaliningrad.ru/',
'http://185.162.92.98:80',
'https://185.162.92.98:443',
'https://trkmillet.ru/',
'http://212.110.158.67:80',
'https://212.110.158.67:443',
'https://www.belpressa.ru/',
'http://91.215.41.42:80',
'https://91.215.41.42:443',
'https://pravdasevera.ru/',
'http://178.208.71.19:80',
'https://178.208.71.19:443',
'https://newsbryansk.ru/',
'http://91.215.41.20:80',
'https://91.215.41.20:443',
'https://progorod33.ru/',
'http://5.188.131.51:80',
'https://5.188.131.51:443',
'http://xn--90acibqf7d3ao3a.xn--p1ai/',
'http://31.31.196.201:80',
'https://31.31.196.201:443',
'https://161.ru/',
'https://bk55.ru/',
'http://193.233.15.244:80',
'https://193.233.15.244:443',
'https://stavropolye.tv/',
'http://92.255.104.60:80',
'https://92.255.104.60:443',
'https://mirbelogorya.ru/live.html',
'https://www.volga-tv.ru/',
'http://81.18.136.234:80',
'https://81.18.136.234:443',
'http://depprint.donland.ru/',
'http://194.226.88.163:80',
'https://asn24.ru/',
'http://80.87.203.176:80',
'https://80.87.203.176:443',
'https://riavrn.ru/',
'http://85.193.84.43:80',
'https://85.193.84.43:443',
'http://88.83.200.59:80',
'https://88.83.200.59:443',
'http://in-kolomna.ru/',
'http://inlobnya.ru/',
'https://lgz.ru/',
'http://193.168.131.5:80',
'https://193.168.131.5:443',
'https://priazove.ru/',
'https://trc33.ru/programm',
'http://82.202.172.117:80',
'https://82.202.172.117:443',
'https://kaluganews.ru/',
'http://91.215.41.18:80',
'https://91.215.41.18:443',
'https://vesti-kaliningrad.ru/rossiya1-1/',
'http://185.87.194.20:80',
'https://185.87.194.20:443',
'http://news.zarpressa.ru/',
'http://217.107.219.14:80',
'https://217.107.219.14:443',
'https://tv-express.ru/',
'http://79.171.117.66:80',
'https://79.171.117.66:443',
'http://inruza.ru/',
'https://ngs.ru/',
'http://195.19.220.25:80',
'https://195.19.220.25:443',
'https://tomiks33.ru/',
'http://185.219.40.33:80',
'https://185.219.40.33:443',
'https://gazetanga.ru/',
'http://46.183.163.211:80',
'https://46.183.163.211:443',
'http://inserprud.ru/',
'https://gtrk-kaluga.ru/',
'http://185.178.208.167:80',
'https://185.178.208.167:443',
'https://bnkirov.ru/',
'http://92.255.104.233:80',
'https://92.255.104.233:443',
'https://newsivanovo.ru/',
'http://91.215.41.23:80',
'https://91.215.41.23:443',
'https://gtrk-kurgan.ru/',
'http://62.165.54.140:80',
'http://himkismi.ru/',
'http://178.210.76.91:80',
'https://178.210.76.91:443',
'https://priazovstep.ru/',
'https://komigor.com/',
'http://94.228.124.233:80',
'https://94.228.124.233:443',
'https://vkirove.ru/',
'http://92.39.76.53:80',
'https://92.39.76.53:443',
'https://www.prima-tv.ru/',
'http://91.215.42.113:80',
'https://91.215.42.113:443',
'https://www.gtrk-vyatka.ru/live/vyatka24/',
'http://178.141.249.250:80',
'https://178.141.249.250:443',
'https://komiinform.ru/',
'http://188.127.241.218:80',
'https://188.127.241.218:443',
'http://inchernogolovka.ru/',
'https://atas.info/',
'http://95.181.181.92:80',
'https://95.181.181.92:443',
'https://politsib.ru/',
'http://92.255.104.41:80',
'https://92.255.104.41:443',
'https://36on.ru/',
'http://185.71.67.208:80',
'https://185.71.67.208:443',
'https://ptzgovorit.ru/',
'http://185.178.208.164:80',
'https://185.178.208.164:443',
'https://novkos.ru/',
'http://31.31.198.45:80',
'https://31.31.198.45:443',
'http://inchehov.ru/',
'https://ivbg.ru/',
'http://87.236.19.195:80',
'https://87.236.19.195:443',
'https://aisttv.ru/',
'http://85.234.126.116:80',
'https://85.234.126.116:443',
'https://zhukovskiyriamo.ru/',
'https://novgorod-tv.ru/teleproekty/novgorodskoe-televidenie-glavnyj-efir/',
'http://185.71.67.110:80',
'https://185.71.67.110:443',
'https://don24.ru/tv',
'http://193.233.15.187:80',
'https://193.233.15.187:443',
'https://infokam.su/',
'http://185.71.67.179:80',
'https://185.71.67.179:443',
'https://www.marpravda.ru/',
'http://92.255.104.40:80',
'https://92.255.104.40:443',
'http://inegorievsk.ru/',
'http://www.reutovtv.ru/',
'http://87.236.16.88:80',
'https://87.236.16.88:443',
'https://penzavzglyad.ru/',
'http://185.253.34.24:80',
'https://185.253.34.24:443',
'https://gorod48.ru/',
'http://185.129.102.33:80',
'https://185.129.102.33:443',
'https://istochnik.online/',
'http://92.255.106.5:80',
'https://92.255.106.5:443',
'https://kaskad.tv/',
'http://45.128.207.73:80',
'https://45.128.207.73:443',
'http://inorehovo.ru/',
'https://domodedovoriamo.ru/',
'https://ug.ru/',
'http://178.248.236.118:80',
'https://178.248.236.118:443',
'https://rassvetnews.ru/o-sajte/',
'https://region29.ru/tv/',
'https://lentv24.ru/timetable',
'http://91.215.42.131:80',
'https://91.215.42.131:443',
'https://www.mvestnik.ru/',
'http://185.253.34.49:80',
'https://185.253.34.49:443',
'https://vektor-tv.ru/',
'http://91.242.171.212:80',
'https://91.242.171.212:443',
'http://kbrria.ru/',
'http://95.173.149.216:80',
'https://95.173.149.216:443',
'https://lrt.tv/',
'http://178.210.66.53:80',
'https://inform.donland.ru/',
'http://194.226.88.162:80',
'https://194.226.88.162:443',
'https://tvkrasnodar.ru/tv/pryamoy-efir/',
'http://92.255.106.80:80',
'https://92.255.106.80:443',
'https://tvsamara.ru/online/',
'http://188.225.73.168:80',
'https://188.225.73.168:443',
'https://vestitula.ru/live-russia1-tula',
'http://185.178.208.150:80',
'https://185.178.208.150:443',
'https://ksonline.ru/',
'http://185.178.208.130:80',
'https://185.178.208.130:443',
'http://inpushchino.ru/',
'https://litrossia.ru/',
'http://94.228.116.50:80',
'https://94.228.116.50:443',
'http://in-narofominsk.ru/',
'https://rugrad.eu/',
'http://213.226.127.108:80',
'https://213.226.127.108:443',
'http://orelsreda.ru/',
'http://92.255.104.47:80',
'https://92.255.104.47:443',
'https://riamobalashiha.ru/',
'https://vesti-omsk.ru/',
'http://91.206.127.31:80',
'https://91.206.127.31:443',
'http://radio-mo.ru/',
'http://185.190.116.136:80',
'https://185.190.116.136:443',
'https://volgograd24.tv/',
'http://213.159.210.204:80',
'https://213.159.210.204:443',
'https://mirmol.ru/',
'http://92.255.104.234:80',
'https://92.255.104.234:443',
'https://bloknot-rostov.ru/',
'https://vestiprim.ru/onair.html',
'http://62.33.87.95:80',
'https://62.33.87.95:443',
'http://inkashira.ru/',
'https://riastrela.ru/',
'http://82.202.172.38:80',
'https://82.202.172.38:443',
'http://stv-online.ru/',
'http://90.156.201.60:80',
'https://90.156.201.60:443',
'http://90.156.201.51:80',
'https://90.156.201.51:443',
'http://90.156.201.20:80',
'https://90.156.201.20:443',
'http://90.156.201.12:80',
'https://90.156.201.12:443',
'http://inpodolsk.ru/',
'http://intaldom.ru/',
'https://newsorel.ru/',
'http://91.215.41.25:80',
'https://91.215.41.25:443',
'https://irk.ru/',
'http://91.215.42.22:80',
'https://91.215.42.22:443',
'http://inodintsovo.ru/',
'https://krasniy-sulin.ru/',
'http://141.8.194.74:80',
'https://141.8.194.74:443',
'https://pg12.ru/news',
'https://vestivrn.ru/',
'http://188.225.87.192:80',
'https://188.225.87.192:443',
'https://www.vgoroden.ru/',
'http://81.18.135.83:80',
'https://81.18.135.83:443',
'http://inkrasnogorsk.ru/',
'http://inkotelniki.ru/',
'http://inmozhaisk.ru/',
'https://informpskov.ru/',
'http://185.178.208.160:80',
'https://185.178.208.160:443',
'https://yocity12.com/news/',
'http://185.200.242.160:80',
'https://185.200.242.160:443',
'http://inpushkino.ru/',
'https://orsk.ru/',
'http://80.93.48.101:80',
'https://80.93.48.101:443',
'http://pln-pskov.ru/',
'http://193.9.22.20:80',
'https://193.9.22.20:443',
'https://chernovik.net/',
'https://89.223.24.7:443',
'https://gazeta-dm.com',
'https://ya62.ru/',
'http://178.208.71.12:80',
'https://178.208.71.12:443',
'https://gubdaily.ru/',
'http://91.215.42.25:80',
'https://91.215.42.25:443',
'http://indolgoprud.ru/',
'https://bloknot-astrakhan.ru/',
'https://avangard-os.ru/',
'http://185.10.45.39:80',
'https://185.10.45.39:443',
'http://ozradio.ru/',
'http://194.67.90.135:80',
'https://194.67.90.135:443',
'https://szori.ru/',
'http://92.53.96.243:80',
'https://92.53.96.243:443',
'http://inkrasnoarmeisk.ru/',
'https://obl1.ru/online',
'http://89.108.84.126:80',
'https://89.108.84.126:443',
'https://gazetanb.ru/',
'http://178.248.236.3:80',
'https://178.248.236.3:443',
'https://oreltimes.ru/',
'http://91.215.42.130:80',
'https://91.215.42.130:443',
'https://noyabrsk24.ru/',
'http://213.59.224.191:80',
'https://213.59.224.191:443',
'https://gazeta.a42.ru/',
'https://212.75.210.109:443',
'http://radiokrasno.ru/',
'http://195.24.68.29:80',
'https://195.24.68.29:443',
'https://katun24.ru/k24',
'http://193.105.235.88:80',
'https://193.105.235.88:443',
'https://vologda-poisk.ru/',
'http://185.178.208.176:80',
'https://185.178.208.176:443',
'http://www.gtrkoka.ru/',
'http://80.87.203.88:80',
'https://80.87.203.88:443',
'https://lipetskmedia.ru/',
'http://185.137.235.40:80',
'https://185.137.235.40:443',
'https://www.sovsekretno.ru/',
'http://146.158.13.130:80',
'https://146.158.13.130:443',
'https://ranpress.ru/',
'http://82.202.170.145:80',
'https://82.202.170.145:443',
'http://inlosinopetrovsk.ru/',
'https://ampravda.ru/',
'http://185.200.242.15:80',
'https://185.200.242.15:443',
'https://korolevriamo.ru/',
'https://portamur.ru/',
'http://185.253.34.131:80',
'https://185.253.34.131:443',
'https://kn51.ru/',
'http://77.222.56.143:80',
'https://77.222.56.143:443',
'https://reutovriamo.ru/',
'https://www.bankfax.ru/',
'http://92.255.104.152:80',
'https://92.255.104.152:443',
'http://belgorodtv.ru/',
'http://95.84.140.46:80',
'https://95.84.140.46:443',
'http://91.77.163.36:80',
'https://91.77.163.36:443',
'https://s-vedomosti.ru/',
'https://www.perekrestok.ru/',
'http://193.232.108.122:80',
'https://193.232.108.122:443',
'https://www.belnovosti.ru/telekanal-belgorod-24/',
'http://185.129.102.10:80',
'https://185.129.102.10:443',
'https://www.zhukgsn.ru/',
'https://178.210.68.65:443',
'https://gorodkirov.ru/',
'http://inklincity.ru/',
'https://www.gudok.ru/',
'http://212.164.138.121:80',
'https://212.164.138.121:443',
'http://212.164.138.120:80',
'https://212.164.138.120:443',
'http://212.164.138.131:80',
'https://212.164.138.131:443',
'http://212.164.138.130:80',
'https://212.164.138.130:443',
'http://212.164.138.129:80',
'https://212.164.138.129:443',
'http://212.164.138.128:80',
'https://212.164.138.128:443',
'http://212.164.138.127:80',
'https://212.164.138.127:443',
'http://212.164.138.126:80',
'https://212.164.138.126:443',
'http://212.164.138.125:80',
'https://212.164.138.125:443',
'http://212.164.138.124:80',
'https://212.164.138.124:443',
'http://212.164.138.123:80',
'https://212.164.138.123:443',
'http://212.164.138.122:80',
'https://212.164.138.122:443',
'http://insolnechnogorsk.ru/',
'https://fingazeta.ru/',
'http://82.202.165.73:80',
'https://82.202.165.73:443',
'http://insergposad.ru/',
'http://go-voshod.ru/',
'http://92.242.42.200:80',
'https://92.242.42.200:443',
'https://www.ruffnews.ru/',
'http://185.178.208.186:80',
'https://185.178.208.186:443',
'https://newsomsk.ru/',
'http://82.202.170.70:80',
'https://82.202.170.70:443',
'http://in-reutov.ru/',
'http://in-korolev.ru/',
'https://progorodnn.ru/',
'http://inivanteevka.ru/',
'https://gtrksmolensk.ru/',
'http://95.213.151.228:80',
'https://95.213.151.228:443',
'https://tomsk-time.ru/programs/itogi-nedeli/11006-itogo.html',
'http://176.120.29.54:80',
'https://176.120.29.54:443',
'https://portal-kultura.ru/',
'http://89.107.142.90:80',
'https://89.107.142.90:443',
'http://www.br-tvr.ru/index.php/',
'https://vesti92.ru/',
'http://185.114.246.82:80',
'https://185.114.246.82:443',
'https://www.ap22.ru/',
'http://82.202.172.15:80',
'https://82.202.172.15:443',
'https://www.sgazeta.ru/',
'http://185.165.123.206:80',
'https://185.165.123.206:443',
'http://www.vostv.ru/',
'http://92.53.96.115:80',
'https://92.53.96.115:443',
'http://rusnord.ru/',
'http://185.129.100.68:80',
'https://185.129.100.68:443',
'https://www.solidarnost.org/',
'http://37.143.10.176:80',
'https://37.143.10.176:443',
'http://www.nnng.ru/',
'http://77.222.56.37:80',
'https://77.222.56.37:443',
'http://vlasiha-zato.ru/',
'http://45.130.41.26:80',
'https://45.130.41.26:443',
'http://inhimkicity.ru/',
'https://tolknews.ru/',
'https://vesti42.ru/',
'http://91.215.42.94:80',
'https://91.215.42.94:443',
'https://magadanpravda.ru/',
'http://185.200.242.211:80',
'https://185.200.242.211:443',
'https://stepnaya-now.ru/',
'https://vdvsn.ru/',
'http://185.219.40.214:80',
'https://185.219.40.214:443',
'https://www.tkr.su/',
'http://37.140.192.99:80',
'https://37.140.192.99:443',
'https://lipetsktime.ru/',
'http://178.250.152.128:80',
'https://178.250.152.128:443',
'https://newsvladimir.ru/',
'http://91.215.41.19:80',
'https://91.215.41.19:443',
'https://vesti-k.ru/online/',
'http://94.228.120.196:80',
'https://94.228.120.196:443',
'http://www.onetvm.ru/',
'http://82.146.41.93:80',
'https://82.146.41.93:443',
'https://zavtra.ru/',
'http://45.80.68.220:80',
'http://www.dvinainform.ru/',
'http://178.208.71.43:80',
'https://178.208.71.43:443',
'https://www.city-n.ru/',
'http://62.231.186.10:80',
'https://62.231.186.10:443',
'https://prufy.ru/',
'http://85.119.149.231:80',
'https://85.119.149.231:443',
'https://rv-ryazan.ru/',
'http://212.193.48.97:80',
'https://212.193.48.97:443',
'https://vesti-perm.ru/',
'http://188.128.114.121:80',
'https://188.128.114.121:443',
'https://onlinevologda.ru/',
'http://80.87.203.17:80',
'https://80.87.203.17:443',
'https://penza-online.ru/',
'http://185.165.123.215:80',
'https://185.165.123.215:443',
'https://www.gazeta-slovo.ru/',
'http://37.140.192.27:80',