-
Notifications
You must be signed in to change notification settings - Fork 0
/
nohup.out
12543 lines (12332 loc) · 772 KB
/
nohup.out
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
Traceback (most recent call last):
File "manage.py", line 15, in <module>
execute_from_command_line(sys.argv)
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/management/__init__.py", line 381, in execute_from_command_line
utility.execute()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/management/__init__.py", line 337, in execute
autoreload.check_errors(django.setup)()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/utils/autoreload.py", line 54, in wrapper
fn(*args, **kwargs)
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/__init__.py", line 24, in setup
apps.populate(settings.INSTALLED_APPS)
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/apps/registry.py", line 91, in populate
app_config = AppConfig.create(entry)
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/apps/config.py", line 90, in create
module = import_module(entry)
File "/usr/local/python3.7.6/lib/python3.7/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1006, in _gcd_import
File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 728, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/contrib/admin/__init__.py", line 4, in <module>
from django.contrib.admin.filters import (
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/contrib/admin/filters.py", line 10, in <module>
from django.contrib.admin.options import IncorrectLookupParameters
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/contrib/admin/options.py", line 17, in <module>
from django.contrib.admin.templatetags.admin_urls import add_preserved_filters
File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 724, in exec_module
File "<frozen importlib._bootstrap_external>", line 818, in get_code
File "<frozen importlib._bootstrap_external>", line 917, in get_data
KeyboardInterrupt
Watching for file changes with StatReloader
Watching for file changes with StatReloader
Not Found: /
[14/Apr/2021 19:50:45] "GET / HTTP/1.1" 404 2176
Not Found: /
[14/Apr/2021 19:50:47] "GET / HTTP/1.1" 404 2176
[14/Apr/2021 19:50:53] "GET /admin/ HTTP/1.1" 200 11138
[14/Apr/2021 19:50:53] "GET /static/lib/Hui-iconfont/1.0.8/iconfont.css HTTP/1.1" 200 16591
[14/Apr/2021 19:50:53] "GET /static/h-ui.admin/css/H-ui.admin.css HTTP/1.1" 200 7185
[14/Apr/2021 19:50:53] "GET /static/h-ui.admin/skin/default/skin.css HTTP/1.1" 200 1193
[14/Apr/2021 19:50:53] "GET /static/h-ui.admin/css/style.css HTTP/1.1" 200 47
[14/Apr/2021 19:50:53] "GET /film/welcome/ HTTP/1.1" 200 2178
[14/Apr/2021 19:50:54] "GET /static/jquery_cookie/jquery.cookie.js HTTP/1.1" 200 3240
[14/Apr/2021 19:50:54] "GET /static/h-ui.admin/js/H-ui.admin.js HTTP/1.1" 200 8793
[14/Apr/2021 19:50:54] "GET /static/lib/layer/2.4/layer.js HTTP/1.1" 200 19843
[14/Apr/2021 19:50:54] "GET /static/h-ui/css/H-ui.css HTTP/1.1" 200 212037
[14/Apr/2021 19:50:54] "GET /static/lib/jquery.contextmenu/jquery.contextmenu.r2.js HTTP/1.1" 200 4298
[14/Apr/2021 19:50:54] "GET /static/h-ui/js/H-ui.min.js HTTP/1.1" 200 149505
[14/Apr/2021 19:50:55] "GET /static/h-ui.admin/skin/default/icon_arrow.png HTTP/1.1" 200 1484
[14/Apr/2021 19:50:55] "GET /static/h-ui.admin/images/acrossTab/acrossTab-2.png HTTP/1.1" 200 5710
[14/Apr/2021 19:50:56] "GET /static/JQuery.js HTTP/1.1" 200 282115
[14/Apr/2021 19:50:56] "GET /static/lib/jquery/1.9.1/jquery.min.js HTTP/1.1" 200 92629
[14/Apr/2021 19:50:57] "GET /static/lib/Hui-iconfont/1.0.8/iconfont.woff HTTP/1.1" 200 80688
[14/Apr/2021 19:50:59] "GET /static/lib/layer/2.4/skin/layer.css HTTP/1.1" 200 14042
[14/Apr/2021 19:51:09] "GET /film/login_out/?action=logout HTTP/1.1" 200 74
[14/Apr/2021 19:51:15] "GET /film/index/ HTTP/1.1" 200 15627
[14/Apr/2021 19:51:15] "GET /static/swiper/swiper.min.css HTTP/1.1" 200 19788
[14/Apr/2021 19:51:15] "GET /static/film/css/base.css HTTP/1.1" 200 597
[14/Apr/2021 19:51:15] "GET /static/img/login/3.jpg HTTP/1.1" 200 218228
[14/Apr/2021 19:51:15] "GET /static/img/login/5.jpg HTTP/1.1" 200 153524
Not Found: /media/film/20210409/mao2.jpg
[14/Apr/2021 19:51:18] "GET /media/film/20210409/mao2.jpg HTTP/1.1" 404 1814
Not Found: /media/film/20210409/r1_GCBtLqr.jpg
[14/Apr/2021 19:51:19] "GET /media/film/20210409/r1_GCBtLqr.jpg HTTP/1.1" 404 1832
Not Found: /media/film/20210409/t1.jpg
[14/Apr/2021 19:51:19] "GET /media/film/20210409/t1.jpg HTTP/1.1" 404 1808
[14/Apr/2021 19:51:20] "GET /static/img/login/2.jpg HTTP/1.1" 200 454151
[14/Apr/2021 19:51:21] "GET /static/swiper/swiper.js HTTP/1.1" 200 281050
[14/Apr/2021 19:51:23] "GET /static/img/login/1.jpg HTTP/1.1" 200 283031
[14/Apr/2021 19:51:26] "GET /film/user_movie_detail/?movie_id=3 HTTP/1.1" 200 13937
[14/Apr/2021 19:51:26] "GET /static/img/login/4.jpg HTTP/1.1" 200 379788
Not Found: /media/film/20210409/mao2.jpg
[14/Apr/2021 19:51:26] "GET /media/film/20210409/mao2.jpg HTTP/1.1" 404 1814
[14/Apr/2021 19:51:26] "GET /static/JQuery.js HTTP/1.1" 304 0
Not Found: /media/film/20210409/mao2.jpg
[14/Apr/2021 19:52:13] "GET /media/film/20210409/mao2.jpg HTTP/1.1" 404 1814
Not Found: /media/film/20210409/t1.jpg
[14/Apr/2021 19:52:13] "GET /media/film/20210409/t1.jpg HTTP/1.1" 404 1808
Not Found: /media/film/20210409/r1_GCBtLqr.jpg
[14/Apr/2021 19:52:13] "GET /media/film/20210409/r1_GCBtLqr.jpg HTTP/1.1" 404 1832
[14/Apr/2021 19:52:13] "GET /media/film/20210412/AcadiaSunrise_ROW9443036049_1920x1080.jpg HTTP/1.1" 200 344482
[14/Apr/2021 19:52:18] "GET /film/login/ HTTP/1.1" 200 8588
[14/Apr/2021 19:52:19] "GET /static/film/css/jigsaw.css HTTP/1.1" 200 2232
[14/Apr/2021 19:52:19] "GET /static/swiper/swiper.min.css HTTP/1.1" 304 0
[14/Apr/2021 19:52:19] "GET /static/img/login/1.jpg HTTP/1.1" 304 0
[14/Apr/2021 19:52:19] "GET /static/img/login/2.jpg HTTP/1.1" 304 0
[14/Apr/2021 19:52:19] "GET /static/img/login/3.jpg HTTP/1.1" 304 0
[14/Apr/2021 19:52:19] "GET /static/img/login/5.jpg HTTP/1.1" 304 0
[14/Apr/2021 19:52:19] "GET /static/JQuery.js HTTP/1.1" 304 0
[14/Apr/2021 19:52:19] "GET /static/swiper/swiper.js HTTP/1.1" 304 0
[14/Apr/2021 19:52:19] "GET /static/film/js/jigsaw.js HTTP/1.1" 200 7253
[14/Apr/2021 19:52:19] "GET /static/img/login/6.jpg HTTP/1.1" 200 178063
[14/Apr/2021 19:52:20] "GET /static/img/login/emil.png HTTP/1.1" 200 414
[14/Apr/2021 19:52:20] "GET /static/img/login/login.png HTTP/1.1" 200 1671
[14/Apr/2021 19:52:20] "GET /static/img/login/password.png HTTP/1.1" 200 427
[14/Apr/2021 19:52:23] "GET /static/img/login/4.jpg HTTP/1.1" 200 379788
[14/Apr/2021 19:52:34] "POST /film/login_check/ HTTP/1.1" 200 11138
[14/Apr/2021 19:52:34] "GET /static/h-ui/css/H-ui.css HTTP/1.1" 304 0
[14/Apr/2021 19:52:34] "GET /static/h-ui.admin/css/H-ui.admin.css HTTP/1.1" 304 0
[14/Apr/2021 19:52:34] "GET /static/lib/Hui-iconfont/1.0.8/iconfont.css HTTP/1.1" 304 0
[14/Apr/2021 19:52:34] "GET /static/h-ui.admin/skin/default/skin.css HTTP/1.1" 304 0
[14/Apr/2021 19:52:34] "GET /static/h-ui.admin/css/style.css HTTP/1.1" 304 0
[14/Apr/2021 19:52:34] "GET /static/jquery_cookie/jquery.cookie.js HTTP/1.1" 304 0
[14/Apr/2021 19:52:35] "GET /static/h-ui/js/H-ui.min.js HTTP/1.1" 304 0
[14/Apr/2021 19:52:35] "GET /static/h-ui.admin/js/H-ui.admin.js HTTP/1.1" 304 0
[14/Apr/2021 19:52:35] "GET /static/lib/layer/2.4/layer.js HTTP/1.1" 304 0
[14/Apr/2021 19:52:35] "GET /static/lib/jquery.contextmenu/jquery.contextmenu.r2.js HTTP/1.1" 304 0
[14/Apr/2021 19:52:35] "GET /static/h-ui.admin/skin/default/icon_arrow.png HTTP/1.1" 304 0
[14/Apr/2021 19:52:35] "GET /static/lib/Hui-iconfont/1.0.8/iconfont.woff HTTP/1.1" 304 0
[14/Apr/2021 19:52:35] "GET /static/h-ui.admin/images/acrossTab/acrossTab-2.png HTTP/1.1" 304 0
[14/Apr/2021 19:52:35] "GET /static/lib/layer/2.4/skin/layer.css HTTP/1.1" 304 0
[14/Apr/2021 19:52:39] "GET /film/welcome/ HTTP/1.1" 200 2178
[14/Apr/2021 19:52:39] "GET /static/lib/jquery/1.9.1/jquery.min.js HTTP/1.1" 304 0
[14/Apr/2021 19:53:11] "GET /static/h-ui/images/acrossTab/acrossTab-close.png HTTP/1.1" 200 1541
[14/Apr/2021 19:53:11] "GET /static/h-ui.admin/images/loading.gif HTTP/1.1" 200 8476
[14/Apr/2021 19:53:11] "GET /film/film_add HTTP/1.1" 301 0
[14/Apr/2021 19:53:11] "GET /film/film_add/ HTTP/1.1" 200 8176
[14/Apr/2021 19:53:11] "GET /static/h-ui/css/H-ui.css HTTP/1.1" 304 0
[14/Apr/2021 19:53:11] "GET /static/lib/Hui-iconfont/1.0.8/iconfont.css HTTP/1.1" 304 0
[14/Apr/2021 19:53:11] "GET /static/h-ui.admin/css/H-ui.admin.css HTTP/1.1" 304 0
[14/Apr/2021 19:53:11] "GET /static/h-ui.admin/css/style.css HTTP/1.1" 304 0
[14/Apr/2021 19:53:11] "GET /static/h-ui.admin/skin/default/skin.css HTTP/1.1" 304 0
[14/Apr/2021 19:53:11] "GET /static/lib/layer/2.4/layer.js HTTP/1.1" 304 0
[14/Apr/2021 19:53:11] "GET /static/h-ui/js/H-ui.min.js HTTP/1.1" 304 0
[14/Apr/2021 19:53:11] "GET /static/lib/My97DatePicker/4.8/WdatePicker.js HTTP/1.1" 200 10179
[14/Apr/2021 19:53:11] "GET /static/lib/laypage/1.2/laypage.js HTTP/1.1" 200 3673
[14/Apr/2021 19:53:11] "GET /static/lib/jquery.validation/1.14.0/validate-methods.js HTTP/1.1" 200 10504
[14/Apr/2021 19:53:11] "GET /static/lib/jquery.validation/1.14.0/messages_zh.js HTTP/1.1" 200 1205
[14/Apr/2021 19:53:11] "GET /static/h-ui.admin/js/H-ui.admin.js HTTP/1.1" 304 0
[14/Apr/2021 19:53:11] "GET /static/lib/jquery.validation/1.14.0/jquery.validate.js HTTP/1.1" 200 42630
[14/Apr/2021 19:53:11] "GET /static/lib/layer/2.4/skin/layer.css HTTP/1.1" 304 0
[14/Apr/2021 19:53:11] "GET /static/lib/jquery.contextmenu/jquery.contextmenu.r2.js HTTP/1.1" 304 0
[14/Apr/2021 19:53:11] "GET /static/lib/ueditor/1.4.3/ueditor.config.js HTTP/1.1" 200 19790
[14/Apr/2021 19:53:11] "GET /static/lib/datatables/1.10.0/jquery.dataTables.min.js HTTP/1.1" 200 75893
[14/Apr/2021 19:53:11] "GET /static/lib/My97DatePicker/4.8/skin/WdatePicker.css HTTP/1.1" 200 144
[14/Apr/2021 19:53:13] "GET /static/lib/webuploader/0.1.5/webuploader.min.js HTTP/1.1" 200 71514
[14/Apr/2021 19:53:15] "GET /static/lib/ueditor/1.4.3/ueditor.all.min.js HTTP/1.1" 200 367806
[14/Apr/2021 19:53:21] "GET /static/lib/ueditor/1.4.3/lang/zh-cn/zh-cn.js HTTP/1.1" 200 29351
Internal Server Error: /film/film_add_check/
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/handlers/exception.py", line 34, in inner
response = get_response(request)
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/handlers/base.py", line 115, in _get_response
response = self.process_exception_by_middleware(e, request)
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/handlers/base.py", line 113, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/contrib/auth/decorators.py", line 21, in _wrapped_view
return view_func(request, *args, **kwargs)
File "/app/xiaoxu_movie/film/views.py", line 748, in film_add_check
film.save()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/db/models/base.py", line 744, in save
force_update=force_update, update_fields=update_fields)
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/db/models/base.py", line 782, in save_base
force_update, using, update_fields,
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/db/models/base.py", line 873, in _save_table
result = self._do_insert(cls._base_manager, using, fields, update_pk, raw)
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/db/models/base.py", line 911, in _do_insert
using=using, raw=raw)
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/db/models/manager.py", line 82, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/db/models/query.py", line 1186, in _insert
return query.get_compiler(using=using).execute_sql(return_id)
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/db/models/sql/compiler.py", line 1376, in execute_sql
for sql, params in self.as_sql():
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/db/models/sql/compiler.py", line 1320, in as_sql
for obj in self.query.objs
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/db/models/sql/compiler.py", line 1320, in <listcomp>
for obj in self.query.objs
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/db/models/sql/compiler.py", line 1319, in <listcomp>
[self.prepare_value(field, self.pre_save_val(field, obj)) for field in fields]
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/db/models/sql/compiler.py", line 1260, in prepare_value
value = field.get_db_prep_save(value, connection=self.connection)
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/db/models/fields/__init__.py", line 793, in get_db_prep_save
return self.get_db_prep_value(value, connection=connection, prepared=False)
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/db/models/fields/__init__.py", line 788, in get_db_prep_value
value = self.get_prep_value(value)
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/db/models/fields/__init__.py", line 1825, in get_prep_value
return int(value)
ValueError: invalid literal for int() with base 10: '0.0'
[14/Apr/2021 19:56:40] "POST /film/film_add_check/ HTTP/1.1" 500 147098
[14/Apr/2021 19:56:54] "POST /film/film_add_check/ HTTP/1.1" 200 79
/app/xiaoxu_movie/film/views.py:700: UnorderedObjectListWarning: Pagination may yield inconsistent results with an unordered object_list: <class 'film.models.Film'> QuerySet.
paginator = Paginator(film_list, 15)
[14/Apr/2021 19:56:56] "GET /film/film_list/ HTTP/1.1" 200 11514
[14/Apr/2021 19:56:56] "GET /static/h-ui/css/H-ui.css HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/lib/Hui-iconfont/1.0.8/iconfont.css HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/h-ui.admin/css/H-ui.admin.css HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/h-ui.admin/skin/default/skin.css HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/h-ui.admin/css/style.css HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/lib/jquery/1.9.1/jquery.min.js HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/lib/layer/2.4/layer.js HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/h-ui/js/H-ui.min.js HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/lib/jquery.contextmenu/jquery.contextmenu.r2.js HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/h-ui.admin/js/H-ui.admin.js HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/lib/My97DatePicker/4.8/WdatePicker.js HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/lib/datatables/1.10.0/jquery.dataTables.min.js HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/lib/Hui-iconfont/1.0.8/iconfont.woff HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/lib/laypage/1.2/laypage.js HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/lib/layer/2.4/skin/layer.css HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/lib/My97DatePicker/4.8/skin/WdatePicker.css HTTP/1.1" 304 0
[14/Apr/2021 19:56:56] "GET /static/lib/My97DatePicker/4.8/skin/datePicker.gif HTTP/1.1" 200 1043
[14/Apr/2021 19:57:18] "GET /static/lib/layer/2.4/skin/default/icon.png HTTP/1.1" 200 11493
[14/Apr/2021 19:57:19] "GET /film/film_delete/?film_id=3 HTTP/1.1" 200 34
[14/Apr/2021 19:57:19] "GET /film/film_list/ HTTP/1.1" 200 10248
[14/Apr/2021 19:57:22] "GET /film/film_delete/?film_id=4 HTTP/1.1" 200 34
[14/Apr/2021 19:57:22] "GET /film/film_list/ HTTP/1.1" 200 8953
[14/Apr/2021 19:57:26] "GET /film/film_delete/?film_id=2 HTTP/1.1" 200 34
[14/Apr/2021 19:57:27] "GET /film/film_list/ HTTP/1.1" 200 7682
[14/Apr/2021 19:57:30] "GET /film/film_list/ HTTP/1.1" 200 7682
[14/Apr/2021 19:57:33] "GET /film/login_out/?action=logout HTTP/1.1" 200 74
[14/Apr/2021 19:57:34] "GET /film/index/ HTTP/1.1" 200 14961
[14/Apr/2021 19:57:34] "GET /static/swiper/swiper.min.css HTTP/1.1" 304 0
[14/Apr/2021 19:57:34] "GET /static/film/css/base.css HTTP/1.1" 304 0
[14/Apr/2021 19:57:34] "GET /static/img/login/1.jpg HTTP/1.1" 304 0
[14/Apr/2021 19:57:34] "GET /static/img/login/2.jpg HTTP/1.1" 304 0
[14/Apr/2021 19:57:34] "GET /static/img/login/3.jpg HTTP/1.1" 304 0
[14/Apr/2021 19:57:34] "GET /static/img/login/4.jpg HTTP/1.1" 304 0
[14/Apr/2021 19:57:35] "GET /static/JQuery.js HTTP/1.1" 304 0
[14/Apr/2021 19:57:35] "GET /static/swiper/swiper.js HTTP/1.1" 304 0
[14/Apr/2021 19:57:35] "GET /static/img/login/5.jpg HTTP/1.1" 304 0
[14/Apr/2021 19:57:35] "GET /media/film/20210412/AcadiaSunrise_ROW9443036049_1920x1080.jpg HTTP/1.1" 304 0
[14/Apr/2021 19:57:35] "GET /media/film/20210414/%E5%9B%BE%E7%89%871_F9E4Xq8.png HTTP/1.1" 200 120301
[14/Apr/2021 19:57:36] "GET /film/login/ HTTP/1.1" 200 8588
[14/Apr/2021 19:57:36] "GET /static/film/css/jigsaw.css HTTP/1.1" 304 0
[14/Apr/2021 19:57:36] "GET /static/img/login/6.jpg HTTP/1.1" 304 0
[14/Apr/2021 19:57:36] "GET /static/film/js/jigsaw.js HTTP/1.1" 304 0
[14/Apr/2021 19:57:37] "GET /static/img/login/login.png HTTP/1.1" 304 0
[14/Apr/2021 19:57:37] "GET /static/img/login/emil.png HTTP/1.1" 304 0
[14/Apr/2021 19:57:37] "GET /static/img/login/password.png HTTP/1.1" 304 0
[14/Apr/2021 19:57:45] "POST /film/login_check/ HTTP/1.1" 302 0
[14/Apr/2021 19:57:45] "GET /film/index/ HTTP/1.1" 200 15198
[14/Apr/2021 19:57:45] "GET /media/film/20210414/%E5%9B%BE%E7%89%871_F9E4Xq8.png HTTP/1.1" 304 0
[14/Apr/2021 19:57:45] "GET /static/img/default.jpg HTTP/1.1" 200 14647
[14/Apr/2021 20:28:57] "GET /film/index/ HTTP/1.1" 200 14961
[14/Apr/2021 20:28:59] "GET /media/film/20210412/AcadiaSunrise_ROW9443036049_1920x1080.jpg HTTP/1.1" 200 344482
[14/Apr/2021 20:29:03] "GET /media/film/20210414/%E5%9B%BE%E7%89%871_F9E4Xq8.png HTTP/1.1" 200 120301
[14/Apr/2021 20:29:05] "GET /static/swiper/swiper.js HTTP/1.1" 200 281050
[14/Apr/2021 20:29:06] "GET /static/img/login/4.jpg HTTP/1.1" 200 379788
[14/Apr/2021 20:29:09] "GET /static/img/login/2.jpg HTTP/1.1" 200 454151
[14/Apr/2021 20:29:11] "GET /film/mail/ HTTP/1.1" 200 11210
Not Found: /media/goods/20210409/16179334771.jpg
[14/Apr/2021 20:29:11] "GET /media/goods/20210409/16179334771.jpg HTTP/1.1" 404 1838
[14/Apr/2021 20:29:11] "GET /film/mail/ HTTP/1.1" 200 11210
[14/Apr/2021 20:29:13] "GET /media/goods/20210412/AdansoniaGrandidieri_ZH-CN1154912052_1920x1080_797IeGj.jpg HTTP/1.1" 200 344724
Not Found: /favicon.ico
[14/Apr/2021 20:29:13] "GET /favicon.ico HTTP/1.1" 404 2227
[14/Apr/2021 20:29:18] "GET /film/mail/?status=1 HTTP/1.1" 200 10519
[14/Apr/2021 20:29:19] "GET /film/movie/ HTTP/1.1" 200 15298
[14/Apr/2021 20:29:22] "GET /film/movie/?cate=terrorist&country=None&year=None HTTP/1.1" 200 14556
[14/Apr/2021 20:29:23] "GET /film/movie/?cate=thriller&country=None&year=None HTTP/1.1" 200 14554
[14/Apr/2021 20:29:24] "GET /film/movie/?movie_cate=1 HTTP/1.1" 200 14932
[14/Apr/2021 20:29:26] "GET /film/movie/?movie_cate=0 HTTP/1.1" 200 14962
[14/Apr/2021 20:29:27] "GET /film/user_movie_detail/?movie_id=1 HTTP/1.1" 200 13200
[14/Apr/2021 20:29:36] "GET /film/index/ HTTP/1.1" 200 14961
[14/Apr/2021 20:29:43] "GET /film/user_movie_detail/?movie_id=5 HTTP/1.1" 200 13227
[14/Apr/2021 20:29:46] "GET /film/index_choice_movie_time/?movie_id=5 HTTP/1.1" 302 0
[14/Apr/2021 20:29:46] "GET /film/login/?next=/film/index_choice_movie_time/%3Fmovie_id%3D5 HTTP/1.1" 200 8588
[14/Apr/2021 20:29:46] "GET /static/film/js/jigsaw.js HTTP/1.1" 200 7253
[14/Apr/2021 20:29:46] "GET /static/img/login/6.jpg HTTP/1.1" 200 178063
[14/Apr/2021 20:29:58] "GET /film/user_movie_detail/?movie_id=5 HTTP/1.1" 200 13227
Not Found: /media/goods/20210409/16179334771.jpg
[14/Apr/2021 20:30:08] "GET /media/goods/20210409/16179334771.jpg HTTP/1.1" 404 1838
[14/Apr/2021 20:30:18] "GET /film/mail/?status=1 HTTP/1.1" 200 10519
[14/Apr/2021 20:30:21] "GET /film/movie HTTP/1.1" 301 0
[14/Apr/2021 20:30:23] "GET /film/movie/?cate=thriller&country=None&year=None HTTP/1.1" 200 14554
[14/Apr/2021 20:30:23] "GET /static/JQuery.js HTTP/1.1" 200 282115
[14/Apr/2021 20:30:24] "GET /static/swiper/swiper.js HTTP/1.1" 200 281050
[14/Apr/2021 20:30:26] "GET /film/movie/?movie_cate=0 HTTP/1.1" 200 14962
[14/Apr/2021 20:30:26] "GET /static/swiper/swiper.js HTTP/1.1" 200 281050
[14/Apr/2021 20:30:32] "GET /static/swiper/swiper.js HTTP/1.1" 200 281050
[14/Apr/2021 20:30:32] "GET /film/movie/?movie_cate=1 HTTP/1.1" 200 14932
[14/Apr/2021 20:30:46] "GET /film/index_choice_movie_time/?movie_id=5 HTTP/1.1" 302 0
[14/Apr/2021 20:30:51] "GET /film/user_movie_detail/?movie_id=5 HTTP/1.1" 200 13227
Not Found: /TP/public/index.php
[14/Apr/2021 20:42:01] "GET /TP/public/index.php HTTP/1.1" 404 2251
Not Found: /TP/index.php
[14/Apr/2021 20:42:01] "GET /TP/index.php HTTP/1.1" 404 2230
Not Found: /thinkphp/html/public/index.php
[14/Apr/2021 20:42:01] "GET /thinkphp/html/public/index.php HTTP/1.1" 404 2284
Not Found: /html/public/index.php
[14/Apr/2021 20:42:01] "GET /html/public/index.php HTTP/1.1" 404 2257
Not Found: /public/index.php
[14/Apr/2021 20:42:01] "GET /public/index.php HTTP/1.1" 404 2242
Not Found: /TP/html/public/index.php
[14/Apr/2021 20:42:01] "GET /TP/html/public/index.php HTTP/1.1" 404 2266
Not Found: /elrekt.php
[14/Apr/2021 20:42:01] "GET /elrekt.php HTTP/1.1" 404 2224
Not Found: /index.php
[14/Apr/2021 20:42:01] "GET /index.php HTTP/1.1" 404 2221
Not Found: /users
[14/Apr/2021 20:42:01] "POST /users?page=&size=5 HTTP/1.1" 404 2227
Not Found: /
[14/Apr/2021 20:42:01] "GET / HTTP/1.1" 404 2176
----------------------------------------
Exception happened during processing of request from ('113.200.107.113', 39438)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 169, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /
[14/Apr/2021 21:44:30] "GET / HTTP/1.1" 404 2176
----------------------------------------
Exception happened during processing of request from ('167.248.133.40', 56934)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /
[14/Apr/2021 21:44:31] "GET / HTTP/1.1" 404 2176
Not Found: /GponForm/diag_Form
[14/Apr/2021 21:55:28] "POST /GponForm/diag_Form?images/ HTTP/1.1" 404 2254
----------------------------------------
Exception happened during processing of request from ('178.175.114.212', 39335)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
----------------------------------------
Exception happened during processing of request from ('113.200.107.113', 39952)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 169, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /invoker/readonly
[14/Apr/2021 22:26:30] "GET /invoker/readonly HTTP/1.1" 404 2242
Not Found: /secure/ContactAdministrators!default.jspa
[14/Apr/2021 22:26:35] "GET /secure/ContactAdministrators!default.jspa HTTP/1.1" 404 2317
Not Found: /login
[14/Apr/2021 22:26:36] "GET /login HTTP/1.1" 404 2209
Not Found: /jenkins/login
[14/Apr/2021 22:26:38] "GET /jenkins/login HTTP/1.1" 404 2233
Not Found: /manager/html
[14/Apr/2021 22:26:38] "GET /manager/html HTTP/1.1" 404 2230
Not Found: /http:/121.5.220.12:8080/
[14/Apr/2021 22:45:26] "GET http://121.5.220.12:8080/ HTTP/1.1" 404 1685
----------------------------------------
Exception happened during processing of request from ('116.128.128.41', 62228)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /http:/106.52.197.39:25180/
[14/Apr/2021 22:52:37] "GET http://106.52.197.39:25180/ HTTP/1.1" 404 1693
Not Found: /config/getuser
[14/Apr/2021 23:16:53] "GET /config/getuser?index=0 HTTP/1.1" 404 2244
Not Found: /
[14/Apr/2021 23:50:10] "GET / HTTP/1.1" 404 2171
[15/Apr/2021 00:00:43] code 400, message Bad request version ('À#À¬À®À+À')
[15/Apr/2021 00:00:43] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 00:00:44] code 400, message Bad request version ('À\x9c\x00<\x00/\x00')
[15/Apr/2021 00:00:44] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 00:00:46] code 400, message Bad request version ('\x14uj\x00HúúÀ\x12À\x07Ì\x14\x13\x01\x13\x02Ì©ÀsÀrÀ,À¯À\xadÀ$À')
[15/Apr/2021 00:00:46] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 00:00:47] code 400, message Bad request version ("©\x7fß×\x12c§,ÇH\x94C¼\x0e®¬]õ\x88\x94ð/b:AÛ\x98\x8f¯p\x0f\x00FÚÚÀ\x13À'À/À\x14À(À0À`ÀaÀvÀw̨\x13\x05\x13\x04\x13\x03Ì\x13À\x11\x00")
[15/Apr/2021 00:00:47] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 00:00:48] code 400, message Bad request syntax ('\x16\x03\x03\x01s\x01\x00\x01o\x03\x03;|bû\x12\x9d')
[15/Apr/2021 00:00:48] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 00:00:49] code 400, message Bad request version ('À#À¬À®À+À')
[15/Apr/2021 00:00:49] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 00:00:49] code 400, message Bad request version ('À#À¬À®À+À')
[15/Apr/2021 00:00:49] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 00:00:50] code 400, message Bad request version ('À\x9c\x00<\x00/\x00')
[15/Apr/2021 00:00:50] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 00:00:50] code 400, message Bad request version ('À#À¬À®À+À')
[15/Apr/2021 00:00:50] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 00:00:51] code 400, message Bad request syntax ('\x16\x03\x01\x01\x8e\x01\x00\x01\x8a\x03\x03o¬\x16\x89')
[15/Apr/2021 00:00:51] You're accessing the development server over HTTPS, but it only supports HTTP.
Not Found: /
[15/Apr/2021 00:54:24] "GET / HTTP/1.1" 404 2176
Not Found: /
[15/Apr/2021 01:08:02] "GET / HTTP/1.1" 404 2176
Not Found: /
[15/Apr/2021 01:10:08] "GET / HTTP/1.0" 404 2178
Not Found: /manager/html
[15/Apr/2021 01:19:40] "GET /manager/html HTTP/1.1" 404 2230
----------------------------------------
Exception happened during processing of request from ('222.158.198.238', 50990)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /
[15/Apr/2021 02:18:46] "GET / HTTP/1.1" 404 2176
[15/Apr/2021 04:03:41] "GET /static/img/default.jpg HTTP/1.1" 200 14647
Not Found: /
[15/Apr/2021 06:58:09] "GET / HTTP/1.1" 404 2176
----------------------------------------
Exception happened during processing of request from ('113.200.107.113', 44917)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 169, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[15/Apr/2021 07:32:56] code 400, message Bad request version ('\x00\x00\x88À0À,À(À$À\x14À')
[15/Apr/2021 07:32:56] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 07:32:56] code 400, message Bad request version ('séõ³eFïµÕ\x0e\x98\x89ÁÌ\x02(\x9c\x1bogK.\x0e\x00\x00\x88À0À,À(À$À\x14À')
[15/Apr/2021 07:32:56] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 07:32:57] code 400, message Bad request syntax ("\x16\x03\x01\x00Æ\x01\x00\x00Â\x03\x02\x06\x9eëí\x05î×íàØY\x02ó'\x11nSðÎ@\x80MfákäÊ\x11\x92\x1aí_\x00\x00PÀ\x14À")
[15/Apr/2021 07:32:57] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 07:32:57] code 400, message Bad request version ('\x00\x00PÀ\x14À')
[15/Apr/2021 07:32:57] You're accessing the development server over HTTPS, but it only supports HTTP.
Not Found: /
[15/Apr/2021 07:32:57] "GET / HTTP/1.1" 404 2176
----------------------------------------
Exception happened during processing of request from ('101.251.200.198', 45750)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /config/getuser
[15/Apr/2021 07:45:34] "GET /config/getuser?index=0 HTTP/1.1" 404 2244
Not Found: /
[15/Apr/2021 07:59:32] "GET / HTTP/1.1" 404 2176
Not Found: /invoker/readonly
[15/Apr/2021 08:37:47] "GET /invoker/readonly HTTP/1.1" 404 2242
Not Found: /secure/ContactAdministrators!default.jspa
[15/Apr/2021 08:37:47] "GET /secure/ContactAdministrators!default.jspa HTTP/1.1" 404 2317
Not Found: /login
[15/Apr/2021 08:37:47] "GET /login HTTP/1.1" 404 2209
Not Found: /jenkins/login
[15/Apr/2021 08:37:47] "GET /jenkins/login HTTP/1.1" 404 2233
Not Found: /manager/html
[15/Apr/2021 08:37:47] "GET /manager/html HTTP/1.1" 404 2230
Not Found: /
[15/Apr/2021 09:29:53] "GET / HTTP/1.0" 404 2178
Not Found: /
[15/Apr/2021 09:40:14] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 09:40:14] "GET / HTTP/1.0" 404 2176
Not Found: /manager/html
[15/Apr/2021 09:43:56] "GET /manager/html HTTP/1.1" 404 2230
----------------------------------------
Exception happened during processing of request from ('156.96.156.102', 4709)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /shell
[15/Apr/2021 09:43:57] "GET /shell?uname%20-a HTTP/1.1" 404 2220
----------------------------------------
Exception happened during processing of request from ('156.96.156.102', 4844)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /
[15/Apr/2021 09:45:18] "GET / HTTP/1.0" 404 2176
----------------------------------------
Exception happened during processing of request from ('113.200.107.113', 47886)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 169, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
----------------------------------------
Exception happened during processing of request from ('113.200.107.113', 47887)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 169, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /
[15/Apr/2021 10:09:10] "GET / HTTP/1.0" 404 2176
Not Found: /media/film/20210409/t1.jpg
[15/Apr/2021 10:15:09] "GET /media/film/20210409/t1.jpg HTTP/1.1" 404 1808
----------------------------------------
Exception happened during processing of request from ('113.200.107.113', 48371)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 169, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /
[15/Apr/2021 10:32:34] "GET / HTTP/1.0" 404 2176
Not Found: /GponForm/diag_Form
[15/Apr/2021 10:47:20] "POST /GponForm/diag_Form?images/ HTTP/1.1" 404 2254
----------------------------------------
Exception happened during processing of request from ('45.229.55.108', 49876)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /
[15/Apr/2021 10:56:11] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 10:56:13] "HEAD / HTTP/1.1" 404 2177
[15/Apr/2021 10:56:46] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:')
[15/Apr/2021 10:56:46] " /*à Cookie: mstshash=Administr" 400 -
----------------------------------------
Exception happened during processing of request from ('113.200.107.113', 48888)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 169, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /
[15/Apr/2021 11:19:16] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 11:32:20] "HEAD / HTTP/1.0" 404 2179
Not Found: /system_api.php
[15/Apr/2021 11:32:20] "GET /system_api.php HTTP/1.1" 404 2236
Not Found: /system_api.php
[15/Apr/2021 11:32:22] "GET /system_api.php HTTP/1.1" 404 2236
Not Found: /c/version.js
[15/Apr/2021 11:32:23] "GET /c/version.js HTTP/1.1" 404 2230
Not Found: /streaming/clients_live.php
[15/Apr/2021 11:32:24] "GET /streaming/clients_live.php HTTP/1.1" 404 2272
Not Found: /stalker_portal/c/version.js
[15/Apr/2021 11:32:25] "GET /stalker_portal/c/version.js HTTP/1.1" 404 2275
Not Found: /client_area/
[15/Apr/2021 11:32:26] "GET /client_area/ HTTP/1.1" 404 2230
Not Found: /stalker_portal/c/
[15/Apr/2021 11:32:27] "GET /stalker_portal/c/ HTTP/1.1" 404 2245
Not Found: /stream/live.php
[15/Apr/2021 11:32:28] "GET /stream/live.php HTTP/1.1" 404 2239
Not Found: /
[15/Apr/2021 11:43:05] "GET / HTTP/1.0" 404 2176
Not Found: /config/getuser
[15/Apr/2021 11:43:37] "GET /config/getuser?index=0 HTTP/1.1" 404 2244
Not Found: /config/getuser
[15/Apr/2021 12:01:26] "GET /config/getuser?index=0 HTTP/1.1" 404 2244
Not Found: /
[15/Apr/2021 12:07:17] "GET / HTTP/1.0" 404 2176
----------------------------------------
Exception happened during processing of request from ('113.200.107.113', 50367)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 169, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /
[15/Apr/2021 12:35:59] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 12:36:29] "GET / HTTP/1.0" 404 2178
Not Found: /
[15/Apr/2021 13:00:26] "GET / HTTP/1.0" 404 2176
[15/Apr/2021 13:25:34] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:')
[15/Apr/2021 13:25:34] " /*à Cookie: mstshash=Administr" 400 -
Not Found: /
[15/Apr/2021 13:31:07] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 13:48:51] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 14:08:20] "GET / HTTP/1.0" 404 2176
Not Found: /http:/106.52.197.39:25180/
[15/Apr/2021 14:08:38] "GET http://106.52.197.39:25180/ HTTP/1.1" 404 1693
----------------------------------------
Exception happened during processing of request from ('113.200.107.113', 52852)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 169, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /
[15/Apr/2021 14:32:34] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 14:54:21] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 15:18:20] "GET / HTTP/1.0" 404 2176
[15/Apr/2021 15:38:24] "GET /static/img/login/4.jpg HTTP/1.1" 200 379788
Not Found: /
[15/Apr/2021 15:40:29] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 16:04:49] "GET / HTTP/1.0" 404 2176
[15/Apr/2021 16:23:45] code 400, message Bad request syntax ('{\x01\x00\x1615888888888À¨\x90Á\x13\x8a{')
[15/Apr/2021 16:23:45] "{ 15888888888À¨Á{" 400 -
Not Found: /
[15/Apr/2021 16:26:02] "GET / HTTP/1.0" 404 2176
[15/Apr/2021 16:28:31] code 400, message Bad HTTP/0.9 request type ('xx')
[15/Apr/2021 16:28:31] "xxSA52b -" 400 -
[15/Apr/2021 16:33:38] code 400, message Bad request syntax ('&&&&~\x04»8ÅaýT\x07P.VJÃ\x04;\x13\x0600-0C-29-B1-35-79')
[15/Apr/2021 16:33:38] "&&&&~»8ÅaýTP.VJÃ;00-0C-29-B1-35-79" 400 -
Not Found: /config/getuser
[15/Apr/2021 16:41:37] "GET /config/getuser?index=0 HTTP/1.1" 404 2244
[15/Apr/2021 16:43:06] code 400, message Bad request syntax ('~\x00\x02\x00\x00\x01\x88\x88\x88\x88\x88\x03¥-~')
[15/Apr/2021 16:43:06] "~ ¥-~" 400 -
[15/Apr/2021 16:47:52] code 400, message Bad request syntax ('[\x00\x00\x00H\x00\x00\x00\x01\x10\x01\x00\x01\x04j\x00\x00\x01\x00\x00\x00\x00')
[15/Apr/2021 16:47:52] "[ H j " 400 -
Not Found: /
[15/Apr/2021 16:49:11] "GET / HTTP/1.0" 404 2176
[15/Apr/2021 16:52:59] code 400, message Bad request syntax ('~~\x01\x00\x124Vx\x124/\x00\x08\x02\x00\x03Y\x10\x11\x15Q\x11\x03kÊ')
[15/Apr/2021 16:52:59] "~~ 4Vx4/ YQkÊ" 400 -
[15/Apr/2021 16:57:58] code 400, message Bad request syntax ('333766643833656338616434363333643963363962386536653538383937393235613033653338636434')
[15/Apr/2021 16:57:58] "333766643833656338616434363333643963363962386536653538383937393235613033653338636434" 400 -
Not Found: /
[15/Apr/2021 17:10:59] "GET / HTTP/1.1" 404 2176
Not Found: /
[15/Apr/2021 17:13:03] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 17:16:54] "GET / HTTP/1.1" 404 2176
Not Found: /actuator/health
[15/Apr/2021 17:35:40] "GET /actuator/health HTTP/1.1" 404 2239
Not Found: /
[15/Apr/2021 17:37:28] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 18:02:00] "GET / HTTP/1.0" 404 2176
Not Found: /http:/www.baidu.com/
[15/Apr/2021 18:13:49] "GET http://www.baidu.com/ HTTP/1.1" 404 1669
Not Found: /http:/www.rfa.org/
Not Found: /http:/wujieliulan.com/
Not Found: /http:/www.minghui.org/
Not Found: /http:/www.epochtimes.com/
Not Found: /http:/www.boxun.com/
Not Found: /http:/www.bing.com/
[15/Apr/2021 18:14:07] "GET http://www.bing.com/ HTTP/1.1" 404 1665
Not Found: /http:/www.123cha.com/
[15/Apr/2021 18:14:07] "GET http://www.123cha.com/ HTTP/1.1" 404 1673
Not Found: /www.voanews.com:443
[15/Apr/2021 18:14:07] "CONNECT www.voanews.com:443 HTTP/1.0" 404 1674
Not Found: /
[15/Apr/2021 18:26:28] "GET / HTTP/1.0" 404 2176
Not Found: /invoker/readonly
[15/Apr/2021 18:31:13] "GET /invoker/readonly HTTP/1.1" 404 2242
Not Found: /secure/ContactAdministrators!default.jspa
[15/Apr/2021 18:31:14] "GET /secure/ContactAdministrators!default.jspa HTTP/1.1" 404 2317
Not Found: /login
[15/Apr/2021 18:31:15] "GET /login HTTP/1.1" 404 2209
Not Found: /jenkins/login
[15/Apr/2021 18:31:16] "GET /jenkins/login HTTP/1.1" 404 2233
Not Found: /manager/html
[15/Apr/2021 18:31:17] "GET /manager/html HTTP/1.1" 404 2230
Not Found: /boaform/admin/formLogin
[15/Apr/2021 18:32:52] "GET /boaform/admin/formLogin?username=ec8&psd=ec8 HTTP/1.0" 404 2290
Not Found: /http:/110.242.68.4/
[15/Apr/2021 18:33:21] "HEAD http://110.242.68.4/ HTTP/1.1" 404 1666
Not Found: /
[15/Apr/2021 18:36:37] "GET / HTTP/1.1" 404 2176
[15/Apr/2021 18:45:49] "GET /static/img/login/2.jpg HTTP/1.1" 200 454151
Not Found: /
[15/Apr/2021 18:50:43] "GET / HTTP/1.0" 404 2176
Not Found: /hudson
[15/Apr/2021 19:05:11] "GET /hudson HTTP/1.1" 404 2212
Not Found: /GponForm/diag_Form
[15/Apr/2021 19:10:25] "POST /GponForm/diag_Form?images/ HTTP/1.1" 404 2254
----------------------------------------
Exception happened during processing of request from ('117.100.168.26', 41237)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /
[15/Apr/2021 19:16:04] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 19:16:05] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 19:27:58] "GET / HTTP/1.1" 404 2176
Not Found: /
[15/Apr/2021 19:39:45] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 20:04:04] "GET / HTTP/1.0" 404 2176
[15/Apr/2021 20:17:15] code 400, message Bad request version ('À#À¬À®À+À')
[15/Apr/2021 20:17:15] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 20:17:16] code 400, message Bad request version ('\x86Yrø§\x9a\x83a8k¹ò\x13\x15/TýeQ\x8e\x02£ú\x8ab¨#g*³\x1bN\x00\x8c')
[15/Apr/2021 20:17:16] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 20:17:17] code 400, message Bad request version ('!Sv\x0eA')
[15/Apr/2021 20:17:17] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 20:17:18] code 400, message Bad request version ("\xadúrglqø\x87O\x9a\x90°ÉUÉÊJ\x98õb¨Ðk¸ò\x02<\x11m\x88Ïu\x00FJJÀ\x13À'À/À\x14À(À0À`ÀaÀvÀw̨\x13\x05\x13\x04\x13\x03Ì\x13À\x11\x00")
[15/Apr/2021 20:17:18] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 20:17:19] code 400, message Bad request version ("V\x86#2\x00\x8aÀ\x12À\x13À\x07À'Ì\x14À/\x13\x01À\x14\x13\x02À(Ì©À0ÀsÀ`ÀrÀaÀ,ÀvÀ¯ÀwÀ\xad̨À$\x13\x05À")
[15/Apr/2021 20:17:19] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 20:17:20] code 400, message Bad request version ('À#À¬À®À+À')
[15/Apr/2021 20:17:20] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 20:17:20] code 400, message Bad request version ('À#À¬À®À+À')
[15/Apr/2021 20:17:20] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 20:17:22] code 400, message Bad request syntax ('\x16\x03\x01\x01©\x01\x00\x01¥\x03\x03Ç\x01\x86)í^a\\\x86')
[15/Apr/2021 20:17:22] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 20:17:23] code 400, message Bad request version ('À#À¬À®À+À')
[15/Apr/2021 20:17:23] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 20:17:24] code 400, message Bad request version ("FFó}©Ñ\x10Øê\x11¦øÒ7\x00\x8aÀ\x12À\x13À\x07À'Ì\x14À/\x13\x01À\x14\x13\x02À(Ì©À0ÀsÀ`ÀrÀaÀ,ÀvÀ¯ÀwÀ\xad̨À$\x13\x05À")
[15/Apr/2021 20:17:24] You're accessing the development server over HTTPS, but it only supports HTTP.
[15/Apr/2021 20:21:17] code 400, message Bad request version ('Q\x96\x90\x9cÀÈhn2\x90o\x00\x01<Ì\x14Ì\x13Ì\x15À0À,À(À$À\x14À')
[15/Apr/2021 20:21:17] You're accessing the development server over HTTPS, but it only supports HTTP.
Not Found: /
[15/Apr/2021 20:28:23] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 20:52:29] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 21:10:37] "GET / HTTP/1.0" 404 2178
Not Found: /
[15/Apr/2021 21:16:28] "GET / HTTP/1.0" 404 2176
Not Found: /GponForm/diag_Form
[15/Apr/2021 21:18:47] "POST /GponForm/diag_Form?images/ HTTP/1.1" 404 2254
----------------------------------------
Exception happened during processing of request from ('115.61.14.211', 46487)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /
[15/Apr/2021 21:39:35] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 22:02:39] "GET / HTTP/1.0" 404 2176
Not Found: /http:/121.5.220.12:8080/film/index/
[15/Apr/2021 22:04:47] "GET http://121.5.220.12:8080/film/index/ HTTP/1.1" 404 1718
----------------------------------------
Exception happened during processing of request from ('182.254.52.17', 34151)
Traceback (most recent call last):
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 650, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 360, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3.7.6/lib/python3.7/socketserver.py", line 720, in __init__
self.handle()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3.7.6/lib/python3.7/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3.7.6/lib/python3.7/socket.py", line 589, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[15/Apr/2021 22:04:47] "GET /film/index/ HTTP/1.1" 200 14961
Not Found: /
[15/Apr/2021 22:22:54] "GET / HTTP/1.1" 404 2176
Not Found: /
[15/Apr/2021 22:25:59] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 22:49:39] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 23:12:36] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 23:15:05] "GET / HTTP/1.1" 404 2176
Not Found: /admin-scripts.asp
[15/Apr/2021 23:25:07] "GET /admin-scripts.asp HTTP/1.1" 404 2240
Not Found: /admin-scripts.asp
[15/Apr/2021 23:25:07] "GET /admin-scripts.asp HTTP/1.1" 404 2240
Not Found: /
[15/Apr/2021 23:35:58] "GET / HTTP/1.0" 404 2176
Not Found: /
[15/Apr/2021 23:52:42] "GET / HTTP/1.1" 404 2171
Not Found: /
[15/Apr/2021 23:59:30] "GET / HTTP/1.0" 404 2176
[16/Apr/2021 00:08:02] "GET /media/film/20210412/AcadiaSunrise_ROW9443036049_1920x1080.jpg HTTP/1.1" 200 344482
Not Found: /
[16/Apr/2021 00:23:21] "GET / HTTP/1.0" 404 2176
Not Found: /
[16/Apr/2021 00:46:48] "GET / HTTP/1.0" 404 2176
Not Found: /
[16/Apr/2021 01:10:14] "GET / HTTP/1.0" 404 2176
Not Found: /seeyon/htmlofficeservlet
[16/Apr/2021 01:24:40] "GET /%73%65%65%79%6F%6E/%68%74%6D%6C%6F%66%66%69%63%65%73%65%72%76%6C%65%74 HTTP/1.1" 404 2266
Not Found: /secure/ContactAdministrators!default.jspa
[16/Apr/2021 01:24:40] "GET /secure/ContactAdministrators!default.jspa HTTP/1.1" 404 2317
Not Found: /weaver/bsh.servlet.BshServlet
[16/Apr/2021 01:24:41] "GET /weaver/bsh.servlet.BshServlet HTTP/1.1" 404 2281
Not Found: /solr/
[16/Apr/2021 01:24:41] "GET /solr/ HTTP/1.1" 404 2209
Not Found: /console/login/LoginForm.jsp
[16/Apr/2021 01:24:42] "GET /console/login/LoginForm.jsp HTTP/1.1" 404 2275
Not Found: /manager/html
[16/Apr/2021 01:24:42] "GET /manager/html HTTP/1.1" 404 2230
Not Found: /axis2/axis2-admin/login
[16/Apr/2021 01:24:43] "POST /axis2/axis2-admin/login HTTP/1.1" 404 2264
Not Found: /login
[16/Apr/2021 01:24:43] "GET /login HTTP/1.1" 404 2209
Not Found: /jenkins/login
[16/Apr/2021 01:24:44] "GET /jenkins/login HTTP/1.1" 404 2233
Not Found: /
[16/Apr/2021 01:33:25] "GET / HTTP/1.0" 404 2176
Not Found: /
[16/Apr/2021 01:57:27] "GET / HTTP/1.0" 404 2176
Not Found: /
[16/Apr/2021 02:02:11] "GET / HTTP/1.1" 404 2176
Not Found: /
[16/Apr/2021 02:20:27] "GET / HTTP/1.0" 404 2176
Not Found: /
[16/Apr/2021 02:29:24] "GET / HTTP/1.1" 404 2176