-
Notifications
You must be signed in to change notification settings - Fork 0
/
nohup.out
5196 lines (5109 loc) · 348 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
Watching for file changes with StatReloader
System check identified some issues:
WARNINGS:
?: (urls.W005) URL namespace 'booksystem' isn't unique. You may not be able to reverse all URLs in this namespace
System check identified 1 issue (0 silenced).
[25/May/2019 22:02:43] "GET / HTTP/1.1" 200 2015
Not Found: /favicon.ico
[25/May/2019 22:02:43] "GET /favicon.ico HTTP/1.1" 404 3721
[25/May/2019 22:02:52] "GET /booksystem/admin/ HTTP/1.1" 200 6883
[25/May/2019 22:02:52] "GET /static/admin/css/base.css HTTP/1.1" 304 0
[25/May/2019 22:02:52] "GET /static/admin/css/dashboard.css HTTP/1.1" 304 0
[25/May/2019 22:02:52] "GET /static/admin/css/responsive.css HTTP/1.1" 304 0
[25/May/2019 22:02:52] "GET /static/admin/css/fonts.css HTTP/1.1" 304 0
[25/May/2019 22:02:52] "GET /static/admin/img/icon-addlink.svg HTTP/1.1" 304 0
[25/May/2019 22:02:52] "GET /static/admin/img/icon-changelink.svg HTTP/1.1" 304 0
[25/May/2019 22:02:52] "GET /static/admin/img/icon-deletelink.svg HTTP/1.1" 304 0
[25/May/2019 22:02:52] "GET /static/admin/fonts/Roboto-Light-webfont.woff HTTP/1.1" 304 0
[25/May/2019 22:02:52] "GET /static/admin/fonts/Roboto-Regular-webfont.woff HTTP/1.1" 304 0
[25/May/2019 22:02:52] "GET /static/admin/fonts/Roboto-Bold-webfont.woff HTTP/1.1" 304 0
[25/May/2019 22:05:35] "GET /booksystem/admin/ HTTP/1.1" 200 6883
[25/May/2019 22:05:36] "GET /booksystem/admin/ HTTP/1.1" 200 6883
[25/May/2019 22:05:39] "POST /booksystem/result/ HTTP/1.1" 200 2015
[25/May/2019 22:05:40] "POST /booksystem/result/ HTTP/1.1" 200 2015
[25/May/2019 22:05:55] "GET /booksystem/admin/auth/user/ HTTP/1.1" 200 7545
[25/May/2019 22:05:55] "GET /static/admin/css/changelists.css HTTP/1.1" 304 0
[25/May/2019 22:05:55] "GET /static/admin/js/jquery.init.js HTTP/1.1" 304 0
[25/May/2019 22:05:55] "GET /static/admin/js/core.js HTTP/1.1" 304 0
[25/May/2019 22:05:55] "GET /static/admin/js/admin/RelatedObjectLookups.js HTTP/1.1" 304 0
[25/May/2019 22:05:55] "GET /static/admin/js/vendor/jquery/jquery.js HTTP/1.1" 304 0
[25/May/2019 22:05:55] "GET /booksystem/admin/jsi18n/ HTTP/1.1" 200 3223
[25/May/2019 22:05:56] "GET /static/admin/js/actions.js HTTP/1.1" 304 0
[25/May/2019 22:05:56] "GET /static/admin/js/urlify.js HTTP/1.1" 304 0
[25/May/2019 22:05:56] "GET /static/admin/js/prepopulate.js HTTP/1.1" 304 0
[25/May/2019 22:05:56] "GET /static/admin/js/vendor/xregexp/xregexp.js HTTP/1.1" 304 0
[25/May/2019 22:05:56] "GET /static/admin/img/search.svg HTTP/1.1" 304 0
[25/May/2019 22:05:56] "GET /static/admin/img/icon-no.svg HTTP/1.1" 304 0
[25/May/2019 22:05:56] "GET /static/admin/img/icon-yes.svg HTTP/1.1" 304 0
[25/May/2019 22:05:56] "GET /static/admin/img/tooltag-add.svg HTTP/1.1" 304 0
[25/May/2019 22:05:56] "GET /static/admin/img/sorting-icons.svg HTTP/1.1" 304 0
/root/FlightTicket/FlightTicket/settings.py changed, reloading.
Performing system checks...
May 25, 2019 - 22:02:06
Django version 2.2.1, using settings 'FlightTicket.settings'
Starting development server at http://0.0.0.0:8000/
Quit the server with CONTROL-C.
Traceback (most recent call last):
File "manage.py", line 22, in <module>
execute_from_command_line(sys.argv)
File "/usr/local/python3/lib/python3.6/site-packages/django/core/management/__init__.py", line 381, in execute_from_command_line
utility.execute()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/management/__init__.py", line 375, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/python3/lib/python3.6/site-packages/django/core/management/base.py", line 323, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/python3/lib/python3.6/site-packages/django/core/management/commands/runserver.py", line 60, in execute
super().execute(*args, **options)
File "/usr/local/python3/lib/python3.6/site-packages/django/core/management/base.py", line 364, in execute
output = self.handle(*args, **options)
File "/usr/local/python3/lib/python3.6/site-packages/django/core/management/commands/runserver.py", line 67, in handle
if not settings.DEBUG and not settings.ALLOWED_HOSTS:
File "/usr/local/python3/lib/python3.6/site-packages/django/conf/__init__.py", line 79, in __getattr__
self._setup(name)
File "/usr/local/python3/lib/python3.6/site-packages/django/conf/__init__.py", line 66, in _setup
self._wrapped = Settings(settings_module)
File "/usr/local/python3/lib/python3.6/site-packages/django/conf/__init__.py", line 176, in __init__
raise ImproperlyConfigured("The SECRET_KEY setting must not be empty.")
django.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must not be empty.
Watching for file changes with StatReloader
System check identified some issues:
WARNINGS:
?: (urls.W005) URL namespace 'booksystem' isn't unique. You may not be able to reverse all URLs in this namespace
System check identified 1 issue (0 silenced).
[26/May/2019 09:01:50] "GET / HTTP/1.1" 200 2015
Not Found: /favicon.ico
[26/May/2019 09:01:50] "GET /favicon.ico HTTP/1.1" 404 3721
[26/May/2019 09:01:58] "GET /booksystem/ HTTP/1.1" 200 2015
[26/May/2019 09:02:01] "GET /booksystem/ HTTP/1.1" 200 2015
[26/May/2019 09:02:04] "GET /booksystem/admin/ HTTP/1.1" 302 0
[26/May/2019 09:02:04] "GET /booksystem/admin/login/?next=/booksystem/admin/ HTTP/1.1" 200 1878
[26/May/2019 09:02:04] "GET /static/admin/css/login.css HTTP/1.1" 304 0
[26/May/2019 09:02:04] "GET /static/admin/css/base.css HTTP/1.1" 304 0
[26/May/2019 09:02:04] "GET /static/admin/css/responsive.css HTTP/1.1" 304 0
[26/May/2019 09:02:04] "GET /static/admin/css/fonts.css HTTP/1.1" 304 0
[26/May/2019 09:02:04] "GET /static/admin/fonts/Roboto-Regular-webfont.woff HTTP/1.1" 304 0
[26/May/2019 09:02:04] "GET /static/admin/fonts/Roboto-Light-webfont.woff HTTP/1.1" 304 0
[26/May/2019 09:02:06] "POST /booksystem/admin/login/?next=/booksystem/admin/ HTTP/1.1" 200 2039
[26/May/2019 09:02:06] "GET /static/admin/fonts/Roboto-Bold-webfont.woff HTTP/1.1" 304 0
[26/May/2019 09:02:24] "POST /booksystem/result/ HTTP/1.1" 200 7173
[26/May/2019 10:14:01] "GET / HTTP/1.1" 200 2015
[26/May/2019 10:14:05] "GET /static/img/flight-bg.jpg HTTP/1.1" 200 558061
[26/May/2019 10:18:30] "GET / HTTP/1.1" 200 2015
[26/May/2019 10:25:15] "GET / HTTP/1.1" 200 2015
[26/May/2019 10:25:15] "GET / HTTP/1.1" 200 2015
[26/May/2019 10:25:21] "GET / HTTP/1.1" 200 2015
[26/May/2019 10:25:22] "GET /booksystem/book/flight/1/ HTTP/1.1" 200 3936
[26/May/2019 10:25:27] "GET /booksystem/book/flight/1/ HTTP/1.1" 200 3936
[26/May/2019 10:25:38] "GET /booksystem/admin HTTP/1.1" 301 0
[26/May/2019 10:25:38] "GET /booksystem/admin/ HTTP/1.1" 302 0
[26/May/2019 10:25:39] "GET /booksystem/admin/login/?next=/booksystem/admin/ HTTP/1.1" 200 1878
[26/May/2019 10:25:39] "GET /static/admin/css/responsive.css HTTP/1.1" 200 17944
[26/May/2019 10:25:39] "GET /static/admin/css/login.css HTTP/1.1" 200 1233
[26/May/2019 10:25:39] "GET /static/admin/css/base.css HTTP/1.1" 200 16378
[26/May/2019 10:25:39] "GET /static/admin/css/fonts.css HTTP/1.1" 200 423
Not Found: /favicon.ico
[26/May/2019 10:25:39] "GET /favicon.ico HTTP/1.1" 404 3721
[26/May/2019 10:25:40] "GET /static/admin/fonts/Roboto-Regular-webfont.woff HTTP/1.1" 200 85876
[26/May/2019 10:25:40] "GET /static/admin/fonts/Roboto-Light-webfont.woff HTTP/1.1" 200 85692
[26/May/2019 10:25:40] "GET /static/admin/fonts/Roboto-Bold-webfont.woff HTTP/1.1" 200 86184
[26/May/2019 10:25:49] "POST /booksystem/admin/login/?next=/booksystem/admin/ HTTP/1.1" 302 0
[26/May/2019 10:25:49] "GET /booksystem/admin/ HTTP/1.1" 200 3902
[26/May/2019 10:25:49] "GET /static/admin/css/dashboard.css HTTP/1.1" 200 412
[26/May/2019 10:25:49] "GET /static/admin/img/icon-changelink.svg HTTP/1.1" 200 380
[26/May/2019 10:25:49] "GET /static/admin/img/icon-addlink.svg HTTP/1.1" 200 331
Not Found: /favicon.ico
[26/May/2019 10:25:49] "GET /favicon.ico HTTP/1.1" 404 3721
[26/May/2019 10:26:29] "GET /booksystem/admin/booksystem/flight/ HTTP/1.1" 200 3260
[26/May/2019 10:26:29] "GET /booksystem/admin/jsi18n/ HTTP/1.1" 200 3223
[26/May/2019 10:26:29] "GET /static/admin/css/changelists.css HTTP/1.1" 200 6170
[26/May/2019 10:26:29] "GET /static/admin/js/core.js HTTP/1.1" 200 7135
[26/May/2019 10:26:29] "GET /static/admin/js/prepopulate.js HTTP/1.1" 200 1530
[26/May/2019 10:26:29] "GET /static/admin/js/jquery.init.js HTTP/1.1" 200 363
[26/May/2019 10:26:29] "GET /static/admin/js/admin/RelatedObjectLookups.js HTTP/1.1" 200 6918
[26/May/2019 10:26:29] "GET /static/admin/js/urlify.js HTTP/1.1" 200 8972
[26/May/2019 10:26:29] "GET /static/admin/js/actions.js HTTP/1.1" 200 6538
[26/May/2019 10:26:30] "GET /static/admin/js/vendor/xregexp/xregexp.js HTTP/1.1" 200 128820
[26/May/2019 10:26:31] "GET /static/admin/js/vendor/jquery/jquery.js HTTP/1.1" 200 271751
[26/May/2019 10:26:32] "GET /static/admin/img/tooltag-add.svg HTTP/1.1" 200 331
Not Found: /favicon.ico
[26/May/2019 10:26:32] "GET /favicon.ico HTTP/1.1" 404 3721
Not Found: /http:/www.baidu.com/cache/global/img/gs.gif
[26/May/2019 10:43:30] "GET http://www.baidu.com/cache/global/img/gs.gif HTTP/1.1" 404 1738
----------------------------------------
Exception happened during processing of request from ('80.82.70.187', 47266)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /http:/www.baidu.com/cache/global/img/gs.gif
[26/May/2019 10:43:31] "GET http://www.baidu.com/cache/global/img/gs.gif HTTP/1.1" 404 1738
----------------------------------------
Exception happened during processing of request from ('80.82.70.187', 47892)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Invalid HTTP_HOST header: 'VM_0_10_centos:8000'. The domain name provided is not valid according to RFC 1034/1035.
Bad Request: /
[26/May/2019 15:42:08] "GET / HTTP/1.0" 400 59596
[26/May/2019 15:42:14] code 400, message Bad HTTP/0.9 request type ('l\x00')
[26/May/2019 15:42:14] "l" 400 -
Invalid HTTP_HOST header: 'VM_0_10_centos:8000'. The domain name provided is not valid according to RFC 1034/1035.
Bad Request: /nice ports,/Trinity.txt.bak
[26/May/2019 15:42:17] "GET /nice%20ports%2C/Tri%6Eity.txt%2ebak HTTP/1.0" 400 59773
[26/May/2019 15:42:20] code 400, message Bad request syntax ('\x05\x04\x00\x01\x02\x80\x05\x01\x00\x03')
[26/May/2019 15:42:20] "" 400 -
[26/May/2019 15:42:26] code 400, message Bad request syntax ('\x04\x01\x00\x16\x7f\x00\x00\x01root\x00')
[26/May/2019 15:42:26] "root" 400 -
Invalid HTTP_HOST header: 'VM_0_10_centos:8000'. The domain name provided is not valid according to RFC 1034/1035.
Bad Request: /
[26/May/2019 15:42:26] "OPTIONS / HTTP/1.0" 400 59492
[26/May/2019 15:42:26] code 400, message Bad request version ('RTSP/1.0')
[26/May/2019 15:42:26] "OPTIONS / RTSP/1.0" 400 -
[26/May/2019 15:42:31] code 400, message Bad request version ('\x00\x01\x97|\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00')
[26/May/2019 15:42:31] "(rþ |" 400 -
[26/May/2019 15:42:37] code 400, message Bad HTTP/0.9 request type ('\x00')
[26/May/2019 15:42:37] "versionbind" 400 -
[26/May/2019 15:42:42] code 400, message Bad HTTP/0.9 request type ('\x00')
[26/May/2019 15:42:42] "" 400 -
[26/May/2019 15:42:42] code 400, message Bad request syntax ('HELP')
[26/May/2019 15:42:42] "HELP" 400 -
[26/May/2019 15:42:42] code 400, message Bad request syntax ('\x16\x03\x00\x00S\x01\x00\x00O\x03\x00?G×÷º,îê²`~ó\x00ý\x82{¹Õ\x96Èw\x9bæÄÛ<=Ûoï\x10n\x00\x00(\x00\x16\x00\x13\x00')
[26/May/2019 15:42:42] You're accessing the development server over HTTPS, but it only supports HTTP.
[26/May/2019 15:42:42] code 400, message Bad request version ('\x00/\x00')
[26/May/2019 15:42:42] You're accessing the development server over HTTPS, but it only supports HTTP.
[26/May/2019 15:42:43] code 400, message Bad request syntax ('\x00\x00\x00qj\x81n0\x81k¡\x03\x02\x01\x05¢\x03\x02\x01')
[26/May/2019 15:42:43] "qjn0k¡¢" 400 -
[26/May/2019 15:42:48] code 400, message Bad request syntax ('\x00\x00\x00¤ÿSMBr\x00\x00\x00\x00\x08\x01@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00@\x06\x00\x00\x01\x00\x00\x81\x00\x02PC NETWORK PROGRAM 1.0\x00\x02MICROSOFT NETWORKS 1.03\x00\x02MICROSOFT NETWORKS 3.0\x00\x02LANMAN1.0\x00\x02LM1.2X002\x00\x02Samba\x00\x02NT LANMAN 1.0\x00\x02NT LM 0.12\x00')
[26/May/2019 15:42:48] "¤ÿSMBr@@PC NETWORK PROGRAM 1.0MICROSOFT NETWORKS 1.03MICROSOFT NETWORKS 3.0LANMAN1.0LM1.2X002SambaNT LANMAN 1.0NT LM 0.12" 400 -
[26/May/2019 15:42:48] code 400, message Bad request syntax ('\x01default')
[26/May/2019 15:42:48] "default" 400 -
[26/May/2019 15:42:48] code 400, message Bad request syntax ('0\x84\x00\x00\x00-\x02\x01\x07c\x84\x00\x00\x00$\x04\x00')
[26/May/2019 15:42:48] "0-c$" 400 -
[26/May/2019 15:42:53] code 400, message Bad request version ('SIP/2.0')
[26/May/2019 15:42:53] "OPTIONS sip:nm SIP/2.0" 400 -
[26/May/2019 15:42:54] code 400, message Bad HTTP/0.9 request type ('0')
[26/May/2019 15:42:54] "0`" 400 -
[26/May/2019 15:42:58] code 400, message Bad request syntax ('TNMP\x04\x00\x00\x00TNME\x00\x00\x04\x00')
[26/May/2019 15:42:58] "TNMPTNME" 400 -
[26/May/2019 15:43:04] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00')
[26/May/2019 15:43:04] "à" 400 -
[26/May/2019 15:43:09] code 400, message Bad request syntax ('DmdT\x00\x00\x00\x17\x00\x00\x00\x01\x00\x00\x00\x00\x11\x11\x00ÿ\x01ÿ\x13')
[26/May/2019 15:43:09] "DmdTÿÿ" 400 -
[26/May/2019 15:43:14] code 400, message Bad HTTP/0.9 request type (':\x00\x00\x00/\x00\x00\x00\x02\x00\x00@\x02\x0f\x00\x01\x00=\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00/\x00\x00\x00\x00\x00\x00\x00\x00\x00@')
[26/May/2019 15:43:14] ":/@=/@" 400 -
[26/May/2019 15:43:19] code 400, message Bad request syntax ('JRMI\x00\x02K')
[26/May/2019 15:43:19] "JRMIK" 400 -
[26/May/2019 15:43:24] code 400, message Bad request syntax ('\x01\x00\x00ýÎú\x0b°\xa0\x00\x00\x00MMS\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x12\x00\x00\x00\x01\x00\x03\x00ðððð\x0b\x00\x04\x00\x1c\x00\x03\x00N\x00S\x00P\x00l\x00a\x00y\x00e\x00r\x00/\x009\x00.\x000\x00.\x000\x00.\x002\x009\x008\x000\x00;\x00 \x00{\x000\x000\x000\x000\x00A\x00A\x000\x000\x00-\x000\x00A\x000\x000\x00-\x000\x000\x00a\x000\x00-\x00A\x00A\x000\x00A\x00-\x000\x000\x000\x000\x00A\x000\x00A\x00A\x000\x00A\x00A\x000\x00}\x00\x00\x00àmß_')
[26/May/2019 15:43:24] "ýÎú° MMSððððNSPlayer/9.0.0.2980; {0000AA00-0A00-00a0-AA0A-0000A0AA0AA0}àmß_" 400 -
[26/May/2019 15:43:29] code 400, message Bad HTTP/0.9 request type ('\x00Z\x00\x00\x01\x00\x00\x00\x016\x01,\x00\x00\x08\x00\x7fÿ\x7f\x08\x00\x00\x00\x01\x00')
[26/May/2019 15:43:29] "Z6,ÿ :4æ(CONNECT_DATA=(COMMAND=version))" 400 -
[26/May/2019 15:43:34] code 400, message Bad request syntax ('\x00\x03\x00\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x0f\x00')
[26/May/2019 15:43:34] "" 400 -
[26/May/2019 15:43:39] code 400, message Bad request syntax ('GIOP\x01\x00\x01\x00$\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x06\x00\x00\x00abcdef\x00\x00\x04\x00\x00\x00get\x00\x00\x00\x00\x00')
[26/May/2019 15:43:39] "GIOP$abcdefget" 400 -
Not Found: /sdk
[26/May/2019 15:44:34] "POST /sdk HTTP/1.1" 404 3698
[26/May/2019 15:44:34] "GET / HTTP/1.1" 200 2015
Not Found: /nmaplowercheck1558856616
[26/May/2019 15:44:34] "GET /nmaplowercheck1558856616 HTTP/1.1" 404 3760
----------------------------------------
Exception happened during processing of request from ('154.85.102.68', 41064)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /HNAP1
[26/May/2019 15:44:35] "GET /HNAP1 HTTP/1.1" 404 3703
[26/May/2019 15:44:59] "GET / HTTP/1.1" 200 2015
Not Found: /favicon.ico
[26/May/2019 20:36:18] "GET /favicon.ico HTTP/1.1" 404 3721
/root/FlightTicket/FlightTicket/settings.py changed, reloading.
Performing system checks...
May 26, 2019 - 09:01:42
Django version 2.2.1, using settings 'FlightTicket.settings'
Starting development server at http://0.0.0.0:8000/
Quit the server with CONTROL-C.
2017-04-02 00:00:00
Watching for file changes with StatReloader
System check identified some issues:
WARNINGS:
?: (urls.W005) URL namespace 'booksystem' isn't unique. You may not be able to reverse all URLs in this namespace
System check identified 1 issue (0 silenced).
/root/FlightTicket/FlightTicket/__init__.py changed, reloading.
Performing system checks...
May 26, 2019 - 20:40:28
Django version 2.2.1, using settings 'FlightTicket.settings'
Starting development server at http://0.0.0.0:8000/
Quit the server with CONTROL-C.
Watching for file changes with StatReloader
System check identified some issues:
WARNINGS:
?: (urls.W005) URL namespace 'booksystem' isn't unique. You may not be able to reverse all URLs in this namespace
System check identified 1 issue (0 silenced).
[26/May/2019 20:43:34] "GET / HTTP/1.1" 200 2015
Not Found: /favicon.ico
[26/May/2019 20:43:34] "GET /favicon.ico HTTP/1.1" 404 3721
Watching for file changes with StatReloader
System check identified some issues:
WARNINGS:
?: (urls.W005) URL namespace 'booksystem' isn't unique. You may not be able to reverse all URLs in this namespace
System check identified 1 issue (0 silenced).
[26/May/2019 21:10:28] "POST /booksystem/result/ HTTP/1.1" 200 29283
[26/May/2019 21:10:31] "POST /booksystem/result/ HTTP/1.1" 200 29283
[26/May/2019 21:10:33] "GET /booksystem/user_info/ HTTP/1.1" 200 3936
[26/May/2019 21:10:35] "POST /booksystem/login_user/ HTTP/1.1" 200 7855
[26/May/2019 21:10:40] "GET / HTTP/1.1" 200 2015
[26/May/2019 21:10:57] "POST /booksystem/result/ HTTP/1.1" 200 29288
[26/May/2019 21:11:06] "GET /booksystem/book/flight/2/ HTTP/1.1" 200 2244
[26/May/2019 21:11:08] "GET /booksystem/book/flight/2/ HTTP/1.1" 200 2244
[26/May/2019 21:11:10] "GET /booksystem/book/flight/2/ HTTP/1.1" 200 2244
[26/May/2019 21:11:26] "GET /booksystem/user_info/ HTTP/1.1" 200 7855
[26/May/2019 21:11:28] "GET /booksystem/result/ HTTP/1.1" 200 7150
[26/May/2019 21:11:33] "GET /booksystem/admin/ HTTP/1.1" 200 6883
[26/May/2019 21:11:33] "GET /static/admin/css/base.css HTTP/1.1" 304 0
[26/May/2019 21:11:33] "GET /static/admin/css/responsive.css HTTP/1.1" 304 0
[26/May/2019 21:11:33] "GET /static/admin/css/dashboard.css HTTP/1.1" 304 0
[26/May/2019 21:11:34] "GET /booksystem/admin/ HTTP/1.1" 200 6883
[26/May/2019 21:11:34] "GET /static/admin/css/fonts.css HTTP/1.1" 304 0
[26/May/2019 21:11:34] "GET /static/admin/img/icon-changelink.svg HTTP/1.1" 304 0
[26/May/2019 21:11:34] "GET /static/admin/img/icon-deletelink.svg HTTP/1.1" 304 0
[26/May/2019 21:11:34] "GET /static/admin/img/icon-addlink.svg HTTP/1.1" 304 0
[26/May/2019 21:11:34] "GET /static/admin/fonts/Roboto-Light-webfont.woff HTTP/1.1" 304 0
[26/May/2019 21:11:34] "GET /static/admin/fonts/Roboto-Bold-webfont.woff HTTP/1.1" 304 0
[26/May/2019 21:11:34] "GET /static/admin/fonts/Roboto-Regular-webfont.woff HTTP/1.1" 304 0
[26/May/2019 21:11:38] "GET /booksystem/admin/booksystem/flight/ HTTP/1.1" 200 19234
[26/May/2019 21:11:38] "GET /static/admin/js/vendor/jquery/jquery.js HTTP/1.1" 304 0
[26/May/2019 21:11:38] "GET /static/admin/js/jquery.init.js HTTP/1.1" 304 0
[26/May/2019 21:11:38] "GET /static/admin/css/changelists.css HTTP/1.1" 304 0
[26/May/2019 21:11:38] "GET /static/admin/js/core.js HTTP/1.1" 304 0
[26/May/2019 21:11:38] "GET /booksystem/admin/jsi18n/ HTTP/1.1" 200 3223
[26/May/2019 21:11:38] "GET /static/admin/js/admin/RelatedObjectLookups.js HTTP/1.1" 304 0
[26/May/2019 21:11:38] "GET /static/admin/js/actions.js HTTP/1.1" 304 0
[26/May/2019 21:11:38] "GET /static/admin/js/urlify.js HTTP/1.1" 304 0
[26/May/2019 21:11:38] "GET /static/admin/js/prepopulate.js HTTP/1.1" 304 0
[26/May/2019 21:11:38] "GET /static/admin/js/vendor/xregexp/xregexp.js HTTP/1.1" 304 0
[26/May/2019 21:11:38] "GET /static/admin/img/tooltag-add.svg HTTP/1.1" 304 0
[26/May/2019 22:39:01] code 400, message Bad request syntax ('\x00\x00\x00TZ\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x04\x010I\x00\x00\x00\x00\x80\x0b¨À\x00\x0c)t F\x07\x00tsXrcsXYs9\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00bbXcsXctst\x00\x00\x00\x00\x00\x00')
[26/May/2019 22:39:01] "TZ0I¨À)t FtsXrcsXYs9bbXcsXctst" 400 -
Not Found: /http:/www.baidu.com/cache/global/img/gs.gif
[27/May/2019 07:00:38] "GET http://www.baidu.com/cache/global/img/gs.gif HTTP/1.1" 404 1738
----------------------------------------
Exception happened during processing of request from ('80.82.70.187', 48574)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /http:/www.baidu.com/cache/global/img/gs.gif
[27/May/2019 17:08:48] "GET http://www.baidu.com/cache/global/img/gs.gif HTTP/1.1" 404 1738
----------------------------------------
Exception happened during processing of request from ('80.82.70.187', 35731)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /www.baidu.com:443
[27/May/2019 21:49:54] "CONNECT www.baidu.com:443 HTTP/1.0" 404 1662
[28/May/2019 00:25:48] code 400, message Bad request syntax ('JDWP-Handshake')
[28/May/2019 00:25:48] "JDWP-Handshake" 400 -
Not Found: /http:/www.baidu.com/cache/global/img/gs.gif
[28/May/2019 03:13:36] "GET http://www.baidu.com/cache/global/img/gs.gif HTTP/1.1" 404 1738
----------------------------------------
Exception happened during processing of request from ('80.82.70.187', 58574)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[28/May/2019 05:35:07] "GET / HTTP/1.1" 200 2015
[28/May/2019 11:23:10] "GET / HTTP/1.1" 200 2015
----------------------------------------
Exception happened during processing of request from ('183.92.248.12', 61906)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[28/May/2019 11:31:28] "GET /static/img/flight-bg.jpg HTTP/1.1" 200 558061
Not Found: /favicon.ico
[28/May/2019 11:31:29] "GET /favicon.ico HTTP/1.1" 404 3721
----------------------------------------
Exception happened during processing of request from ('183.92.248.12', 62561)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /http:/www.baidu.com/cache/global/img/gs.gif
[28/May/2019 13:21:29] "GET http://www.baidu.com/cache/global/img/gs.gif HTTP/1.1" 404 1738
----------------------------------------
Exception happened during processing of request from ('80.82.70.187', 48776)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[28/May/2019 18:59:15] "GET / HTTP/1.1" 200 2015
Not Found: /favicon.ico
[28/May/2019 18:59:15] "GET /favicon.ico HTTP/1.1" 404 3721
[28/May/2019 18:59:32] "POST /booksystem/result/ HTTP/1.1" 200 29288
[28/May/2019 18:59:37] "GET /booksystem/book/flight/2/ HTTP/1.1" 200 2244
[28/May/2019 18:59:40] "GET /booksystem/book/flight/3/ HTTP/1.1" 200 2244
[28/May/2019 18:59:44] "GET /booksystem/book/flight/4/ HTTP/1.1" 200 5174
[28/May/2019 19:00:37] "GET /booksystem/admin/login/?next=/booksystem/admin/ HTTP/1.1" 302 0
[28/May/2019 19:00:37] "GET /booksystem/admin/ HTTP/1.1" 200 6883
[28/May/2019 19:00:37] "GET /static/admin/css/responsive.css HTTP/1.1" 304 0
[28/May/2019 19:00:37] "GET /static/admin/css/dashboard.css HTTP/1.1" 304 0
[28/May/2019 19:00:37] "GET /static/admin/css/base.css HTTP/1.1" 304 0
[28/May/2019 19:00:38] "GET /static/admin/css/fonts.css HTTP/1.1" 304 0
[28/May/2019 19:00:38] "GET /static/admin/img/icon-addlink.svg HTTP/1.1" 304 0
[28/May/2019 19:00:38] "GET /static/admin/img/icon-changelink.svg HTTP/1.1" 304 0
[28/May/2019 19:00:38] "GET /static/admin/img/icon-deletelink.svg HTTP/1.1" 304 0
[28/May/2019 19:00:38] "GET /static/admin/fonts/Roboto-Light-webfont.woff HTTP/1.1" 304 0
[28/May/2019 19:00:38] "GET /static/admin/fonts/Roboto-Regular-webfont.woff HTTP/1.1" 304 0
[28/May/2019 19:00:38] "GET /static/admin/fonts/Roboto-Bold-webfont.woff HTTP/1.1" 304 0
[28/May/2019 19:00:51] "GET /booksystem/admin/booksystem/flight/ HTTP/1.1" 200 19234
[28/May/2019 19:00:51] "GET /static/admin/js/vendor/jquery/jquery.js HTTP/1.1" 304 0
[28/May/2019 19:00:51] "GET /static/admin/js/jquery.init.js HTTP/1.1" 304 0
[28/May/2019 19:00:51] "GET /static/admin/css/changelists.css HTTP/1.1" 304 0
[28/May/2019 19:00:51] "GET /static/admin/js/core.js HTTP/1.1" 304 0
[28/May/2019 19:00:51] "GET /booksystem/admin/jsi18n/ HTTP/1.1" 200 3223
[28/May/2019 19:00:51] "GET /static/admin/js/admin/RelatedObjectLookups.js HTTP/1.1" 304 0
[28/May/2019 19:00:51] "GET /static/admin/js/actions.js HTTP/1.1" 304 0
[28/May/2019 19:00:51] "GET /static/admin/js/urlify.js HTTP/1.1" 304 0
[28/May/2019 19:00:51] "GET /static/admin/js/prepopulate.js HTTP/1.1" 304 0
[28/May/2019 19:00:51] "GET /static/admin/js/vendor/xregexp/xregexp.js HTTP/1.1" 304 0
[28/May/2019 19:00:51] "GET /static/admin/img/tooltag-add.svg HTTP/1.1" 304 0
[28/May/2019 19:00:53] "GET /booksystem/admin/booksystem/flight/20/change/ HTTP/1.1" 200 9973
[28/May/2019 19:00:53] "GET /static/admin/css/forms.css HTTP/1.1" 304 0
[28/May/2019 19:00:53] "GET /static/admin/js/admin/DateTimeShortcuts.js HTTP/1.1" 304 0
[28/May/2019 19:00:53] "GET /static/admin/js/calendar.js HTTP/1.1" 304 0
[28/May/2019 19:00:53] "GET /booksystem/admin/jsi18n/ HTTP/1.1" 200 3223
[28/May/2019 19:00:53] "GET /static/admin/js/change_form.js HTTP/1.1" 304 0
[28/May/2019 19:00:53] "GET /static/admin/js/prepopulate_init.js HTTP/1.1" 304 0
[28/May/2019 19:00:53] "GET /static/admin/css/widgets.css HTTP/1.1" 304 0
[28/May/2019 19:00:53] "GET /static/admin/img/icon-calendar.svg HTTP/1.1" 304 0
[28/May/2019 19:00:53] "GET /static/admin/img/icon-clock.svg HTTP/1.1" 304 0
[28/May/2019 19:22:00] "POST /booksystem/result/ HTTP/1.1" 200 29288
[28/May/2019 19:36:32] "GET /booksystem/admin/booksystem/flight/20/change/ HTTP/1.1" 200 9973
[28/May/2019 19:36:32] "GET /booksystem/admin/jsi18n/ HTTP/1.1" 200 3223
[28/May/2019 19:36:38] "POST /booksystem/result/ HTTP/1.1" 200 29288
[28/May/2019 20:02:21] "POST /booksystem/result/ HTTP/1.1" 200 29288
[28/May/2019 20:15:17] "POST /booksystem/result/ HTTP/1.1" 200 29288
[28/May/2019 20:15:21] "GET /booksystem/user_info/ HTTP/1.1" 200 7855
[28/May/2019 20:15:22] "GET /booksystem/result/ HTTP/1.1" 200 7150
[28/May/2019 20:15:23] "GET /booksystem/result/ HTTP/1.1" 200 7150
[28/May/2019 20:15:24] "GET /booksystem/user_info/ HTTP/1.1" 200 7855
[28/May/2019 20:15:27] "GET /booksystem/user_info/ HTTP/1.1" 200 7855
[28/May/2019 20:15:28] "GET /booksystem/result/ HTTP/1.1" 200 7150
[28/May/2019 20:15:29] "GET /booksystem/user_info/ HTTP/1.1" 200 7855
[28/May/2019 20:15:36] "GET /booksystem/user_info/ HTTP/1.1" 200 7855
[28/May/2019 20:15:37] "GET /booksystem/result/ HTTP/1.1" 200 7150
[28/May/2019 20:15:47] "POST /booksystem/result/ HTTP/1.1" 200 7178
[28/May/2019 20:15:52] "POST /booksystem/result/ HTTP/1.1" 200 7178
[28/May/2019 20:15:59] "POST /booksystem/result/ HTTP/1.1" 200 7178
[28/May/2019 20:16:04] "POST /booksystem/result/ HTTP/1.1" 200 7178
[28/May/2019 20:16:13] "POST /booksystem/result/ HTTP/1.1" 200 7178
[28/May/2019 20:16:13] "POST /booksystem/result/ HTTP/1.1" 200 7178
[28/May/2019 20:16:15] "GET /booksystem/user_info/ HTTP/1.1" 200 7855
[28/May/2019 20:16:18] "GET /booksystem/result/ HTTP/1.1" 200 7150
[28/May/2019 20:16:19] "GET /booksystem/result/ HTTP/1.1" 200 7150
[28/May/2019 20:16:20] "GET /booksystem/user_info/ HTTP/1.1" 200 7855
[28/May/2019 20:16:24] "GET /booksystem/result/ HTTP/1.1" 200 7150
Not Found: /http:/www.qq.com/404/search_children.js
[28/May/2019 21:41:33] "GET http://www.qq.com/404/search_children.js HTTP/1.1" 404 1723
[28/May/2019 21:41:38] code 400, message Bad request syntax ('\x04\x01\x00PpTi4\x00')
[28/May/2019 21:41:38] "PpTi4" 400 -
[28/May/2019 21:41:38] code 400, message Bad request syntax ('\x05\x01\x00')
[28/May/2019 21:41:38] "" 400 -
[28/May/2019 23:01:08] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:')
[28/May/2019 23:01:08] "/*àCookie: mstshash=Administr" 400 -
[29/May/2019 01:38:54] "GET / HTTP/1.1" 200 2015
[29/May/2019 05:00:41] "GET / HTTP/1.1" 200 2015
[29/May/2019 08:55:24] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:')
[29/May/2019 08:55:24] "/*àCookie: mstshash=Administr" 400 -
Not Found: /http:/www.baidu.com/cache/global/img/gs.gif
[29/May/2019 09:35:31] "GET http://www.baidu.com/cache/global/img/gs.gif HTTP/1.1" 404 1738
----------------------------------------
Exception happened during processing of request from ('80.82.70.187', 42605)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /http:/www.baidu.com/cache/global/img/gs.gif
[29/May/2019 19:43:59] "GET http://www.baidu.com/cache/global/img/gs.gif HTTP/1.1" 404 1738
----------------------------------------
Exception happened during processing of request from ('80.82.70.187', 47048)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[29/May/2019 20:49:00] "GET / HTTP/1.1" 200 2015
[29/May/2019 20:50:03] "GET / HTTP/1.1" 200 2015
----------------------------------------
Exception happened during processing of request from ('188.138.125.155', 49543)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 169, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[29/May/2019 23:57:00] code 400, message Bad request syntax ('\x00\x00\x00TZ\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x10\x04\x01.\x05\x00\x00\x00\x00\x81I¨À\x00\x0c)\x83z»\x01\x00zÚf\x00\x8d\x16Ò~\x9dU\x05ñ\x1fi»©\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00ÃТ|¦v½ó\x1eOÑËÜ®Ëd')
[29/May/2019 23:57:00] "TZ.I¨À)z»zÚfÒ~Uñi»©ÃТ|¦v½óOÑËÜ®Ëd" 400 -
Invalid HTTP_HOST header: 'VM_0_10_centos:8000'. The domain name provided is not valid according to RFC 1034/1035.
Bad Request: /
[30/May/2019 01:10:32] "GET / HTTP/1.0" 400 59597
[30/May/2019 01:10:39] code 400, message Bad HTTP/0.9 request type ('l\x00')
[30/May/2019 01:10:39] "l" 400 -
Invalid HTTP_HOST header: 'VM_0_10_centos:8000'. The domain name provided is not valid according to RFC 1034/1035.
Bad Request: /nice ports,/Trinity.txt.bak
[30/May/2019 01:10:40] "GET /nice%20ports%2C/Tri%6Eity.txt%2ebak HTTP/1.0" 400 59774
[30/May/2019 01:10:41] code 400, message Bad request syntax ('\x05\x04\x00\x01\x02\x80\x05\x01\x00\x03')
[30/May/2019 01:10:41] "" 400 -
Invalid HTTP_HOST header: 'VM_0_10_centos:8000'. The domain name provided is not valid according to RFC 1034/1035.
[30/May/2019 01:10:48] code 400, message Bad request syntax ('\x04\x01\x00\x16\x7f\x00\x00\x01root\x00')
[30/May/2019 01:10:48] "root" 400 -
Bad Request: /
[30/May/2019 01:10:49] "OPTIONS / HTTP/1.0" 400 59493
[30/May/2019 01:10:50] code 400, message Bad request version ('RTSP/1.0')
[30/May/2019 01:10:50] "OPTIONS / RTSP/1.0" 400 -
[30/May/2019 01:10:55] code 400, message Bad request version ('\x00\x01\x97|\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00')
[30/May/2019 01:10:55] "(rþ |" 400 -
[30/May/2019 01:11:03] code 400, message Bad HTTP/0.9 request type ('\x00')
[30/May/2019 01:11:03] "versionbind" 400 -
[30/May/2019 01:11:06] code 400, message Bad HTTP/0.9 request type ('\x00')
[30/May/2019 01:11:06] "" 400 -
[30/May/2019 01:11:07] code 400, message Bad request syntax ('HELP')
[30/May/2019 01:11:07] "HELP" 400 -
[30/May/2019 01:11:07] code 400, message Bad request syntax ('\x16\x03\x00\x00S\x01\x00\x00O\x03\x00?G×÷º,îê²`~ó\x00ý\x82{¹Õ\x96Èw\x9bæÄÛ<=Ûoï\x10n\x00\x00(\x00\x16\x00\x13\x00')
[30/May/2019 01:11:07] You're accessing the development server over HTTPS, but it only supports HTTP.
[30/May/2019 01:11:10] code 400, message Bad request version ('\x00/\x00')
[30/May/2019 01:11:10] You're accessing the development server over HTTPS, but it only supports HTTP.
[30/May/2019 01:11:11] code 400, message Bad request syntax ('\x00\x00\x00qj\x81n0\x81k¡\x03\x02\x01\x05¢\x03\x02\x01')
[30/May/2019 01:11:11] "qjn0k¡¢" 400 -
[30/May/2019 01:11:16] code 400, message Bad request syntax ('\x00\x00\x00¤ÿSMBr\x00\x00\x00\x00\x08\x01@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00@\x06\x00\x00\x01\x00\x00\x81\x00\x02PC NETWORK PROGRAM 1.0\x00\x02MICROSOFT NETWORKS 1.03\x00\x02MICROSOFT NETWORKS 3.0\x00\x02LANMAN1.0\x00\x02LM1.2X002\x00\x02Samba\x00\x02NT LANMAN 1.0\x00\x02NT LM 0.12\x00')
[30/May/2019 01:11:16] "¤ÿSMBr@@PC NETWORK PROGRAM 1.0MICROSOFT NETWORKS 1.03MICROSOFT NETWORKS 3.0LANMAN1.0LM1.2X002SambaNT LANMAN 1.0NT LM 0.12" 400 -
[30/May/2019 01:11:17] code 400, message Bad request syntax ('\x01default')
[30/May/2019 01:11:17] "default" 400 -
[30/May/2019 01:11:18] code 400, message Bad request syntax ('0\x84\x00\x00\x00-\x02\x01\x07c\x84\x00\x00\x00$\x04\x00')
[30/May/2019 01:11:18] "0-c$" 400 -
[30/May/2019 01:11:25] code 400, message Bad HTTP/0.9 request type ('0')
[30/May/2019 01:11:25] "0`" 400 -
[30/May/2019 01:11:26] code 400, message Bad request version ('SIP/2.0')
[30/May/2019 01:11:26] "OPTIONS sip:nm SIP/2.0" 400 -
[30/May/2019 01:11:31] code 400, message Bad request syntax ('TNMP\x04\x00\x00\x00TNME\x00\x00\x04\x00')
[30/May/2019 01:11:31] "TNMPTNME" 400 -
[30/May/2019 01:11:36] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00')
[30/May/2019 01:11:36] "à" 400 -
[30/May/2019 01:11:41] code 400, message Bad request syntax ('DmdT\x00\x00\x00\x17\x00\x00\x00\x01\x00\x00\x00\x00\x11\x11\x00ÿ\x01ÿ\x13')
[30/May/2019 01:11:41] "DmdTÿÿ" 400 -
[30/May/2019 01:11:47] code 400, message Bad HTTP/0.9 request type (':\x00\x00\x00/\x00\x00\x00\x02\x00\x00@\x02\x0f\x00\x01\x00=\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00/\x00\x00\x00\x00\x00\x00\x00\x00\x00@')
[30/May/2019 01:11:47] ":/@=/@" 400 -
[30/May/2019 01:11:53] code 400, message Bad request syntax ('JRMI\x00\x02K')
[30/May/2019 01:11:53] "JRMIK" 400 -
[30/May/2019 01:11:58] code 400, message Bad request syntax ('\x01\x00\x00ýÎú\x0b°\xa0\x00\x00\x00MMS\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x12\x00\x00\x00\x01\x00\x03\x00ðððð\x0b\x00\x04\x00\x1c\x00\x03\x00N\x00S\x00P\x00l\x00a\x00y\x00e\x00r\x00/\x009\x00.\x000\x00.\x000\x00.\x002\x009\x008\x000\x00;\x00 \x00{\x000\x000\x000\x000\x00A\x00A\x000\x000\x00-\x000\x00A\x000\x000\x00-\x000\x000\x00a\x000\x00-\x00A\x00A\x000\x00A\x00-\x000\x000\x000\x000\x00A\x000\x00A\x00A\x000\x00A\x00A\x000\x00}\x00\x00\x00àmß_')
[30/May/2019 01:11:58] "ýÎú° MMSððððNSPlayer/9.0.0.2980; {0000AA00-0A00-00a0-AA0A-0000A0AA0AA0}àmß_" 400 -
[30/May/2019 01:12:03] code 400, message Bad HTTP/0.9 request type ('\x00Z\x00\x00\x01\x00\x00\x00\x016\x01,\x00\x00\x08\x00\x7fÿ\x7f\x08\x00\x00\x00\x01\x00')
[30/May/2019 01:12:03] "Z6,ÿ :4æ(CONNECT_DATA=(COMMAND=version))" 400 -
[30/May/2019 01:12:08] code 400, message Bad request syntax ('\x00\x03\x00\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x0f\x00')
[30/May/2019 01:12:08] "" 400 -
[30/May/2019 01:12:14] code 400, message Bad request syntax ('GIOP\x01\x00\x01\x00$\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x06\x00\x00\x00abcdef\x00\x00\x04\x00\x00\x00get\x00\x00\x00\x00\x00')
[30/May/2019 01:12:14] "GIOP$abcdefget" 400 -
Not Found: /nmaplowercheck1559150071
[30/May/2019 01:13:12] "GET /nmaplowercheck1559150071 HTTP/1.1" 404 3760
Not Found: /HNAP1
[30/May/2019 01:13:13] "GET /HNAP1 HTTP/1.1" 404 3703
[30/May/2019 01:13:13] "GET / HTTP/1.1" 200 2015
Not Found: /sdk
[30/May/2019 01:13:14] "POST /sdk HTTP/1.1" 404 3698
[30/May/2019 01:13:35] "GET / HTTP/1.1" 200 2015
Not Found: /http:/www.baidu.com/cache/global/img/gs.gif
[30/May/2019 05:52:26] "GET http://www.baidu.com/cache/global/img/gs.gif HTTP/1.1" 404 1738
----------------------------------------
Exception happened during processing of request from ('80.82.70.187', 46689)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
----------------------------------------
Exception happened during processing of request from ('216.245.193.10', 62940)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 169, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Invalid HTTP_HOST header: 'VM_0_10_centos:8000'. The domain name provided is not valid according to RFC 1034/1035.
Bad Request: /robots.txt
[30/May/2019 07:13:01] "HEAD /robots.txt HTTP/1.0" 400 59582
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/wsgiref/handlers.py", line 138, in run
self.finish_response()
File "/usr/local/python3/lib/python3.6/wsgiref/handlers.py", line 180, in finish_response
self.write(data)
File "/usr/local/python3/lib/python3.6/wsgiref/handlers.py", line 279, in write
self._write(data)
File "/usr/local/python3/lib/python3.6/wsgiref/handlers.py", line 453, in _write
result = self.stdout.write(data)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 775, in write
self._sock.sendall(b)
ConnectionResetError: [Errno 104] Connection reset by peer
[30/May/2019 07:13:01] "HEAD /robots.txt HTTP/1.0" 500 59
----------------------------------------
Exception happened during processing of request from ('216.245.193.10', 63864)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/wsgiref/handlers.py", line 138, in run
self.finish_response()
File "/usr/local/python3/lib/python3.6/wsgiref/handlers.py", line 180, in finish_response
self.write(data)
File "/usr/local/python3/lib/python3.6/wsgiref/handlers.py", line 279, in write
self._write(data)
File "/usr/local/python3/lib/python3.6/wsgiref/handlers.py", line 453, in _write
result = self.stdout.write(data)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 775, in write
self._sock.sendall(b)
ConnectionResetError: [Errno 104] Connection reset by peer
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/wsgiref/handlers.py", line 141, in run
self.handle_error()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 116, in handle_error
super().handle_error()
File "/usr/local/python3/lib/python3.6/wsgiref/handlers.py", line 368, in handle_error
self.finish_response()
File "/usr/local/python3/lib/python3.6/wsgiref/handlers.py", line 180, in finish_response
self.write(data)
File "/usr/local/python3/lib/python3.6/wsgiref/handlers.py", line 274, in write
self.send_headers()
File "/usr/local/python3/lib/python3.6/wsgiref/handlers.py", line 331, in send_headers
if not self.origin_server or self.client_is_modern():
File "/usr/local/python3/lib/python3.6/wsgiref/handlers.py", line 344, in client_is_modern
return self.environ['SERVER_PROTOCOL'].upper() != 'HTTP/0.9'
TypeError: 'NoneType' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 169, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 194, in handle_one_request
handler.run(self.server.get_app())
File "/usr/local/python3/lib/python3.6/wsgiref/handlers.py", line 144, in run
self.close()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 111, in close
super().close()
File "/usr/local/python3/lib/python3.6/wsgiref/simple_server.py", line 35, in close
self.status.split(' ',1)[0], self.bytes_sent
AttributeError: 'NoneType' object has no attribute 'split'
----------------------------------------
Not Found: /http:/112.124.42.80:63435/
[30/May/2019 10:49:06] "HEAD http://112.124.42.80:63435/ HTTP/1.1" 404 1694
Invalid HTTP_HOST header: 'VM_0_10_centos:8000'. The domain name provided is not valid according to RFC 1034/1035.
Bad Request: /http:/172.247.32.25/ddd.html
[30/May/2019 14:48:20] "GET http://172.247.32.25/ddd.html HTTP/1.1" 400 59912
Not Found: /http:/www.baidu.com/cache/global/img/gs.gif
[30/May/2019 15:57:36] "GET http://www.baidu.com/cache/global/img/gs.gif HTTP/1.1" 404 1738
----------------------------------------
Exception happened during processing of request from ('80.82.70.187', 54594)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
Not Found: /http:/www.qq.com/404/search_children.js
[30/May/2019 17:43:16] "GET http://www.qq.com/404/search_children.js HTTP/1.1" 404 1723
[30/May/2019 17:43:21] code 400, message Bad request syntax ('\x04\x01\x00PpTi4\x00')
[30/May/2019 17:43:21] "PpTi4" 400 -
[30/May/2019 17:43:21] code 400, message Bad request syntax ('\x05\x01\x00')
[30/May/2019 17:43:21] "" 400 -
[30/May/2019 20:09:22] "GET / HTTP/1.1" 200 2015
----------------------------------------
Exception happened during processing of request from ('101.251.242.238', 54878)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[30/May/2019 21:55:34] "GET / HTTP/1.1" 200 2015
[30/May/2019 22:49:44] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00+&à\x00\x00\x00\x00\x00Cookie:')
[30/May/2019 22:49:44] "+&àCookie: mstshash=hello" 400 -
[30/May/2019 22:49:48] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00+&à\x00\x00\x00\x00\x00Cookie:')
[30/May/2019 22:49:48] "+&àCookie: mstshash=hello" 400 -
[31/May/2019 02:04:28] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:')
[31/May/2019 02:04:28] "/*àCookie: mstshash=Administr" 400 -
[31/May/2019 02:40:47] "GET / HTTP/1.1" 200 2015
[31/May/2019 04:24:04] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00+&à\x00\x00\x00\x00\x00Cookie:')
[31/May/2019 04:24:04] "+&àCookie: mstshash=hello" 400 -
[31/May/2019 04:24:08] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00+&à\x00\x00\x00\x00\x00Cookie:')
[31/May/2019 04:24:08] "+&àCookie: mstshash=hello" 400 -
Not Found: /http:/www.baidu.com/cache/global/img/gs.gif
[31/May/2019 12:07:40] "GET http://www.baidu.com/cache/global/img/gs.gif HTTP/1.1" 404 1738
----------------------------------------
Exception happened during processing of request from ('80.82.70.187', 50364)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[31/May/2019 14:39:44] "GET /booksystem/admin/ HTTP/1.1" 302 0
[31/May/2019 14:39:45] "GET /booksystem/ HTTP/1.1" 200 2015
[31/May/2019 14:39:45] "GET /booksystem/admin/login/?next=/booksystem/admin/ HTTP/1.1" 200 1878
Not Found: /favicon.ico
[31/May/2019 14:39:45] "GET /favicon.ico HTTP/1.1" 404 3721
Not Found: /favicon.ico
[31/May/2019 14:39:46] "GET /favicon.ico HTTP/1.1" 404 3721
[31/May/2019 16:15:23] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00+&à\x00\x00\x00\x00\x00Cookie:')
[31/May/2019 16:15:23] "+&àCookie: mstshash=hello" 400 -
[31/May/2019 16:15:27] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00+&à\x00\x00\x00\x00\x00Cookie:')
[31/May/2019 16:15:27] "+&àCookie: mstshash=hello" 400 -
Not Found: /http:/www.qq.com/404/search_children.js
[31/May/2019 21:34:22] "GET http://www.qq.com/404/search_children.js HTTP/1.1" 404 1723
----------------------------------------
Exception happened during processing of request from ('120.132.3.65', 9108)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[31/May/2019 21:34:27] code 400, message Bad request syntax ('\x04\x01\x00PpTi4\x00')
[31/May/2019 21:34:27] "PpTi4" 400 -
[31/May/2019 21:34:27] code 400, message Bad request syntax ('\x05\x01\x00')
[31/May/2019 21:34:27] "" 400 -
Not Found: /http:/www.baidu.com/cache/global/img/gs.gif
[31/May/2019 22:12:20] "GET http://www.baidu.com/cache/global/img/gs.gif HTTP/1.1" 404 1738
----------------------------------------
Exception happened during processing of request from ('80.82.70.187', 39536)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
----------------------------------------
Exception happened during processing of request from ('77.243.191.18', 1895)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 169, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[31/May/2019 22:13:31] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00*%à\x00\x00\x00\x00\x00Cookie:')
[31/May/2019 22:13:31] "*%àCookie: mstshash=Test" 400 -
[31/May/2019 22:13:33] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00*%à\x00\x00\x00\x00\x00Cookie:')
[31/May/2019 22:13:33] "*%àCookie: mstshash=Test" 400 -
[31/May/2019 22:20:47] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00+&à\x00\x00\x00\x00\x00Cookie:')
[31/May/2019 22:20:47] "+&àCookie: mstshash=hello" 400 -
[31/May/2019 22:20:53] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00+&à\x00\x00\x00\x00\x00Cookie:')
[31/May/2019 22:20:53] "+&àCookie: mstshash=hello" 400 -
[31/May/2019 23:57:51] code 400, message Bad HTTP/0.9 request type ('service')
[31/May/2019 23:57:51] "service launcher" 400 -
Invalid HTTP_HOST header: 'VM_0_10_centos:8000'. The domain name provided is not valid according to RFC 1034/1035.
Bad Request: /
[31/May/2019 23:57:51] "GET / HTTP/1.0" 400 59589
[31/May/2019 23:57:51] "GET / HTTP/1.0" 200 2015
[31/May/2019 23:57:51] "GET / HTTP/1.1" 200 2015
[01/Jun/2019 03:04:04] "GET / HTTP/1.1" 200 2015
[01/Jun/2019 03:10:02] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:')
[01/Jun/2019 03:10:02] "/*àCookie: mstshash=Administr" 400 -
[01/Jun/2019 04:25:37] "GET / HTTP/1.1" 200 2015
[01/Jun/2019 07:12:13] code 400, message Bad HTTP/0.9 request type ('\x03\x00\x00/*à\x00\x00\x00\x00\x00Cookie:')
[01/Jun/2019 07:12:13] "/*àCookie: mstshash=Administr" 400 -
Not Found: /http:/www.baidu.com/cache/global/img/gs.gif
[01/Jun/2019 08:25:46] "GET http://www.baidu.com/cache/global/img/gs.gif HTTP/1.1" 404 1738
----------------------------------------
Exception happened during processing of request from ('80.82.70.187', 52673)
Traceback (most recent call last):
File "/usr/local/python3/lib/python3.6/socketserver.py", line 639, in process_request_thread
self.finish_request(request, client_address)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 361, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/local/python3/lib/python3.6/socketserver.py", line 696, in __init__
self.handle()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 171, in handle
self.handle_one_request()
File "/usr/local/python3/lib/python3.6/site-packages/django/core/servers/basehttp.py", line 179, in handle_one_request
self.raw_requestline = self.rfile.readline(65537)
File "/usr/local/python3/lib/python3.6/socket.py", line 586, in readinto
return self._sock.recv_into(b)
ConnectionResetError: [Errno 104] Connection reset by peer
----------------------------------------
[01/Jun/2019 10:12:30] "GET / HTTP/1.1" 200 2015
Not Found: /favicon.ico
[01/Jun/2019 10:12:30] "GET /favicon.ico HTTP/1.1" 404 3721
[01/Jun/2019 10:55:52] "GET / HTTP/1.1" 200 2015
[01/Jun/2019 11:14:00] "GET / HTTP/1.1" 200 2015
Not Found: /favicon.ico
[01/Jun/2019 11:14:00] "GET /favicon.ico HTTP/1.1" 404 3721
[01/Jun/2019 11:14:07] "GET / HTTP/1.1" 200 2015
[01/Jun/2019 11:14:20] "POST /booksystem/result/ HTTP/1.1" 200 29288
[01/Jun/2019 11:14:23] "GET /booksystem/user_info/ HTTP/1.1" 200 7855
[01/Jun/2019 11:14:43] "GET /booksystem/logout_user/ HTTP/1.1" 200 3936
[01/Jun/2019 11:14:49] "POST /booksystem/login_user/ HTTP/1.1" 200 7143
[01/Jun/2019 11:14:53] "GET /booksystem/user_info/ HTTP/1.1" 200 3596
[01/Jun/2019 11:15:07] "GET /booksystem/refund/flight/1 HTTP/1.1" 301 0
[01/Jun/2019 11:15:08] "GET /booksystem/refund/flight/1/ HTTP/1.1" 302 0
[01/Jun/2019 11:15:08] "GET /booksystem/user_info/ HTTP/1.1" 200 3096
[01/Jun/2019 11:15:10] "GET /booksystem/user_info/ HTTP/1.1" 200 3096
[01/Jun/2019 11:15:10] "GET /booksystem/user_info/ HTTP/1.1" 200 3096
[01/Jun/2019 11:15:11] "GET /booksystem/user_info/ HTTP/1.1" 200 3096
[01/Jun/2019 11:16:05] "GET /booksystem/user_info/ HTTP/1.1" 200 3096
[01/Jun/2019 11:16:07] "GET /booksystem/result/ HTTP/1.1" 200 7150
[01/Jun/2019 11:16:08] "GET /booksystem/user_info/ HTTP/1.1" 200 3096
[01/Jun/2019 11:16:09] "GET /booksystem/user_info/ HTTP/1.1" 200 3096
[01/Jun/2019 11:17:11] "GET /booksystem/user_info/ HTTP/1.1" 200 3096
[01/Jun/2019 11:17:11] "GET /booksystem/user_info/ HTTP/1.1" 200 3096
[01/Jun/2019 11:17:32] "GET /booksystem/ HTTP/1.1" 200 2015
[01/Jun/2019 11:24:07] "GET / HTTP/1.1" 200 2015
[01/Jun/2019 11:24:11] "GET /booksystem/admin/ HTTP/1.1" 302 0
[01/Jun/2019 11:24:12] "GET /booksystem/admin/login/?next=/booksystem/admin/ HTTP/1.1" 200 2026
[01/Jun/2019 11:24:12] "GET /static/admin/css/base.css HTTP/1.1" 304 0
[01/Jun/2019 11:24:12] "GET /static/admin/css/login.css HTTP/1.1" 304 0
[01/Jun/2019 11:24:12] "GET /static/admin/css/responsive.css HTTP/1.1" 304 0
[01/Jun/2019 11:24:12] "GET /static/admin/css/fonts.css HTTP/1.1" 304 0
[01/Jun/2019 11:24:13] "GET /static/admin/fonts/Roboto-Bold-webfont.woff HTTP/1.1" 304 0
[01/Jun/2019 11:24:13] "GET /static/admin/fonts/Roboto-Regular-webfont.woff HTTP/1.1" 304 0
[01/Jun/2019 11:24:13] "GET /static/admin/fonts/Roboto-Light-webfont.woff HTTP/1.1" 304 0
[01/Jun/2019 11:24:15] "POST /booksystem/admin/login/?next=/booksystem/admin/ HTTP/1.1" 302 0
[01/Jun/2019 11:24:15] "GET /booksystem/admin/ HTTP/1.1" 200 6883
[01/Jun/2019 11:24:15] "GET /static/admin/css/dashboard.css HTTP/1.1" 304 0
[01/Jun/2019 11:24:15] "GET /static/admin/img/icon-changelink.svg HTTP/1.1" 304 0
[01/Jun/2019 11:24:15] "GET /static/admin/img/icon-addlink.svg HTTP/1.1" 304 0
[01/Jun/2019 11:24:15] "GET /static/admin/img/icon-deletelink.svg HTTP/1.1" 304 0