-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
921 lines (757 loc) · 38.4 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-115448094-3"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'UA-115448094-3')
</script>
<title>"Web Deformation"</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="author" content="Max Alyokhin" />
<meta name="description" content="Aesthetic processor of html-code. | Эстетический процессор html-кода." />
<meta name="keywords" content="non-functional algorithms, нефункциональные алгоритмы" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Web Deformation" />
<meta property="og:url" content="https://deformation.stranno.su/" />
<meta property="og:title" content="Web Deformation" />
<meta property="og:description" content="Aesthetic processor of html-code" />
<meta property="og:image" content="favicons/og.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="536" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="favicons/og.png" />
<link rel="shortcut icon" type="image/png" href="https://deformation.stranno.su/favicons/w.png" id="favicon-animation" />
<!-- Анимация favicon -->
<script>
const favicons = ['favicons/w.png', 'favicons/e.png', 'favicons/b.png', 'favicons/d.png', 'favicons/e.png', 'favicons/f.png', 'favicons/o.png', 'favicons/r.png', 'favicons/m.png', 'favicons/a.png', 'favicons/t.png', 'favicons/i.png', 'favicons/o.png', 'favicons/n.png']
let i = 0
setInterval(function () {
let favicon = favicons[i]
document.getElementById('favicon-animation').href = favicon
if (i < favicons.length - 1) {
i++
} else i = 0
}, 500)
</script>
<style>
@font-face {
font-family: roboto-mono-medium;
src: url(RobotoMono-Regular.ttf);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
transition: all 0.5s ease !important;
}
@keyframes error {
0% {
transform: translateX(0%);
}
25% {
transform: translateX(10px);
}
50% {
transform: translateX(-10px);
}
75% {
transform: translateX(0%);
}
}
.error-input {
background: #ffd9d9;
border: 1px solid red !important;
transition: all 2s ease !important;
animation: error 1s ease;
}
/*.error-input::placeholder {*/
/* color: black;*/
/*}*/
html,
body {
height: 100%;
}
p {
padding-bottom: 16px;
}
.search-for-deformation {
display: flex;
align-items: center;
height: 100%;
flex-direction: column;
font-family: roboto-mono-medium;
transition: all 1s ease-in;
background-color: white;
transition: all 0.5s ease;
font-size: 12px;
padding: 25px;
}
.search-for-deformation input {
border: 1px solid black;
border-radius: 3px;
-webkit-border-radius: 3px;
-webkit-appearance: none;
appearance: none;
padding: 0;
height: 45px;
width: 100%;
text-align: center;
font-family: roboto-mono-medium;
transition: all 0.5s ease;
}
.search-for-deformation input:focus {
outline: 0;
}
.search-for-deformation input[type='submit'] {
background-color: #272727;
line-height: 0px;
color: white;
margin-right: 25px;
margin-bottom: 25px;
cursor: pointer;
}
.search-for-deformation input[type='submit']:hover {
background-color: black;
}
.search-for-deformation input[type='submit']:disabled {
opacity: 0.4;
}
.search-for-deformation input[type='submit']:disabled:hover {
background-color: #666666;
}
.search-for-deformation input[type='url']:hover {
background-color: whitesmoke;
}
.search-for-deformation input[type='button'] {
background-color: #7bbcff;
line-height: 0px;
color: white;
max-width: 100px;
padding: 10px;
cursor: pointer;
}
.search-for-deformation input[type='button']:hover {
background-color: #3397ff;
line-height: 0px;
color: white;
}
.blue-button {
background-color: #007eff !important;
}
.siteName {
margin-right: 25px;
}
.search-for-deformation form {
display: flex;
width: 718px;
}
.search-for-deformation form p {
text-align: center;
}
.container-for-deformation {
opacity: 0;
transition: all 1s ease-in;
height: 100%;
display: none;
}
.information {
width: 718px;
}
.ru-yandex,
.ru-google,
.ru-bandcamp,
.ru-aliexpress,
.ru-reddit,
.ru-behance,
.ru-netflix,
.ru-youtube,
.ru-github,
.ru-transmediale,
.ru-electronica,
.ru-rhizome,
.ru-wikipedia,
.ru-amazon {
cursor: pointer;
color: blue;
padding: 4px;
display: inline-block;
}
.ru-yandex:hover,
.ru-google:hover,
.ru-bandcamp:hover,
.ru-aliexpress:hover,
.ru-reddit:hover,
.ru-behance:hover,
.ru-netflix:hover,
.ru-youtube:hover,
.ru-github:hover,
.ru-transmediale:hover,
.ru-electronica:hover,
.ru-rhizome:hover,
.ru-wikipedia:hover,
.ru-amazon:hover {
text-decoration: underline;
}
.en-yandex,
.en-google,
.en-bandcamp,
.en-aliexpress,
.en-reddit,
.en-behance,
.en-netflix,
.en-youtube,
.en-github,
.en-transmediale,
.en-electronica,
.en-rhizome,
.en-wikipedia,
.en-amazon {
cursor: pointer;
color: blue;
padding: 4px;
display: inline-block;
}
.en-yandex:hover,
.en-google:hover,
.en-bandcamp:hover,
.en-aliexpress:hover,
.en-reddit:hover,
.en-behance:hover,
.en-netflix:hover,
.en-youtube:hover,
.en-github:hover,
.en-transmediale:hover,
.en-electronica:hover,
.en-rhizome:hover,
.en-wikipedia:hover,
.en-amazon:hover {
text-decoration: underline;
}
.goal {
padding-bottom: 10px;
}
img {
width: auto;
height: auto;
}
.information__header {
display: flex;
justify-content: space-between;
}
.language--off {
opacity: 0;
}
.language-container {
position: relative;
}
iframe {
width: 100%;
height: 384px;
}
@media screen and (max-width: 767px) {
iframe {
height: 50vw;
}
.search-for-deformation {
height: auto;
padding: 25px;
text-align: justify;
}
.search-for-deformation input {
width: 100%;
}
.search-for-deformation input[type='button'] {
background-color: #7bbcff;
line-height: 0px;
color: white;
max-width: 100%;
}
.search-for-deformation form {
flex-direction: column;
width: 100%;
padding-top: 8px;
}
.information {
width: 100%;
}
.siteName {
margin-right: 0;
margin-bottom: 25px;
}
.goal {
padding-bottom: 0;
}
}
@media screen and (max-height: 1000px) {
.search-for-deformation {
height: auto;
padding: 25px;
}
}
</style>
</head>
<body>
<!-- Форма ввода адреса сайта -->
<div class="search-for-deformation">
<div class="information">
<p class="information__header">
<span style="text-decoration: underline">WEB DEFORMATION</span>
<span id="information__language" style="text-decoration: underline; cursor: pointer; color: blue">RU/EN</span>
</p>
<div class="language-container">
<div id="ru" class="language--off" style="display: none">
<p style="font-style: italic">Эстетический процессор html-кода</p>
<p>Мы живём в эпоху экранной культуры. Экран даёт нам работу и организует наш досуг. Крупнейшие веб-сервисы и их метафоры пользовательского интерфейса являются значимой частью нашей повседневности. А наша задача — делать знакомое странным.</p>
<p>
Данное веб-приложение получает доступ к исходному коду веб-сайта и вмешивается в логику его работы. Каждый раз это реализуется уникальной комбинацией методов. Алгоритм осуществляет порядка 1000 вторжений в код в секунду, используя для этого 369 151 937 способов.
</p>
<p style="font-style: italic">
Посвящается Netochka Nezvanova. <br />
В честь двадцатилетия nebula.m81.
</p>
<p style="text-decoration: underline; text-align: left">Подробности</p>
<p>Алгоритм также описывает все свои действия в консоли, работа которой доступна в десктопной версии сайта (F12 → Console) и выглядит так:</p>
<p><iframe src="https://www.youtube.com/embed/fI4BKe_HWqQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<p>Консоль интересна тем, что это отдельный вид интерфейса и здесь мы можем одновременно наблюдать и графическое и текстовое выражение одних и тех же процессов.</p>
<p>
На видео, кстати, запечатлён интересный момент. Там деформируется сайт Amazon, который, видимо, чует неладное и выдаёт плашку о том, что, мол, мы заметили подозрительную активность, введите капчу, чтобы доказать что вы не робот. Ну, а это на самом деле и есть робот,
который тут же расправляется с кодом страницы.
</p>
<p>
Работа посвящается двадцатилетию веб-браузера nebula.m81, созданного анонимным автором Netochka Nezvanova, который интерпретировал код веб-сайтов в <a href="https://anthology.rhizome.org/m9ndfukc-0-99" target="_blank" rel="noopener noreferrer">графику</a> и
<a href="http://www.medienkunstnetz.de/works/nebula/" target="_blank" rel="noopener noreferrer">звук</a>.
</p>
<p>Деформация реализована в виде бесконечного цикла, перезапускающего каждую миллисекунду трижды вложенную random-функцию, выбирающую элемент-свойство-значение и встраивающую вычисленную мутацию в код.</p>
<p>Количество способов деформации, указанное выше (369 151 937), получается если пересчитать все HTML-теги, их свойства и диапазон возможных значений, из которых выбирает random-функция.</p>
<p style="text-decoration: underline; text-align: left">Предуведомление о технических ограничениях</p>
<p>Некоторые сайты невозможно деформировать ввиду технических особенностей их архитектуры.</p>
<p>Мощность алгоритма достаточна, чтобы на некоторых устройствах вывести из строя весь браузер. Будьте к этому готовы, желательно закрыть соседние вкладки. Используйте lite-режим (это порядка 6 вторжений в секунду), чтобы обойти неполадки.</p>
<p>Чтобы запустить деформацию заново — перезагрузите страницу.</p>
<p class="sites">
Ниже небольшой список веб-ресурсов, на которых работа алгоритма протестирована:<br /><br />
— <span class="ru-google">https://www.google.com</span><br />
— <span class="ru-yandex">https://yandex.ru</span><br />
— <span class="ru-reddit">https://www.reddit.com</span><br />
— <span class="ru-netflix">https://www.netflix.com</span><br />
— <span class="ru-bandcamp">https://bandcamp.com</span><br />
— <span class="ru-behance">https://www.behance.net</span><br />
— <span class="ru-amazon">https://www.amazon.com</span><br />
— <span class="ru-aliexpress">https://aliexpress.com</span><br />
— <span class="ru-wikipedia">https://wikipedia.org</span><br />
— <span class="ru-youtube">https://www.youtube.com</span><br />
— <span class="ru-github">https://github.com</span>
</p>
<p class="goal" style="text-align: center; padding-top: 15px">Цель для деформации:</p>
<br />
</div>
<div id="en" class="language--off" style="display: none">
<p style="font-style: italic">Aesthetic processor of html-code</p>
<p>We live in the age of screen culture. The screen gives us a job and organizes our leisure time. The largest web services and their metaphors of the user interface are an important part of our everyday life. And our task is to make the familiar — strange.</p>
<p>This web application accesses the source code of the website and interferes with its logic. Each time it is implemented by a unique combination of methods. The algorithm performs about 1000 interventions per second, using 369 151 937 methods.</p>
<p style="font-style: italic">
Dedicated to Netochka Nezvanova. <br />
In the 20th anniversary of nebula.m81.
</p>
<p style="text-decoration: underline; text-align: left">Details</p>
<p>The algorithm also describes all its actions in the console, which is available in the desktop version of the site (F12 → Console) and looks like this:</p>
<p><iframe src="https://www.youtube.com/embed/fI4BKe_HWqQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<p>The console is interesting because it is a specific type of interface and here we can simultaneously observe both graphical and text expression of the same processes.</p>
<p>
The video captured an interesting moment. It deforms the site of Amazon, which sees something strange and gives out a plaque that "we noticed suspicious activity, enter the captcha to prove that you are not a robot". Well, this is actually a robot that immediately
resolves the code of the page.
</p>
<p>
The work is dedicated to the 20th anniversary of the web browser nebula.m81, created by the anonymous author Netochka Nezvanova, who interpreted the code of websites into the <a href="https://anthology.rhizome.org/m9ndfukc-0-99" target="_blank" rel="noopener noreferrer">graphics</a> and
<a href="http://www.medienkunstnetz.de/works/nebula/" target="_blank" rel="noopener noreferrer">sound</a>.
</p>
<p>Deformation is realized in the form of an infinite cycle, restarting every millisecond three times nested random-function (we can call it a randomness of the third order), which selects the element-property-value and embeds the calculated mutation in the code.</p>
<p>The number of deformation methods described above (369 151 937) is obtained by recalculating all the tags, their properties and the range of possible values from which the random function chooses.</p>
<p style="text-decoration: underline; text-align: left">Notification of technical restrictions</p>
<p>Some sites cannot be deformed due to technical features of their architecture.</p>
<p>The power of the algorithm is sufficient to disable the entire browser on some devices. Be prepared for this, it is desirable to close the neighboring tabs. Use lite-mode (about 6 interventions per second) to bypass the problem.</p>
<p>To restart the deformation, reload the page.</p>
<p class="sites">
Below is a small list of web resources where the algorithm has been tested:<br /><br />
— <span class="en-google">https://www.google.com</span><br />
— <span class="en-yandex">https://yandex.ru</span><br />
— <span class="en-reddit">https://www.reddit.com</span><br />
— <span class="en-netflix">https://www.netflix.com</span><br />
— <span class="en-bandcamp">https://bandcamp.com</span><br />
— <span class="en-behance">https://www.behance.net</span><br />
— <span class="en-amazon">https://www.amazon.com</span><br />
— <span class="en-aliexpress">https://aliexpress.com</span><br />
— <span class="en-wikipedia">https://wikipedia.org</span><br />
— <span class="en-youtube">https://www.youtube.com</span><br />
— <span class="en-github">https://github.com</span>
</p>
<p class="goal" style="text-align: center; padding-top: 15px">Target for deformation:</p>
<br />
</div>
</div>
<form name="data" style="display: none">
<input class="siteName" type="url" name="address" placeholder="Full URL-address" value="http://" required />
<input id="postSiteName" type="submit" value="DEFORMATE" />
<input id="regime" type="button" value="Lite off" />
</form>
</div>
</div>
<script>
// Переключение языков
let clickPlaceholder = null
const langMarkerFromURL = document.location.search.slice(1)
if (langMarkerFromURL === 'ru') {
clickPlaceholder = true
} else if (langMarkerFromURL === 'en') {
clickPlaceholder = false
} else {
clickPlaceholder = 'ru' == navigator.language.slice(0, 2) ? true : false
}
let placeholder = document.querySelector('.siteName')
function languageChange() {
if (!clickPlaceholder) {
console.log('%cWelcome to the Web Deformation.', 'color: #ff5c5c')
console.log("%cThe capture module is running and waiting for the victim's URL.", 'color: #bada55')
// Переводим кнопки
placeholder.placeholder = 'Full URL-address'
postSiteName.value = 'DEFORMATE'
clickPlaceholder = 1
// Переводим текст
ru.classList.add('language--off')
setTimeout(() => {
ru.style.display = 'none'
}, 500)
setTimeout(() => {
en.style.display = 'block'
document.querySelector('form').style.display = 'flex'
en.classList.remove('language--off')
}, 500)
} else {
console.log('%cВас приветствует Web Deformation.', 'color: #ff5c5c')
console.log('%cМодуль захвата запущен и ожидает URL-адрес жертвы.', 'color: #bada55')
placeholder.placeholder = 'Полный URL-адрес'
postSiteName.value = 'ДЕФОРМИРОВАТЬ'
clickPlaceholder = 0
en.classList.add('language--off')
setTimeout(() => {
en.style.display = 'none'
}, 500)
setTimeout(() => {
ru.style.display = 'block'
document.querySelector('form').style.display = 'flex'
ru.classList.remove('language--off')
}, 500)
}
}
window.addEventListener('load', () => {
console.clear()
languageChange()
})
information__language.onclick = languageChange
</script>
<!-- Сюда грузится захваченный контент -->
<div class="container-for-deformation"></div>
<!-- /Сюда грузится захваченный контент -->
<!-- Здесь обработка контента -->
<script>
// Модуль захвата
// Подсказки с адресами
let sites = [...document.querySelectorAll('.sites span')]
sites.forEach((site) => {
site.addEventListener('click', () => {
document.querySelector('#postSiteName').disabled = false
document.querySelector('.siteName').value = site.innerText
window.scrollTo({ top: 9999, behavior: 'smooth' })
})
})
// Валидация формы
function validateUrl(value) {
let expression = /^((http(s?)?):\/\/)?([wW]{3}\.)?[a-zA-Z0-9\-.]+\.[a-zA-Z]{2,}(\.[a-zA-Z]{2,})?$/g
let regexp = new RegExp(expression)
return regexp.test(value)
}
// Изначально отправить ничего нельзя
document.querySelector('#postSiteName').disabled = true
document.querySelector('.siteName').addEventListener('input', () => {
let url = document.querySelector('.siteName').value
if (validateUrl(url)) {
document.querySelector('#postSiteName').disabled = false
} else {
document.querySelector('#postSiteName').disabled = true
}
})
let siteNameString = '' // Переменная для подстановки в модуле коррекции. siteName не подходит из-за FormData формата, нужного для XHR
let lite = 1
let click = 1
regime.onclick = function () {
this.classList.toggle('blue-button')
if (click) {
lite = 200
click = 0
this.value = 'Lite on'
if (clickPlaceholder) {
console.log('%cLite-mode on', 'color: #007eff')
} else {
console.log('%cЛёгкий режим включён', 'color: #007eff')
}
} else {
lite = 1
click = 1
this.value = 'Lite off'
if (clickPlaceholder) {
console.log('%cLite-mode off', 'color: #7bbcff')
} else {
console.log('%cЛёгкий режим выключен', 'color: #7bbcff')
}
}
}
postSiteName.onclick = function (e) {
// По клику на "Деформировать"
e.preventDefault() // Чтобы не перезагружалась страница при отправке формы
let siteName = new FormData(document.forms.data) // Записываем введённые пользователем данные
for (let key of siteName.keys()) {
// Перебираем ключи в объекте, получаем его значение (address: xxx)
siteNameString = siteName.get(key) // Записываем в глобальную переменную в формате строки, а не в формате FormData
siteNameString = siteNameString.replace(/http:\/\/|https:\/\/|\/$/, '') // Убираем из адреса http или https для корректности последующей подстановки
siteNameString = siteNameString.replace(/\/\b.*$/, '') // Убираем блок букв-цифр от слэша до конца
siteNameString = siteNameString.replace(/\/$/, '') // Убираем сам слэш в конце
if (clickPlaceholder) {
console.log(`Capturing data at the address ${siteName.get(key)}`)
} else {
console.log(`Захват данных по адресу ${siteName.get(key)}`)
}
}
// Отправка и получение данных
let xhr = new XMLHttpRequest() // Создаём XHR-объект
xhr.open('POST', 'content.php') // Как и куда отправить
xhr.send(siteName) // Что отправить
xhr.onload = () => {
let text = xhr.response
if (text.indexOf('file_get_contents') === -1) {
// Смена экранов
document.querySelector('.search-for-deformation').style.opacity = 0 // Плавно убираем прозрачность
// setTimeout(() => document.querySelector('.search-for-deformation').style.display = 'none', 1000); // Удаляем модуль поиска
setTimeout(() => document.querySelector('.search-for-deformation').remove(), 1000) // Удаляем модуль поиска
setTimeout(() => (document.querySelector('.container-for-deformation').style.display = 'block'), 1000) // Показываем захваченный контент
setTimeout(() => (document.querySelector('.container-for-deformation').style.opacity = 1), 1000) // Показываем захваченный контент
document.querySelector('.container-for-deformation').innerHTML = xhr.response // Как загрузится ответ от сервера, вставить в документ XHR-ответ
if (clickPlaceholder) {
console.log(`The capture is complete.`)
} else {
console.log('Захват завершён.')
}
correction() // Вызываем модуль коррекции
} else {
document.querySelector('.siteName').value = ''
document.querySelector('.siteName').classList.add('error-input')
setTimeout(() => {
document.querySelector('.siteName').classList.remove('error-input')
}, 2000)
if (clickPlaceholder) {
document.querySelector('.siteName').placeholder = 'This address does not exist'
} else {
document.querySelector('.siteName').placeholder = 'Адреса не существует'
}
}
}
xhr.onprogress = function (event) {
// Мониторим количество загружаемых данных
if (event.lengthComputable) {
if (clickPlaceholder) {
console.log(`${event.loaded} of ${event.total} bytes received`)
} else {
console.log(`Получено ${event.loaded} из ${event.total} байт`)
}
} else {
if (clickPlaceholder) {
console.log(`${event.loaded} bytes received`)
} // Если в ответе нет заголовка Content-Length
else {
console.log(`Получено ${event.loaded} байт`)
}
}
}
xhr.onerror = () => {
if (clickPlaceholder) {
console.log(`Connection error`)
} else {
console.log('Ошибка соединения.')
} // Если связи нет
}
}
</script>
<script>
// Модуль коррекции
function correction() {
if (clickPlaceholder) {
console.log('%cThe correction module has been started.', 'color: #bada55')
} else {
console.log('%cМодуль коррекции запущен.', 'color: #bada55')
}
// Коррекция тегов <link>
let linkList = document.body.querySelectorAll('link[href]') // Здесь все теги link
if (clickPlaceholder) {
console.log(`Link-tags is corrected: ${linkList.length}`)
} else {
console.log(`Скорректировано тегов link: ${linkList.length}`)
}
for (let link of linkList) {
// Перебираем массив тегов
let newLink = link.cloneNode(true) // Клонируем, чтобы не испортить нормальные ссылки с абсолютными путями
newLink.href = newLink.href.replace('deformation.stranno.su', siteNameString) // Изменяем клонированный элемент
link.after(newLink) // Добавляем изменённую копию после оригинального тега
}
// Коррекция тегов <script>
let scriptList = document.body.querySelectorAll('script[src]') // Здесь все теги script
if (clickPlaceholder) {
console.log(`Script-tags is corrected: ${scriptList.length}`)
} else {
console.log(`Скорректировано тегов script: ${scriptList.length}`)
}
for (let script of scriptList) {
// Перебираем массив тегов
let newScript = script.cloneNode(true) // Клонируем, чтобы не испортить нормальные ссылки с абсолютными путями
newScript.src = newScript.src.replace('deformation.stranno.su', siteNameString) // Изменяем клонированный элемент
script.after(newScript) // Добавляем изменённую копию после оригинального тега
}
// Коррекция тегов <img>
let imgList = document.body.querySelectorAll('img[src]') // Здесь все теги img. Тут не клонируем, чтобы не дублировались картинки.
if (clickPlaceholder) {
console.log(`Img-tags is corrected: ${imgList.length}`)
} else {
console.log(`Скорректировано тегов img: ${imgList.length}`)
}
for (let img of imgList) {
// Перебираем массив тегов
img.src = img.src.replace('deformation.stranno.su', siteNameString) // Изменяем элемент
}
setTimeout(() => {
if (clickPlaceholder) {
console.log('Correction complete.')
} else {
console.log('Коррекция завершена.')
}
})
setTimeout(() => deformation())
}
</script>
<script>
// Модуль деформации
function deformation() {
if (clickPlaceholder) {
console.log('%cThe deformation module has been started.', 'color: #bada55')
} else {
console.log('%cМодуль деформации запущен.', 'color: #bada55')
}
// Все теги
const tags = ['img', 'a', 'p', 'span', 'button', 'input', 'h1', 'svg', 'li', 'div', 'table']
let tagNumber
let elements
let elementNumber
// Все свойства с пикселями
const propertiesPixels = ['width:', 'height:', 'margin:', 'padding:', 'top:', 'left:', 'font-size:', 'border:', 'line-height:', 'text-indent:']
let propertyPixelsNumber
// Диапазон рандома для пикселей
const maxPixels = 400
const minPixels = 10
let valuePixels // Значение свойства в пикселях
// Все свойства с Rgb
const propertiesRgb = ['color:', 'background:']
let propertyRgbNumber
const maxRgb = 255 // Предел рандома
// Переменные для каждого субпикселя и альфа-канала
let valueRed
let valueGreen
let valueBlue
let valueRgb
// Все значения свойства mix-blend-mode
const valuesBlend = ['multiply', 'difference', 'luminosity', 'saturation', 'exclusion']
let valueBlendNumber
const typeTransform = ['translate', 'rotate', 'scale']
let typeTransformNumber
let valueTransform
let typeOfProperty // Для выбора типа изменяемого свойства
let propertyWithValue // Свойство со значением
setTimeout(function () {
// Задержка для возможности прочитать начало логов в консоли
setInterval(function () {
// Выбираем цель
tagNumber = Math.floor(Math.random() * (tags.length - 2)) + 2 // Номер элемента массива
elements = document.querySelectorAll(tags[tagNumber]) // Получаем все элементы выбранного тега
// Если элементов нет
if (elements.length == 0) {
tagNumber = 9 // Выбираем div, который есть всегда
elements = document.querySelectorAll(tags[tagNumber])
}
elementNumber = Math.floor(Math.random() * elements.length) // Получаем номер случайного элемента
// Исключаем наши два divа
if (document.querySelectorAll(tags[tagNumber])[elementNumber].className == 'search-for-deformation' || document.querySelectorAll(tags[tagNumber])[elementNumber].className == 'container-for-deformation') {
elementNumber++
}
// console.log(`Выбранный тег = ${tags[tagNumber]}`);
// console.log(`Количество элементов выбранного тега = ${elements.length}`);
// console.log(`Номер выбранного элемента = ${elementNumber}`);
typeOfProperty = Math.floor(Math.random() * 4)
switch (typeOfProperty) {
case 0:
// Размеры
propertyPixelsNumber = Math.floor(Math.random() * propertiesPixels.length) // Номер элемента массива
valuePixels = Math.floor(Math.random() * (maxPixels - minPixels)) + minPixels // Случайное значение свойства
propertyWithValue = `${propertiesPixels[propertyPixelsNumber]} ${valuePixels}px` // Результат
// console.log(`Внедряемое свойство = ${propertyWithValue}`);
break
case 1:
// Цвета
propertyRgbNumber = Math.floor(Math.random() * propertiesRgb.length) // Номер элемента массива
valueRed = Math.floor(Math.random() * maxRgb) // Случайное значение свойства
valueGreen = Math.floor(Math.random() * maxRgb) // Случайное значение свойства
valueBlue = Math.floor(Math.random() * maxRgb) // Случайное значение свойства
propertyWithValue = `${propertiesRgb[propertyRgbNumber]} rgb(${valueRed}, ${valueGreen}, ${valueBlue})` // Результат
// console.log(`Внедряемое свойство = ${propertyWithValue}`);
break
case 2:
// mix-blend-mode
valueBlendNumber = Math.floor(Math.random() * 5)
propertyWithValue = `mix-blend-mode: ${valuesBlend[valueBlendNumber]}`
// console.log(`Внедряемое свойство = ${propertyWithValue}`);
break
case 3:
// transform
typeTransformNumber = Math.floor(Math.random() * 3)
switch (typeTransformNumber) {
case 0:
valueTransform = Math.floor(Math.random() * (400 - 10)) + 10
propertyWithValue = `transform: ${typeTransform[typeTransformNumber]}(${valueTransform}px, ${valueTransform}px)`
break
case 1:
valueTransform = Math.floor(Math.random() * (360 - 10)) + 10
propertyWithValue = `transform: ${typeTransform[typeTransformNumber]}(${valueTransform}deg)`
break
case 2:
valueTransform = Math.random() * (2 - 0.1) + 0.1
propertyWithValue = `transform: ${typeTransform[typeTransformNumber]}(${valueTransform})`
break
}
// console.log(`Внедряемое свойство = ${propertyWithValue}`);
break
}
document.querySelectorAll(tags[tagNumber])[elementNumber].style = propertyWithValue // Деформируем
if (clickPlaceholder) {
console.log(`Selected tag ${tags[tagNumber]} (${elementNumber} of ${elements.length}) and deformed with the property ${propertyWithValue}`)
} else {
console.log(`Выбран тег ${tags[tagNumber]} (${elementNumber} из ${elements.length}) и деформирован со свойством ${propertyWithValue}`)
}
}, lite)
}, 1500)
}
</script>
<!-- /Здесь обработка контента -->
</body>
</html>