Newer
Older
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
LineId,Month,Date,Time,Level,Component,PID,Content,EventId,EventTemplate
1,Jun,14,15:16:01,combo,sshd(pam_unix),19939,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
2,Jun,14,15:16:02,combo,sshd(pam_unix),19937,check pass; user unknown,E27,check pass; user unknown
3,Jun,14,15:16:02,combo,sshd(pam_unix),19937,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
4,Jun,15,02:04:59,combo,sshd(pam_unix),20882,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
5,Jun,15,02:04:59,combo,sshd(pam_unix),20884,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
6,Jun,15,02:04:59,combo,sshd(pam_unix),20883,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
7,Jun,15,02:04:59,combo,sshd(pam_unix),20885,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
8,Jun,15,02:04:59,combo,sshd(pam_unix),20886,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
9,Jun,15,02:04:59,combo,sshd(pam_unix),20892,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
10,Jun,15,02:04:59,combo,sshd(pam_unix),20893,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
11,Jun,15,02:04:59,combo,sshd(pam_unix),20896,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
12,Jun,15,02:04:59,combo,sshd(pam_unix),20897,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
13,Jun,15,02:04:59,combo,sshd(pam_unix),20898,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
14,Jun,15,04:06:18,combo,su(pam_unix),21416,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
15,Jun,15,04:06:19,combo,su(pam_unix),21416,session closed for user cyrus,E101,session closed for user <*>
16,Jun,15,04:06:20,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
17,Jun,15,04:12:42,combo,su(pam_unix),22644,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
18,Jun,15,04:12:43,combo,su(pam_unix),22644,session closed for user news,E101,session closed for user <*>
19,Jun,15,12:12:34,combo,sshd(pam_unix),23397,check pass; user unknown,E27,check pass; user unknown
20,Jun,15,12:12:34,combo,sshd(pam_unix),23397,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
21,Jun,15,12:12:34,combo,sshd(pam_unix),23395,check pass; user unknown,E27,check pass; user unknown
22,Jun,15,12:12:34,combo,sshd(pam_unix),23395,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
23,Jun,15,12:12:34,combo,sshd(pam_unix),23404,check pass; user unknown,E27,check pass; user unknown
24,Jun,15,12:12:34,combo,sshd(pam_unix),23404,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
25,Jun,15,12:12:34,combo,sshd(pam_unix),23399,check pass; user unknown,E27,check pass; user unknown
26,Jun,15,12:12:34,combo,sshd(pam_unix),23399,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
27,Jun,15,12:12:34,combo,sshd(pam_unix),23406,check pass; user unknown,E27,check pass; user unknown
28,Jun,15,12:12:34,combo,sshd(pam_unix),23406,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
29,Jun,15,12:12:34,combo,sshd(pam_unix),23396,check pass; user unknown,E27,check pass; user unknown
30,Jun,15,12:12:34,combo,sshd(pam_unix),23394,check pass; user unknown,E27,check pass; user unknown
31,Jun,15,12:12:34,combo,sshd(pam_unix),23407,check pass; user unknown,E27,check pass; user unknown
32,Jun,15,12:12:34,combo,sshd(pam_unix),23394,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
33,Jun,15,12:12:34,combo,sshd(pam_unix),23403,check pass; user unknown,E27,check pass; user unknown
34,Jun,15,12:12:34,combo,sshd(pam_unix),23396,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
35,Jun,15,12:12:34,combo,sshd(pam_unix),23407,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
36,Jun,15,12:12:34,combo,sshd(pam_unix),23403,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
37,Jun,15,12:12:34,combo,sshd(pam_unix),23412,check pass; user unknown,E27,check pass; user unknown
38,Jun,15,12:12:34,combo,sshd(pam_unix),23412,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
39,Jun,15,12:13:19,combo,sshd(pam_unix),23414,check pass; user unknown,E27,check pass; user unknown
40,Jun,15,12:13:19,combo,sshd(pam_unix),23414,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
41,Jun,15,12:13:20,combo,sshd(pam_unix),23416,check pass; user unknown,E27,check pass; user unknown
42,Jun,15,12:13:20,combo,sshd(pam_unix),23416,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
43,Jun,15,14:53:32,combo,sshd(pam_unix),23661,check pass; user unknown,E27,check pass; user unknown
44,Jun,15,14:53:32,combo,sshd(pam_unix),23661,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
45,Jun,15,14:53:32,combo,sshd(pam_unix),23663,check pass; user unknown,E27,check pass; user unknown
46,Jun,15,14:53:32,combo,sshd(pam_unix),23663,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
47,Jun,15,14:53:32,combo,sshd(pam_unix),23664,check pass; user unknown,E27,check pass; user unknown
48,Jun,15,14:53:32,combo,sshd(pam_unix),23664,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
49,Jun,15,14:53:33,combo,sshd(pam_unix),23665,check pass; user unknown,E27,check pass; user unknown
50,Jun,15,14:53:33,combo,sshd(pam_unix),23665,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
51,Jun,15,14:53:34,combo,sshd(pam_unix),23669,check pass; user unknown,E27,check pass; user unknown
52,Jun,15,14:53:34,combo,sshd(pam_unix),23669,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
53,Jun,15,14:53:35,combo,sshd(pam_unix),23671,check pass; user unknown,E27,check pass; user unknown
54,Jun,15,14:53:35,combo,sshd(pam_unix),23671,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
55,Jun,15,14:53:35,combo,sshd(pam_unix),23673,check pass; user unknown,E27,check pass; user unknown
56,Jun,15,14:53:35,combo,sshd(pam_unix),23673,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
57,Jun,15,14:53:35,combo,sshd(pam_unix),23674,check pass; user unknown,E27,check pass; user unknown
58,Jun,15,14:53:35,combo,sshd(pam_unix),23674,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
59,Jun,15,14:53:36,combo,sshd(pam_unix),23678,check pass; user unknown,E27,check pass; user unknown
60,Jun,15,14:53:36,combo,sshd(pam_unix),23678,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
61,Jun,15,14:53:36,combo,sshd(pam_unix),23677,check pass; user unknown,E27,check pass; user unknown
62,Jun,15,14:53:36,combo,sshd(pam_unix),23677,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
63,Jun,15,20:05:31,combo,sshd(pam_unix),24138,check pass; user unknown,E27,check pass; user unknown
64,Jun,15,20:05:31,combo,sshd(pam_unix),24138,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=d211-116-254-214.rev.krline.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
65,Jun,15,20:05:31,combo,sshd(pam_unix),24137,check pass; user unknown,E27,check pass; user unknown
66,Jun,15,20:05:31,combo,sshd(pam_unix),24137,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=d211-116-254-214.rev.krline.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
67,Jun,15,20:05:31,combo,sshd(pam_unix),24141,check pass; user unknown,E27,check pass; user unknown
68,Jun,15,20:05:31,combo,sshd(pam_unix),24141,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=d211-116-254-214.rev.krline.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
69,Jun,15,20:05:31,combo,sshd(pam_unix),24140,check pass; user unknown,E27,check pass; user unknown
70,Jun,15,20:05:31,combo,sshd(pam_unix),24140,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=d211-116-254-214.rev.krline.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
71,Jun,15,20:05:31,combo,sshd(pam_unix),24139,check pass; user unknown,E27,check pass; user unknown
72,Jun,15,20:05:31,combo,sshd(pam_unix),24139,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=d211-116-254-214.rev.krline.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
73,Jun,16,04:10:22,combo,su(pam_unix),25178,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
74,Jun,16,04:10:23,combo,su(pam_unix),25178,session closed for user cyrus,E101,session closed for user <*>
75,Jun,16,04:10:24,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
76,Jun,16,04:16:17,combo,su(pam_unix),25548,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
77,Jun,16,04:16:18,combo,su(pam_unix),25548,session closed for user news,E101,session closed for user <*>
78,Jun,17,04:03:33,combo,su(pam_unix),27953,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
79,Jun,17,04:03:34,combo,su(pam_unix),27953,session closed for user cyrus,E101,session closed for user <*>
80,Jun,17,04:03:36,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
81,Jun,17,04:09:43,combo,su(pam_unix),29190,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
82,Jun,17,04:09:45,combo,su(pam_unix),29190,session closed for user news,E101,session closed for user <*>
83,Jun,17,07:07:00,combo,ftpd,29504,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:00 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
84,Jun,17,07:07:00,combo,ftpd,29508,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:00 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
85,Jun,17,07:07:00,combo,ftpd,29507,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:00 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
86,Jun,17,07:07:00,combo,ftpd,29505,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:00 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
87,Jun,17,07:07:00,combo,ftpd,29506,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:00 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
88,Jun,17,07:07:00,combo,ftpd,29509,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:00 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
89,Jun,17,07:07:02,combo,ftpd,29510,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:02 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
90,Jun,17,07:07:04,combo,ftpd,29511,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:04 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
91,Jun,17,19:43:13,combo,sshd(pam_unix),30565,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.46.224.253 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
92,Jun,17,20:29:26,combo,sshd(pam_unix),30631,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
93,Jun,17,20:34:57,combo,sshd(pam_unix),30631,session closed for user test,E101,session closed for user <*>
94,Jun,17,20:55:06,combo,ftpd,30755,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Fri Jun 17 20:55:06 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
95,Jun,17,20:55:06,combo,ftpd,30754,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Fri Jun 17 20:55:06 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
96,Jun,17,20:55:06,combo,ftpd,30753,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Fri Jun 17 20:55:06 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
97,Jun,17,20:55:06,combo,ftpd,30756,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Fri Jun 17 20:55:06 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
98,Jun,17,20:55:06,combo,ftpd,30757,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Fri Jun 17 20:55:06 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
99,Jun,17,20:55:07,combo,ftpd,30758,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Fri Jun 17 20:55:07 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
100,Jun,17,20:55:07,combo,ftpd,30759,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Fri Jun 17 20:55:07 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
101,Jun,18,01:30:59,combo,sshd(pam_unix),31201,check pass; user unknown,E27,check pass; user unknown
102,Jun,18,01:30:59,combo,sshd(pam_unix),31201,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
103,Jun,18,01:30:59,combo,sshd(pam_unix),31199,check pass; user unknown,E27,check pass; user unknown
104,Jun,18,01:30:59,combo,sshd(pam_unix),31199,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
105,Jun,18,01:30:59,combo,sshd(pam_unix),31198,check pass; user unknown,E27,check pass; user unknown
106,Jun,18,01:30:59,combo,sshd(pam_unix),31198,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
107,Jun,18,01:30:59,combo,sshd(pam_unix),31202,check pass; user unknown,E27,check pass; user unknown
108,Jun,18,01:30:59,combo,sshd(pam_unix),31202,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
109,Jun,18,01:30:59,combo,sshd(pam_unix),31205,check pass; user unknown,E27,check pass; user unknown
110,Jun,18,01:30:59,combo,sshd(pam_unix),31205,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
111,Jun,18,01:30:59,combo,sshd(pam_unix),31200,check pass; user unknown,E27,check pass; user unknown
112,Jun,18,01:30:59,combo,sshd(pam_unix),31200,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
113,Jun,18,01:30:59,combo,sshd(pam_unix),31206,check pass; user unknown,E27,check pass; user unknown
114,Jun,18,01:30:59,combo,sshd(pam_unix),31206,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
115,Jun,18,01:30:59,combo,sshd(pam_unix),31204,check pass; user unknown,E27,check pass; user unknown
116,Jun,18,01:30:59,combo,sshd(pam_unix),31204,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
117,Jun,18,01:30:59,combo,sshd(pam_unix),31203,check pass; user unknown,E27,check pass; user unknown
118,Jun,18,01:30:59,combo,sshd(pam_unix),31203,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
119,Jun,18,01:30:59,combo,sshd(pam_unix),31207,check pass; user unknown,E27,check pass; user unknown
120,Jun,18,01:30:59,combo,sshd(pam_unix),31207,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
121,Jun,18,02:08:10,combo,ftpd,31272,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Sat Jun 18 02:08:10 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
122,Jun,18,02:08:10,combo,ftpd,31273,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Sat Jun 18 02:08:10 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
123,Jun,18,02:08:10,combo,ftpd,31274,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Sat Jun 18 02:08:10 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
124,Jun,18,02:08:10,combo,ftpd,31275,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Sat Jun 18 02:08:10 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
125,Jun,18,02:08:10,combo,ftpd,31276,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Sat Jun 18 02:08:10 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
126,Jun,18,02:08:10,combo,ftpd,31277,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Sat Jun 18 02:08:10 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
127,Jun,18,02:08:10,combo,ftpd,31278,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Sat Jun 18 02:08:10 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
128,Jun,18,02:08:11,combo,ftpd,31279,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Sat Jun 18 02:08:11 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
129,Jun,18,02:08:11,combo,ftpd,31280,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Sat Jun 18 02:08:11 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
130,Jun,18,02:08:11,combo,ftpd,31281,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Sat Jun 18 02:08:11 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
131,Jun,18,02:08:11,combo,ftpd,31282,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Sat Jun 18 02:08:11 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
132,Jun,18,02:08:11,combo,ftpd,31283,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Sat Jun 18 02:08:11 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
133,Jun,18,02:08:12,combo,ftpd,31284,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Sat Jun 18 02:08:12 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
134,Jun,18,02:08:12,combo,ftpd,31285,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Sat Jun 18 02:08:12 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
135,Jun,18,02:08:12,combo,ftpd,31286,connection from 82.252.162.81 (lns-vlq-45-tou-82-252-162-81.adsl.proxad.net) at Sat Jun 18 02:08:12 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
136,Jun,18,02:23:10,combo,ftpd,31277,User unknown timed out after 900 seconds at Sat Jun 18 02:23:10 2005,E112,User unknown timed out after <*> seconds at <*>:<*>:<*> <*>
137,Jun,18,04:07:05,combo,su(pam_unix),31791,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
138,Jun,18,04:07:06,combo,su(pam_unix),31791,session closed for user cyrus,E101,session closed for user <*>
139,Jun,18,04:07:06,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
140,Jun,18,04:12:42,combo,su(pam_unix),32164,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
141,Jun,18,04:12:43,combo,su(pam_unix),32164,session closed for user news,E101,session closed for user <*>
142,Jun,19,04:08:55,combo,su(pam_unix),2192,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
143,Jun,19,04:08:55,combo,su(pam_unix),2192,session closed for user cyrus,E101,session closed for user <*>
144,Jun,19,04:08:57,combo,cups,,cupsd shutdown succeeded,E37,cupsd shutdown succeeded
145,Jun,19,04:09:02,combo,cups,,cupsd startup succeeded,E38,cupsd startup succeeded
146,Jun,19,04:09:11,combo,syslogd 1.4.1,,restart.,E90,restart.
147,Jun,19,04:09:11,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
148,Jun,19,04:15:18,combo,su(pam_unix),3676,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
149,Jun,19,04:15:18,combo,su(pam_unix),3676,session closed for user news,E101,session closed for user <*>
150,Jun,20,03:40:59,combo,ftpd,8829,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
151,Jun,20,03:40:59,combo,ftpd,8824,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
152,Jun,20,03:40:59,combo,ftpd,8828,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
153,Jun,20,03:40:59,combo,ftpd,8822,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
154,Jun,20,03:40:59,combo,ftpd,8833,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
155,Jun,20,03:40:59,combo,ftpd,8827,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
156,Jun,20,03:40:59,combo,ftpd,8823,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
157,Jun,20,03:40:59,combo,ftpd,8825,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
158,Jun,20,03:40:59,combo,ftpd,8826,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
159,Jun,20,03:40:59,combo,ftpd,8832,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
160,Jun,20,03:40:59,combo,ftpd,8830,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
161,Jun,20,03:40:59,combo,ftpd,8831,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
162,Jun,20,04:02:54,combo,su(pam_unix),9187,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
163,Jun,20,04:02:54,combo,su(pam_unix),9187,session closed for user cyrus,E101,session closed for user <*>
164,Jun,20,04:02:55,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
165,Jun,20,04:08:37,combo,su(pam_unix),9558,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
166,Jun,20,04:08:38,combo,su(pam_unix),9558,session closed for user news,E101,session closed for user <*>
167,Jun,20,04:44:39,combo,snmpd,2318,Received SNMP packet(s) from 67.170.148.126,E88,Received SNMP packet(s) from <*>
168,Jun,20,09:20:05,combo,sshd(pam_unix),10035,check pass; user unknown,E27,check pass; user unknown
169,Jun,20,09:20:05,combo,sshd(pam_unix),10035,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
170,Jun,20,09:20:05,combo,sshd(pam_unix),10037,check pass; user unknown,E27,check pass; user unknown
171,Jun,20,09:20:05,combo,sshd(pam_unix),10037,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
172,Jun,20,09:20:05,combo,sshd(pam_unix),10039,check pass; user unknown,E27,check pass; user unknown
173,Jun,20,09:20:05,combo,sshd(pam_unix),10039,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
174,Jun,20,09:20:06,combo,sshd(pam_unix),10041,check pass; user unknown,E27,check pass; user unknown
175,Jun,20,09:20:06,combo,sshd(pam_unix),10041,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
176,Jun,20,09:20:07,combo,sshd(pam_unix),10043,check pass; user unknown,E27,check pass; user unknown
177,Jun,20,09:20:07,combo,sshd(pam_unix),10043,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
178,Jun,20,09:20:07,combo,sshd(pam_unix),10045,check pass; user unknown,E27,check pass; user unknown
179,Jun,20,09:20:07,combo,sshd(pam_unix),10045,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
180,Jun,20,09:20:07,combo,sshd(pam_unix),10047,check pass; user unknown,E27,check pass; user unknown
181,Jun,20,09:20:07,combo,sshd(pam_unix),10047,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
182,Jun,20,09:20:07,combo,sshd(pam_unix),10049,check pass; user unknown,E27,check pass; user unknown
183,Jun,20,09:20:07,combo,sshd(pam_unix),10049,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
184,Jun,20,09:20:08,combo,sshd(pam_unix),10051,check pass; user unknown,E27,check pass; user unknown
185,Jun,20,09:20:08,combo,sshd(pam_unix),10051,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
186,Jun,20,09:20:08,combo,sshd(pam_unix),10053,check pass; user unknown,E27,check pass; user unknown
187,Jun,20,09:20:08,combo,sshd(pam_unix),10053,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
188,Jun,21,04:06:57,combo,su(pam_unix),12098,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
189,Jun,21,04:06:58,combo,su(pam_unix),12098,session closed for user cyrus,E101,session closed for user <*>
190,Jun,21,04:06:59,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
191,Jun,21,04:13:03,combo,su(pam_unix),13327,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
192,Jun,21,04:13:04,combo,su(pam_unix),13327,session closed for user news,E101,session closed for user <*>
193,Jun,21,08:56:36,combo,sshd(pam_unix),14281,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217.60.212.66 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
194,Jun,21,08:56:36,combo,sshd(pam_unix),14279,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217.60.212.66 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
195,Jun,21,08:56:36,combo,sshd(pam_unix),14282,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217.60.212.66 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
196,Jun,21,08:56:36,combo,sshd(pam_unix),14277,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217.60.212.66 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
197,Jun,21,08:56:36,combo,sshd(pam_unix),14278,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217.60.212.66 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
198,Jun,21,08:56:36,combo,sshd(pam_unix),14280,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217.60.212.66 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
199,Jun,22,03:17:26,combo,sshd(pam_unix),16207,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
200,Jun,22,03:17:26,combo,sshd(pam_unix),16206,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
201,Jun,22,03:17:35,combo,sshd(pam_unix),16210,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
202,Jun,22,03:17:36,combo,sshd(pam_unix),16212,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
203,Jun,22,03:17:36,combo,sshd(pam_unix),16213,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
204,Jun,22,03:17:45,combo,sshd(pam_unix),16216,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
205,Jun,22,03:17:46,combo,sshd(pam_unix),16218,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
206,Jun,22,03:17:46,combo,sshd(pam_unix),16219,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
207,Jun,22,03:17:52,combo,sshd(pam_unix),16222,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
208,Jun,22,03:17:55,combo,sshd(pam_unix),16224,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
209,Jun,22,03:17:56,combo,sshd(pam_unix),16226,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
210,Jun,22,03:17:56,combo,sshd(pam_unix),16227,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
211,Jun,22,03:18:02,combo,sshd(pam_unix),16230,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
212,Jun,22,03:18:05,combo,sshd(pam_unix),16232,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
213,Jun,22,03:18:06,combo,sshd(pam_unix),16234,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
214,Jun,22,03:18:06,combo,sshd(pam_unix),16235,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
215,Jun,22,03:18:10,combo,sshd(pam_unix),16238,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
216,Jun,22,03:18:12,combo,sshd(pam_unix),16240,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
217,Jun,22,03:18:15,combo,sshd(pam_unix),16242,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
218,Jun,22,03:18:16,combo,sshd(pam_unix),16244,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
219,Jun,22,03:18:16,combo,sshd(pam_unix),16245,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
220,Jun,22,03:18:20,combo,sshd(pam_unix),16248,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
221,Jun,22,03:18:22,combo,sshd(pam_unix),16250,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
222,Jun,22,04:05:58,combo,su(pam_unix),16663,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
223,Jun,22,04:05:59,combo,su(pam_unix),16663,session closed for user cyrus,E101,session closed for user <*>
224,Jun,22,04:06:00,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
225,Jun,22,04:11:42,combo,su(pam_unix),17037,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
226,Jun,22,04:11:42,combo,su(pam_unix),17037,session closed for user news,E101,session closed for user <*>
227,Jun,22,04:30:55,combo,sshd(pam_unix),17129,check pass; user unknown,E27,check pass; user unknown
228,Jun,22,04:30:55,combo,sshd(pam_unix),17129,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
229,Jun,22,04:30:55,combo,sshd(pam_unix),17125,check pass; user unknown,E27,check pass; user unknown
230,Jun,22,04:30:55,combo,sshd(pam_unix),17125,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
231,Jun,22,04:30:55,combo,sshd(pam_unix),17124,check pass; user unknown,E27,check pass; user unknown
232,Jun,22,04:30:55,combo,sshd(pam_unix),17124,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
233,Jun,22,04:30:55,combo,sshd(pam_unix),17123,check pass; user unknown,E27,check pass; user unknown
234,Jun,22,04:30:55,combo,sshd(pam_unix),17123,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
235,Jun,22,04:30:55,combo,sshd(pam_unix),17132,check pass; user unknown,E27,check pass; user unknown
236,Jun,22,04:30:55,combo,sshd(pam_unix),17132,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
237,Jun,22,04:30:55,combo,sshd(pam_unix),17131,check pass; user unknown,E27,check pass; user unknown
238,Jun,22,04:30:55,combo,sshd(pam_unix),17131,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
239,Jun,22,04:30:55,combo,sshd(pam_unix),17135,check pass; user unknown,E27,check pass; user unknown
240,Jun,22,04:30:55,combo,sshd(pam_unix),17135,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
241,Jun,22,04:30:55,combo,sshd(pam_unix),17137,check pass; user unknown,E27,check pass; user unknown
242,Jun,22,04:30:55,combo,sshd(pam_unix),17137,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
243,Jun,22,04:30:56,combo,sshd(pam_unix),17139,check pass; user unknown,E27,check pass; user unknown
244,Jun,22,04:30:56,combo,sshd(pam_unix),17139,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
245,Jun,22,04:30:56,combo,sshd(pam_unix),17140,check pass; user unknown,E27,check pass; user unknown
246,Jun,22,04:30:56,combo,sshd(pam_unix),17140,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
247,Jun,22,13:16:30,combo,ftpd,17886,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
248,Jun,22,13:16:30,combo,ftpd,17889,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
249,Jun,22,13:16:30,combo,ftpd,17887,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
250,Jun,22,13:16:30,combo,ftpd,17888,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
251,Jun,22,13:16:30,combo,ftpd,17890,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
252,Jun,22,13:16:30,combo,ftpd,17893,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
253,Jun,22,13:16:30,combo,ftpd,17879,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
254,Jun,22,13:16:30,combo,ftpd,17892,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
255,Jun,22,13:16:30,combo,ftpd,17876,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
256,Jun,22,13:16:30,combo,ftpd,17875,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
257,Jun,22,13:16:30,combo,ftpd,17877,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
258,Jun,22,13:16:30,combo,ftpd,17874,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
259,Jun,22,13:16:30,combo,ftpd,17882,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
260,Jun,22,13:16:30,combo,ftpd,17872,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
261,Jun,22,13:16:30,combo,ftpd,17881,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
262,Jun,22,13:16:30,combo,ftpd,17878,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
263,Jun,22,13:16:31,combo,ftpd,17873,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
264,Jun,22,13:16:31,combo,ftpd,17885,connection from 210.245.165.136 () at Wed Jun 22 13:16:31 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
265,Jun,22,13:16:31,combo,ftpd,17884,connection from 210.245.165.136 () at Wed Jun 22 13:16:31 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
266,Jun,22,13:16:31,combo,ftpd,17880,connection from 210.245.165.136 () at Wed Jun 22 13:16:31 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
267,Jun,22,13:16:31,combo,ftpd,17883,connection from 210.245.165.136 () at Wed Jun 22 13:16:31 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
268,Jun,22,13:16:31,combo,ftpd,17891,connection from 210.245.165.136 () at Wed Jun 22 13:16:31 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
269,Jun,22,13:16:32,combo,ftpd,17894,connection from 210.245.165.136 () at Wed Jun 22 13:16:32 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
270,Jun,23,01:41:29,combo,sshd(pam_unix),18969,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
271,Jun,23,01:41:29,combo,sshd(pam_unix),18971,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
272,Jun,23,01:41:29,combo,sshd(pam_unix),18973,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
273,Jun,23,01:41:29,combo,sshd(pam_unix),18975,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
274,Jun,23,01:41:29,combo,sshd(pam_unix),18977,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
275,Jun,23,01:41:30,combo,sshd(pam_unix),18983,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
276,Jun,23,01:41:30,combo,sshd(pam_unix),18982,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
277,Jun,23,01:41:30,combo,sshd(pam_unix),18981,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
278,Jun,23,01:41:30,combo,sshd(pam_unix),18976,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
279,Jun,23,01:41:32,combo,sshd(pam_unix),18967,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,E17,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=guest
280,Jun,23,02:55:14,combo,sshd(pam_unix),19085,check pass; user unknown,E27,check pass; user unknown
281,Jun,23,02:55:14,combo,sshd(pam_unix),19085,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=200.60.37.201,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
282,Jun,23,04:05:28,combo,su(pam_unix),19534,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
283,Jun,23,04:05:29,combo,su(pam_unix),19534,session closed for user cyrus,E101,session closed for user <*>
284,Jun,23,04:05:30,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
285,Jun,23,04:13:08,combo,su(pam_unix),24180,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
286,Jun,23,04:13:09,combo,su(pam_unix),24180,session closed for user news,E101,session closed for user <*>
287,Jun,23,23:30:03,combo,sshd(pam_unix),26189,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
288,Jun,23,23:30:03,combo,sshd(pam_unix),26188,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
289,Jun,23,23:30:04,combo,sshd(pam_unix),26193,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
290,Jun,23,23:30:04,combo,sshd(pam_unix),26182,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
291,Jun,23,23:30:04,combo,sshd(pam_unix),26183,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
292,Jun,23,23:30:04,combo,sshd(pam_unix),26184,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
293,Jun,23,23:30:05,combo,sshd(pam_unix),26197,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
294,Jun,23,23:30:05,combo,sshd(pam_unix),26198,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
295,Jun,23,23:30:05,combo,sshd(pam_unix),26190,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
296,Jun,24,04:05:34,combo,su(pam_unix),26938,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
297,Jun,24,04:05:35,combo,su(pam_unix),26938,session closed for user cyrus,E101,session closed for user <*>
298,Jun,24,04:05:35,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
299,Jun,24,04:11:12,combo,su(pam_unix),27311,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
300,Jun,24,04:11:12,combo,su(pam_unix),27311,session closed for user news,E101,session closed for user <*>
301,Jun,24,18:55:11,combo,ftpd,28568,connection from 218.69.108.57 () at Fri Jun 24 18:55:11 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
302,Jun,24,18:55:11,combo,ftpd,28566,connection from 218.69.108.57 () at Fri Jun 24 18:55:11 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
303,Jun,24,18:55:11,combo,ftpd,28562,connection from 218.69.108.57 () at Fri Jun 24 18:55:11 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
304,Jun,24,18:55:11,combo,ftpd,28563,connection from 218.69.108.57 () at Fri Jun 24 18:55:11 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
305,Jun,24,18:55:11,combo,ftpd,28565,connection from 218.69.108.57 () at Fri Jun 24 18:55:11 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
306,Jun,24,18:55:11,combo,ftpd,28564,connection from 218.69.108.57 () at Fri Jun 24 18:55:11 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
307,Jun,24,18:55:11,combo,ftpd,28567,connection from 218.69.108.57 () at Fri Jun 24 18:55:11 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
308,Jun,24,18:55:18,combo,ftpd,28570,connection from 218.69.108.57 () at Fri Jun 24 18:55:18 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
309,Jun,24,18:55:18,combo,ftpd,28571,connection from 218.69.108.57 () at Fri Jun 24 18:55:18 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
310,Jun,24,18:55:18,combo,ftpd,28569,connection from 218.69.108.57 () at Fri Jun 24 18:55:18 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
311,Jun,24,18:55:18,combo,ftpd,28572,connection from 218.69.108.57 () at Fri Jun 24 18:55:18 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
312,Jun,24,18:55:18,combo,ftpd,28574,connection from 218.69.108.57 () at Fri Jun 24 18:55:18 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
313,Jun,24,18:55:18,combo,ftpd,28573,connection from 218.69.108.57 () at Fri Jun 24 18:55:18 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
314,Jun,25,04:04:25,combo,su(pam_unix),29690,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
315,Jun,25,04:04:25,combo,su(pam_unix),29690,session closed for user cyrus,E101,session closed for user <*>
316,Jun,25,04:04:26,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
317,Jun,25,04:10:34,combo,su(pam_unix),30934,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
318,Jun,25,04:10:35,combo,su(pam_unix),30934,session closed for user news,E101,session closed for user <*>
319,Jun,25,04:41:49,combo,sshd(pam_unix),31031,check pass; user unknown,E27,check pass; user unknown
320,Jun,25,04:41:49,combo,sshd(pam_unix),31031,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
321,Jun,25,04:41:49,combo,sshd(pam_unix),31035,check pass; user unknown,E27,check pass; user unknown
322,Jun,25,04:41:49,combo,sshd(pam_unix),31035,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
323,Jun,25,04:41:49,combo,sshd(pam_unix),31034,check pass; user unknown,E27,check pass; user unknown
324,Jun,25,04:41:49,combo,sshd(pam_unix),31034,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
325,Jun,25,04:41:49,combo,sshd(pam_unix),31036,check pass; user unknown,E27,check pass; user unknown
326,Jun,25,04:41:49,combo,sshd(pam_unix),31036,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
327,Jun,25,04:41:51,combo,sshd(pam_unix),31025,check pass; user unknown,E27,check pass; user unknown
328,Jun,25,04:41:51,combo,sshd(pam_unix),31025,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
329,Jun,25,04:41:51,combo,sshd(pam_unix),31028,check pass; user unknown,E27,check pass; user unknown
330,Jun,25,04:41:51,combo,sshd(pam_unix),31028,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
331,Jun,25,04:41:51,combo,sshd(pam_unix),31020,check pass; user unknown,E27,check pass; user unknown
332,Jun,25,04:41:51,combo,sshd(pam_unix),31020,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
333,Jun,25,04:41:51,combo,sshd(pam_unix),31027,check pass; user unknown,E27,check pass; user unknown
334,Jun,25,04:41:51,combo,sshd(pam_unix),31027,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
335,Jun,25,04:41:51,combo,sshd(pam_unix),31021,check pass; user unknown,E27,check pass; user unknown
336,Jun,25,04:41:51,combo,sshd(pam_unix),31021,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
337,Jun,25,04:41:51,combo,sshd(pam_unix),31024,check pass; user unknown,E27,check pass; user unknown
338,Jun,25,04:41:51,combo,sshd(pam_unix),31024,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
339,Jun,25,09:20:24,combo,ftpd,31475,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
340,Jun,25,09:20:24,combo,ftpd,31477,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
341,Jun,25,09:20:24,combo,ftpd,31474,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
342,Jun,25,09:20:24,combo,ftpd,31476,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
343,Jun,25,09:20:24,combo,ftpd,31473,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
344,Jun,25,09:20:24,combo,ftpd,31467,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
345,Jun,25,09:20:24,combo,ftpd,31470,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
346,Jun,25,09:20:24,combo,ftpd,31465,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
347,Jun,25,09:20:24,combo,ftpd,31472,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
348,Jun,25,09:20:24,combo,ftpd,31468,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
349,Jun,25,09:20:24,combo,ftpd,31463,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
350,Jun,25,09:20:24,combo,ftpd,31471,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
351,Jun,25,09:20:24,combo,ftpd,31469,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
352,Jun,25,09:20:24,combo,ftpd,31462,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
353,Jun,25,09:20:24,combo,ftpd,31464,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
354,Jun,25,09:20:24,combo,ftpd,31466,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
355,Jun,25,09:20:24,combo,ftpd,31461,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
356,Jun,25,09:20:24,combo,ftpd,31460,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
357,Jun,25,19:25:30,combo,ftpd,32328,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
358,Jun,25,19:25:30,combo,ftpd,32329,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
359,Jun,25,19:25:30,combo,ftpd,32324,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
360,Jun,25,19:25:30,combo,ftpd,32326,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
361,Jun,25,19:25:30,combo,ftpd,32323,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
362,Jun,25,19:25:30,combo,ftpd,32327,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
363,Jun,25,19:25:30,combo,ftpd,32325,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
364,Jun,25,19:25:30,combo,ftpd,32331,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
365,Jun,25,19:25:30,combo,ftpd,32330,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
366,Jun,25,19:25:31,combo,ftpd,32333,connection from 211.167.68.59 () at Sat Jun 25 19:25:31 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
367,Jun,25,19:25:31,combo,ftpd,32332,connection from 211.167.68.59 () at Sat Jun 25 19:25:31 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
368,Jun,25,19:25:31,combo,ftpd,32334,connection from 211.167.68.59 () at Sat Jun 25 19:25:31 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
369,Jun,25,19:25:34,combo,ftpd,32335,connection from 211.167.68.59 () at Sat Jun 25 19:25:34 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
370,Jun,26,04:04:17,combo,su(pam_unix),945,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
371,Jun,26,04:04:17,combo,su(pam_unix),945,session closed for user cyrus,E101,session closed for user <*>
372,Jun,26,04:04:19,combo,cups,,cupsd shutdown succeeded,E37,cupsd shutdown succeeded
373,Jun,26,04:04:24,combo,cups,,cupsd startup succeeded,E38,cupsd startup succeeded
374,Jun,26,04:04:31,combo,syslogd 1.4.1,,restart.,E90,restart.
375,Jun,26,04:04:31,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
376,Jun,26,04:10:02,combo,su(pam_unix),1546,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
377,Jun,26,04:10:04,combo,su(pam_unix),1546,session closed for user news,E101,session closed for user <*>
378,Jun,27,04:02:47,combo,su(pam_unix),7031,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
379,Jun,27,04:02:48,combo,su(pam_unix),7031,session closed for user cyrus,E101,session closed for user <*>
380,Jun,27,04:02:49,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
381,Jun,27,04:08:56,combo,su(pam_unix),8269,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
382,Jun,27,04:08:57,combo,su(pam_unix),8269,session closed for user news,E101,session closed for user <*>
383,Jun,27,08:05:37,combo,sshd(pam_unix),8660,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=troi.bluesky-technologies.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
384,Jun,27,08:05:39,combo,sshd(pam_unix),8664,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=troi.bluesky-technologies.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
385,Jun,27,08:05:39,combo,sshd(pam_unix),8663,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=troi.bluesky-technologies.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
386,Jun,27,08:05:39,combo,sshd(pam_unix),8662,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=troi.bluesky-technologies.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
387,Jun,27,08:05:39,combo,sshd(pam_unix),8661,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=troi.bluesky-technologies.com user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
388,Jun,28,04:03:15,combo,su(pam_unix),10735,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
389,Jun,28,04:03:16,combo,su(pam_unix),10735,session closed for user cyrus,E101,session closed for user <*>
390,Jun,28,04:03:17,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
391,Jun,28,04:09:00,combo,su(pam_unix),11106,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
392,Jun,28,04:09:01,combo,su(pam_unix),11106,session closed for user news,E101,session closed for user <*>
393,Jun,28,08:10:24,combo,sshd(pam_unix),11513,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
394,Jun,28,08:10:24,combo,sshd(pam_unix),11517,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
395,Jun,28,08:10:24,combo,sshd(pam_unix),11521,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
396,Jun,28,08:10:24,combo,sshd(pam_unix),11510,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
397,Jun,28,08:10:25,combo,sshd(pam_unix),11519,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
398,Jun,28,08:10:26,combo,sshd(pam_unix),11514,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
399,Jun,28,08:10:28,combo,sshd(pam_unix),11512,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
400,Jun,28,08:10:29,combo,sshd(pam_unix),11509,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
401,Jun,28,08:10:30,combo,sshd(pam_unix),11515,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
402,Jun,28,20:58:46,combo,sshd(pam_unix),12665,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
403,Jun,28,20:58:46,combo,sshd(pam_unix),12666,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
404,Jun,28,20:58:47,combo,sshd(pam_unix),12669,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
405,Jun,28,20:58:50,combo,sshd(pam_unix),12671,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
406,Jun,28,20:58:52,combo,sshd(pam_unix),12673,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
407,Jun,28,20:58:53,combo,sshd(pam_unix),12675,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
408,Jun,28,20:58:53,combo,sshd(pam_unix),12677,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
409,Jun,28,20:58:55,combo,sshd(pam_unix),12679,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
410,Jun,28,20:58:55,combo,sshd(pam_unix),12681,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
411,Jun,28,20:58:55,combo,sshd(pam_unix),12680,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
412,Jun,28,21:42:46,combo,sshd(pam_unix),12756,check pass; user unknown,E27,check pass; user unknown
413,Jun,28,21:42:46,combo,sshd(pam_unix),12756,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.115.206.155,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
414,Jun,28,21:42:46,combo,sshd(pam_unix),12753,check pass; user unknown,E27,check pass; user unknown
415,Jun,28,21:42:46,combo,sshd(pam_unix),12753,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.115.206.155,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
416,Jun,28,21:42:46,combo,sshd(pam_unix),12752,check pass; user unknown,E27,check pass; user unknown
417,Jun,28,21:42:46,combo,sshd(pam_unix),12752,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.115.206.155,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
418,Jun,28,21:42:46,combo,sshd(pam_unix),12755,check pass; user unknown,E27,check pass; user unknown
419,Jun,28,21:42:46,combo,sshd(pam_unix),12755,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.115.206.155,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
420,Jun,28,21:42:46,combo,sshd(pam_unix),12754,check pass; user unknown,E27,check pass; user unknown
421,Jun,28,21:42:46,combo,sshd(pam_unix),12754,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.115.206.155,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
422,Jun,29,03:22:22,combo,ftpd,13262,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
423,Jun,29,03:22:22,combo,ftpd,13257,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
424,Jun,29,03:22:22,combo,ftpd,13261,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
425,Jun,29,03:22:22,combo,ftpd,13250,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
426,Jun,29,03:22:22,combo,ftpd,13252,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
427,Jun,29,03:22:22,combo,ftpd,13260,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
428,Jun,29,03:22:22,combo,ftpd,13259,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
429,Jun,29,03:22:22,combo,ftpd,13256,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
430,Jun,29,03:22:22,combo,ftpd,13258,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
431,Jun,29,03:22:22,combo,ftpd,13255,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
432,Jun,29,03:22:22,combo,ftpd,13254,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
433,Jun,29,03:22:22,combo,ftpd,13264,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
434,Jun,29,03:22:22,combo,ftpd,13251,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
435,Jun,29,03:22:22,combo,ftpd,13263,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
436,Jun,29,03:22:22,combo,ftpd,13245,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
437,Jun,29,03:22:22,combo,ftpd,13246,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
438,Jun,29,03:22:22,combo,ftpd,13244,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
439,Jun,29,03:22:22,combo,ftpd,13243,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
440,Jun,29,03:22:22,combo,ftpd,13249,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
441,Jun,29,03:22:22,combo,ftpd,13253,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
442,Jun,29,03:22:22,combo,ftpd,13247,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
443,Jun,29,03:22:22,combo,ftpd,13248,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
444,Jun,29,03:22:23,combo,ftpd,13265,connection from 61.74.96.178 () at Wed Jun 29 03:22:23 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
445,Jun,29,04:03:10,combo,su(pam_unix),13665,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
446,Jun,29,04:03:11,combo,su(pam_unix),13665,session closed for user cyrus,E101,session closed for user <*>
447,Jun,29,04:03:12,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
448,Jun,29,04:09:29,combo,su(pam_unix),14891,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
449,Jun,29,04:09:30,combo,su(pam_unix),14891,session closed for user news,E101,session closed for user <*>
450,Jun,29,10:08:19,combo,sshd(pam_unix),15481,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
451,Jun,29,10:08:19,combo,sshd(pam_unix),15477,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
452,Jun,29,10:08:19,combo,sshd(pam_unix),15479,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
453,Jun,29,10:08:19,combo,sshd(pam_unix),15478,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
454,Jun,29,10:08:19,combo,sshd(pam_unix),15480,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
455,Jun,29,10:08:19,combo,sshd(pam_unix),15476,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
456,Jun,29,10:08:19,combo,sshd(pam_unix),15488,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
457,Jun,29,10:08:20,combo,sshd(pam_unix),15490,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
458,Jun,29,10:08:20,combo,sshd(pam_unix),15491,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
459,Jun,29,10:08:20,combo,sshd(pam_unix),15492,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
460,Jun,29,10:48:01,combo,ftpd,15547,connection from 208.62.55.75 () at Wed Jun 29 10:48:01 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
461,Jun,29,10:48:01,combo,ftpd,15543,connection from 208.62.55.75 () at Wed Jun 29 10:48:01 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
462,Jun,29,10:48:01,combo,ftpd,15546,connection from 208.62.55.75 () at Wed Jun 29 10:48:01 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
463,Jun,29,10:48:01,combo,ftpd,15542,connection from 208.62.55.75 () at Wed Jun 29 10:48:01 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
464,Jun,29,10:48:01,combo,ftpd,15544,connection from 208.62.55.75 () at Wed Jun 29 10:48:01 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
465,Jun,29,10:48:01,combo,ftpd,15545,connection from 208.62.55.75 () at Wed Jun 29 10:48:01 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
466,Jun,29,10:48:05,combo,ftpd,15548,connection from 208.62.55.75 () at Wed Jun 29 10:48:05 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
467,Jun,29,10:48:06,combo,ftpd,15549,connection from 208.62.55.75 () at Wed Jun 29 10:48:06 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
468,Jun,29,10:48:06,combo,ftpd,15550,connection from 208.62.55.75 () at Wed Jun 29 10:48:06 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
469,Jun,29,10:48:06,combo,ftpd,15551,connection from 208.62.55.75 () at Wed Jun 29 10:48:06 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
470,Jun,29,10:48:08,combo,ftpd,15552,connection from 208.62.55.75 () at Wed Jun 29 10:48:08 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
471,Jun,29,10:48:08,combo,ftpd,15553,connection from 208.62.55.75 () at Wed Jun 29 10:48:08 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
472,Jun,29,10:48:08,combo,ftpd,15554,connection from 208.62.55.75 () at Wed Jun 29 10:48:08 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
473,Jun,29,10:48:10,combo,ftpd,15555,connection from 208.62.55.75 () at Wed Jun 29 10:48:10 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
474,Jun,29,10:48:12,combo,ftpd,15556,connection from 208.62.55.75 () at Wed Jun 29 10:48:12 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
475,Jun,29,10:48:12,combo,ftpd,15557,connection from 208.62.55.75 () at Wed Jun 29 10:48:12 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
476,Jun,29,10:48:13,combo,ftpd,15558,connection from 208.62.55.75 () at Wed Jun 29 10:48:13 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
477,Jun,29,10:48:15,combo,ftpd,15559,connection from 208.62.55.75 () at Wed Jun 29 10:48:15 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
478,Jun,29,10:48:17,combo,ftpd,15560,connection from 208.62.55.75 () at Wed Jun 29 10:48:17 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
479,Jun,29,10:48:17,combo,ftpd,15561,connection from 208.62.55.75 () at Wed Jun 29 10:48:17 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
480,Jun,29,10:48:18,combo,ftpd,15562,connection from 208.62.55.75 () at Wed Jun 29 10:48:18 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
481,Jun,29,10:48:20,combo,ftpd,15563,connection from 208.62.55.75 () at Wed Jun 29 10:48:20 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
482,Jun,29,10:48:21,combo,ftpd,15564,connection from 208.62.55.75 () at Wed Jun 29 10:48:21 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
483,Jun,29,12:11:53,combo,sshd(pam_unix),15692,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
484,Jun,29,12:11:55,combo,sshd(pam_unix),15694,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
485,Jun,29,12:11:57,combo,sshd(pam_unix),15696,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
486,Jun,29,12:11:59,combo,sshd(pam_unix),15698,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
487,Jun,29,12:11:59,combo,sshd(pam_unix),15700,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
488,Jun,29,12:12:01,combo,sshd(pam_unix),15702,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
489,Jun,29,12:12:02,combo,sshd(pam_unix),15704,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
490,Jun,29,12:12:03,combo,sshd(pam_unix),15706,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
491,Jun,29,12:12:03,combo,sshd(pam_unix),15708,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
492,Jun,29,12:12:05,combo,sshd(pam_unix),15710,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
493,Jun,29,12:12:05,combo,sshd(pam_unix),15712,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
494,Jun,29,12:12:06,combo,sshd(pam_unix),15714,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
495,Jun,29,12:12:10,combo,sshd(pam_unix),15716,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
496,Jun,29,14:44:35,combo,ftpd,15917,connection from 210.223.97.117 () at Wed Jun 29 14:44:35 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
497,Jun,29,14:44:35,combo,ftpd,15922,connection from 210.223.97.117 () at Wed Jun 29 14:44:35 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
498,Jun,29,14:44:35,combo,ftpd,15918,connection from 210.223.97.117 () at Wed Jun 29 14:44:35 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
499,Jun,29,14:44:35,combo,ftpd,15919,connection from 210.223.97.117 () at Wed Jun 29 14:44:35 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
500,Jun,29,14:44:35,combo,ftpd,15923,connection from 210.223.97.117 () at Wed Jun 29 14:44:35 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
501,Jun,29,14:44:35,combo,ftpd,15920,connection from 210.223.97.117 () at Wed Jun 29 14:44:35 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
502,Jun,29,14:44:35,combo,ftpd,15921,connection from 210.223.97.117 () at Wed Jun 29 14:44:35 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
503,Jun,30,04:03:41,combo,su(pam_unix),17407,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
504,Jun,30,04:03:42,combo,su(pam_unix),17407,session closed for user cyrus,E101,session closed for user <*>
505,Jun,30,04:03:43,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
506,Jun,30,04:09:30,combo,su(pam_unix),17778,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
507,Jun,30,04:09:31,combo,su(pam_unix),17778,session closed for user news,E101,session closed for user <*>
508,Jun,30,12:48:38,combo,sshd(pam_unix),18559,check pass; user unknown,E27,check pass; user unknown
509,Jun,30,12:48:38,combo,sshd(pam_unix),18559,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
510,Jun,30,12:48:41,combo,sshd(pam_unix),18557,check pass; user unknown,E27,check pass; user unknown
511,Jun,30,12:48:41,combo,sshd(pam_unix),18557,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
512,Jun,30,12:48:41,combo,sshd(pam_unix),18550,check pass; user unknown,E27,check pass; user unknown
513,Jun,30,12:48:41,combo,sshd(pam_unix),18550,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
514,Jun,30,12:48:41,combo,sshd(pam_unix),18547,check pass; user unknown,E27,check pass; user unknown
515,Jun,30,12:48:41,combo,sshd(pam_unix),18547,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
516,Jun,30,12:48:41,combo,sshd(pam_unix),18549,check pass; user unknown,E27,check pass; user unknown
517,Jun,30,12:48:41,combo,sshd(pam_unix),18549,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
518,Jun,30,12:48:41,combo,sshd(pam_unix),18545,check pass; user unknown,E27,check pass; user unknown
519,Jun,30,12:48:41,combo,sshd(pam_unix),18545,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
520,Jun,30,12:48:41,combo,sshd(pam_unix),18548,check pass; user unknown,E27,check pass; user unknown
521,Jun,30,12:48:41,combo,sshd(pam_unix),18548,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
522,Jun,30,12:48:41,combo,sshd(pam_unix),18546,check pass; user unknown,E27,check pass; user unknown
523,Jun,30,12:48:41,combo,sshd(pam_unix),18546,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
524,Jun,30,19:03:00,combo,sshd(pam_unix),19088,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
525,Jun,30,19:03:00,combo,sshd(pam_unix),19094,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
526,Jun,30,19:03:00,combo,sshd(pam_unix),19087,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
527,Jun,30,19:03:01,combo,sshd(pam_unix),19093,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
528,Jun,30,19:03:01,combo,sshd(pam_unix),19085,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
529,Jun,30,19:03:03,combo,sshd(pam_unix),19091,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
530,Jun,30,19:03:04,combo,sshd(pam_unix),19099,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
531,Jun,30,19:03:04,combo,sshd(pam_unix),19101,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
532,Jun,30,19:03:05,combo,sshd(pam_unix),19103,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
533,Jun,30,19:03:07,combo,sshd(pam_unix),19097,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
534,Jun,30,20:16:17,combo,sshd(pam_unix),19202,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
535,Jun,30,20:16:17,combo,sshd(pam_unix),19203,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
536,Jun,30,20:16:26,combo,sshd(pam_unix),19209,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
537,Jun,30,20:16:26,combo,sshd(pam_unix),19208,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
538,Jun,30,20:16:30,combo,sshd(pam_unix),19222,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
539,Jun,30,20:53:04,combo,klogind,19272,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,E13,Authentication failed from <*> (<*>): Permission denied in replay cache code
540,Jun,30,20:53:04,combo,klogind,19272,Kerberos authentication failed,E61,Kerberos authentication failed
541,Jun,30,20:53:04,combo,klogind,19287,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,E13,Authentication failed from <*> (<*>): Permission denied in replay cache code
542,Jun,30,20:53:04,combo,klogind,19287,Kerberos authentication failed,E61,Kerberos authentication failed
543,Jun,30,20:53:04,combo,klogind,19286,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,E13,Authentication failed from <*> (<*>): Permission denied in replay cache code
544,Jun,30,20:53:04,combo,klogind,19286,Kerberos authentication failed,E61,Kerberos authentication failed
545,Jun,30,20:53:04,combo,klogind,19271,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,E13,Authentication failed from <*> (<*>): Permission denied in replay cache code
546,Jun,30,20:53:04,combo,klogind,19271,Kerberos authentication failed,E61,Kerberos authentication failed
547,Jun,30,20:53:04,combo,klogind,19270,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,E13,Authentication failed from <*> (<*>): Permission denied in replay cache code
548,Jun,30,20:53:04,combo,klogind,19270,Kerberos authentication failed,E61,Kerberos authentication failed
549,Jun,30,20:53:04,combo,klogind,19269,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,E13,Authentication failed from <*> (<*>): Permission denied in replay cache code
550,Jun,30,20:53:04,combo,klogind,19269,Kerberos authentication failed,E61,Kerberos authentication failed
551,Jun,30,20:53:04,combo,klogind,19268,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,E13,Authentication failed from <*> (<*>): Permission denied in replay cache code
552,Jun,30,20:53:04,combo,klogind,19288,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,E13,Authentication failed from <*> (<*>): Permission denied in replay cache code
553,Jun,30,20:53:04,combo,klogind,19274,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,E14,Authentication failed from <*> (<*>): Software caused connection abort
554,Jun,30,20:53:04,combo,klogind,19268,Kerberos authentication failed,E61,Kerberos authentication failed
555,Jun,30,20:53:04,combo,klogind,19288,Kerberos authentication failed,E61,Kerberos authentication failed
556,Jun,30,20:53:04,combo,klogind,19274,Kerberos authentication failed,E61,Kerberos authentication failed
557,Jun,30,20:53:06,combo,klogind,19266,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,E14,Authentication failed from <*> (<*>): Software caused connection abort
558,Jun,30,20:53:06,combo,klogind,19266,Kerberos authentication failed,E61,Kerberos authentication failed
559,Jun,30,20:53:06,combo,klogind,19267,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,E14,Authentication failed from <*> (<*>): Software caused connection abort
560,Jun,30,20:53:06,combo,klogind,19267,Kerberos authentication failed,E61,Kerberos authentication failed
561,Jun,30,20:53:06,combo,klogind,19278,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,E14,Authentication failed from <*> (<*>): Software caused connection abort
562,Jun,30,20:53:06,combo,klogind,19278,Kerberos authentication failed,E61,Kerberos authentication failed
563,Jun,30,20:53:06,combo,klogind,19273,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,E14,Authentication failed from <*> (<*>): Software caused connection abort
564,Jun,30,20:53:06,combo,klogind,19273,Kerberos authentication failed,E61,Kerberos authentication failed
565,Jun,30,20:53:06,combo,klogind,19276,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,E14,Authentication failed from <*> (<*>): Software caused connection abort
566,Jun,30,20:53:06,combo,klogind,19276,Kerberos authentication failed,E61,Kerberos authentication failed
567,Jun,30,20:53:06,combo,klogind,19275,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,E14,Authentication failed from <*> (<*>): Software caused connection abort
568,Jun,30,20:53:06,combo,klogind,19275,Kerberos authentication failed,E61,Kerberos authentication failed
569,Jun,30,20:53:06,combo,klogind,19277,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,E14,Authentication failed from <*> (<*>): Software caused connection abort
570,Jun,30,20:53:06,combo,klogind,19277,Kerberos authentication failed,E61,Kerberos authentication failed
571,Jun,30,20:53:06,combo,klogind,19279,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,E14,Authentication failed from <*> (<*>): Software caused connection abort
572,Jun,30,20:53:06,combo,klogind,19279,Kerberos authentication failed,E61,Kerberos authentication failed
573,Jun,30,20:53:06,combo,klogind,19280,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,E14,Authentication failed from <*> (<*>): Software caused connection abort
574,Jun,30,20:53:06,combo,klogind,19281,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,E14,Authentication failed from <*> (<*>): Software caused connection abort
575,Jun,30,20:53:06,combo,klogind,19282,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,E14,Authentication failed from <*> (<*>): Software caused connection abort
576,Jun,30,20:53:06,combo,klogind,19280,Kerberos authentication failed,E61,Kerberos authentication failed
577,Jun,30,20:53:06,combo,klogind,19283,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,E14,Authentication failed from <*> (<*>): Software caused connection abort
578,Jun,30,20:53:06,combo,klogind,19281,Kerberos authentication failed,E61,Kerberos authentication failed
579,Jun,30,20:53:06,combo,klogind,19285,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,E14,Authentication failed from <*> (<*>): Software caused connection abort
580,Jun,30,20:53:06,combo,klogind,19284,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,E14,Authentication failed from <*> (<*>): Software caused connection abort
581,Jun,30,20:53:06,combo,klogind,19282,Kerberos authentication failed,E61,Kerberos authentication failed
582,Jun,30,20:53:06,combo,klogind,19283,Kerberos authentication failed,E61,Kerberos authentication failed
583,Jun,30,20:53:06,combo,klogind,19285,Kerberos authentication failed,E61,Kerberos authentication failed
584,Jun,30,20:53:06,combo,klogind,19284,Kerberos authentication failed,E61,Kerberos authentication failed
585,Jun,30,22:16:32,combo,sshd(pam_unix),19432,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
586,Jun,30,22:16:32,combo,sshd(pam_unix),19431,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
587,Jun,30,22:16:32,combo,sshd(pam_unix),19433,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
588,Jun,30,22:16:32,combo,sshd(pam_unix),19434,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
589,Jun,30,22:16:32,combo,sshd(pam_unix),19435,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
590,Jun,30,22:16:32,combo,sshd(pam_unix),19436,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
591,Jun,30,22:16:32,combo,sshd(pam_unix),19438,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
592,Jun,30,22:16:32,combo,sshd(pam_unix),19437,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
593,Jun,30,22:16:32,combo,sshd(pam_unix),19432,session closed for user test,E101,session closed for user <*>
594,Jun,30,22:16:32,combo,sshd(pam_unix),19431,session closed for user test,E101,session closed for user <*>
595,Jun,30,22:16:32,combo,sshd(pam_unix),19439,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
596,Jun,30,22:16:32,combo,sshd(pam_unix),19440,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
597,Jun,30,22:16:32,combo,sshd(pam_unix),19434,session closed for user test,E101,session closed for user <*>
598,Jun,30,22:16:32,combo,sshd(pam_unix),19435,session closed for user test,E101,session closed for user <*>
599,Jun,30,22:16:33,combo,sshd(pam_unix),19433,session closed for user test,E101,session closed for user <*>
600,Jun,30,22:16:33,combo,sshd(pam_unix),19436,session closed for user test,E101,session closed for user <*>
601,Jun,30,22:16:33,combo,sshd(pam_unix),19437,session closed for user test,E101,session closed for user <*>
602,Jun,30,22:16:33,combo,sshd(pam_unix),19438,session closed for user test,E101,session closed for user <*>
603,Jun,30,22:16:33,combo,sshd(pam_unix),19439,session closed for user test,E101,session closed for user <*>
604,Jun,30,22:16:33,combo,sshd(pam_unix),19440,session closed for user test,E101,session closed for user <*>
605,Jul,1,00:21:28,combo,sshd(pam_unix),19630,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
606,Jul,1,00:21:28,combo,sshd(pam_unix),19628,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
607,Jul,1,00:21:30,combo,sshd(pam_unix),19640,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
608,Jul,1,00:21:30,combo,sshd(pam_unix),19642,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
609,Jul,1,00:21:30,combo,sshd(pam_unix),19632,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
610,Jul,1,00:21:31,combo,sshd(pam_unix),19643,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
611,Jul,1,00:21:31,combo,sshd(pam_unix),19631,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
612,Jul,1,00:21:32,combo,sshd(pam_unix),19636,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
613,Jul,1,00:21:32,combo,sshd(pam_unix),19645,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
614,Jul,1,00:21:35,combo,sshd(pam_unix),19637,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
615,Jul,1,04:05:17,combo,su(pam_unix),20298,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
616,Jul,1,04:05:18,combo,su(pam_unix),20298,session closed for user cyrus,E101,session closed for user <*>
617,Jul,1,04:05:19,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
618,Jul,1,04:11:35,combo,su(pam_unix),21530,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
619,Jul,1,04:11:36,combo,su(pam_unix),21530,session closed for user news,E101,session closed for user <*>
620,Jul,1,05:02:26,combo,sshd(pam_unix),21689,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
621,Jul,1,05:02:26,combo,sshd(pam_unix),21689,session closed for user test,E101,session closed for user <*>
622,Jul,1,05:02:26,combo,sshd(pam_unix),21691,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
623,Jul,1,05:02:26,combo,sshd(pam_unix),21691,session closed for user test,E101,session closed for user <*>
624,Jul,1,05:02:26,combo,sshd(pam_unix),21692,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
625,Jul,1,05:02:26,combo,sshd(pam_unix),21692,session closed for user test,E101,session closed for user <*>
626,Jul,1,05:02:27,combo,sshd(pam_unix),21693,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
627,Jul,1,05:02:27,combo,sshd(pam_unix),21693,session closed for user test,E101,session closed for user <*>
628,Jul,1,07:57:30,combo,ftpd,21952,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
629,Jul,1,07:57:30,combo,ftpd,21951,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
630,Jul,1,07:57:30,combo,ftpd,21957,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
631,Jul,1,07:57:30,combo,ftpd,21953,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
632,Jul,1,07:57:30,combo,ftpd,21954,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
633,Jul,1,07:57:30,combo,ftpd,21955,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
634,Jul,1,07:57:30,combo,ftpd,21950,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
635,Jul,1,07:57:30,combo,ftpd,21956,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
636,Jul,1,07:57:30,combo,ftpd,21958,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
637,Jul,1,07:57:30,combo,ftpd,21945,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
638,Jul,1,07:57:30,combo,ftpd,21959,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
639,Jul,1,07:57:30,combo,ftpd,21940,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
640,Jul,1,07:57:30,combo,ftpd,21941,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
641,Jul,1,07:57:30,combo,ftpd,21946,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
642,Jul,1,07:57:30,combo,ftpd,21937,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
643,Jul,1,07:57:30,combo,ftpd,21943,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
644,Jul,1,07:57:30,combo,ftpd,21944,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
645,Jul,1,07:57:30,combo,ftpd,21948,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
646,Jul,1,07:57:30,combo,ftpd,21947,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
647,Jul,1,07:57:30,combo,ftpd,21942,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
648,Jul,1,07:57:30,combo,ftpd,21938,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
649,Jul,1,07:57:30,combo,ftpd,21949,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
650,Jul,1,07:57:30,combo,ftpd,21939,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
651,Jul,1,09:14:43,combo,sshd(pam_unix),22099,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
652,Jul,1,09:14:43,combo,sshd(pam_unix),22104,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
653,Jul,1,09:14:43,combo,sshd(pam_unix),22104,session closed for user test,E101,session closed for user <*>
654,Jul,1,09:14:43,combo,sshd(pam_unix),22106,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
655,Jul,1,09:14:44,combo,sshd(pam_unix),22099,session closed for user test,E101,session closed for user <*>
656,Jul,1,09:14:44,combo,sshd(pam_unix),22112,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
657,Jul,1,09:14:44,combo,sshd(pam_unix),22106,session closed for user test,E101,session closed for user <*>
658,Jul,1,09:14:44,combo,sshd(pam_unix),22112,session closed for user test,E101,session closed for user <*>
659,Jul,1,10:56:41,combo,sshd(pam_unix),22272,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
660,Jul,1,10:56:41,combo,sshd(pam_unix),22269,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
661,Jul,1,10:56:41,combo,sshd(pam_unix),22277,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
662,Jul,1,10:56:42,combo,sshd(pam_unix),22271,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
663,Jul,1,10:56:42,combo,sshd(pam_unix),22273,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
664,Jul,1,10:56:42,combo,sshd(pam_unix),22270,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
665,Jul,1,10:56:43,combo,sshd(pam_unix),22268,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
666,Jul,1,10:56:43,combo,sshd(pam_unix),22274,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
667,Jul,1,10:56:44,combo,sshd(pam_unix),22276,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
668,Jul,1,10:56:44,combo,sshd(pam_unix),22275,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
669,Jul,2,01:41:32,combo,sshd(pam_unix),23533,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
670,Jul,2,01:41:32,combo,sshd(pam_unix),23534,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
671,Jul,2,01:41:32,combo,sshd(pam_unix),23535,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
672,Jul,2,01:41:32,combo,sshd(pam_unix),23536,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
673,Jul,2,01:41:32,combo,sshd(pam_unix),23533,session closed for user test,E101,session closed for user <*>
674,Jul,2,01:41:32,combo,sshd(pam_unix),23534,session closed for user test,E101,session closed for user <*>
675,Jul,2,01:41:32,combo,sshd(pam_unix),23535,session closed for user test,E101,session closed for user <*>
676,Jul,2,01:41:32,combo,sshd(pam_unix),23536,session closed for user test,E101,session closed for user <*>
677,Jul,2,01:41:33,combo,sshd(pam_unix),23544,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
678,Jul,2,01:41:33,combo,sshd(pam_unix),23544,session closed for user test,E101,session closed for user <*>
679,Jul,2,01:41:33,combo,sshd(pam_unix),23545,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
680,Jul,2,01:41:33,combo,sshd(pam_unix),23546,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
681,Jul,2,01:41:33,combo,sshd(pam_unix),23547,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
682,Jul,2,01:41:33,combo,sshd(pam_unix),23545,session closed for user test,E101,session closed for user <*>
683,Jul,2,01:41:33,combo,sshd(pam_unix),23546,session closed for user test,E101,session closed for user <*>
684,Jul,2,01:41:33,combo,sshd(pam_unix),23547,session closed for user test,E101,session closed for user <*>
685,Jul,2,04:04:02,combo,su(pam_unix),24117,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
686,Jul,2,04:04:02,combo,su(pam_unix),24117,session closed for user cyrus,E101,session closed for user <*>
687,Jul,2,04:04:03,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
688,Jul,2,04:09:53,combo,su(pam_unix),24511,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
689,Jul,2,04:09:54,combo,su(pam_unix),24511,session closed for user news,E101,session closed for user <*>
690,Jul,2,04:15:33,combo,sshd(pam_unix),24588,check pass; user unknown,E27,check pass; user unknown
691,Jul,2,04:15:33,combo,sshd(pam_unix),24588,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=zummit.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
692,Jul,2,04:15:33,combo,sshd(pam_unix),24587,check pass; user unknown,E27,check pass; user unknown
693,Jul,2,04:15:33,combo,sshd(pam_unix),24587,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=zummit.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
694,Jul,2,04:15:33,combo,sshd(pam_unix),24590,check pass; user unknown,E27,check pass; user unknown
695,Jul,2,04:15:33,combo,sshd(pam_unix),24590,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=zummit.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
696,Jul,2,04:15:43,combo,sshd(pam_unix),24573,check pass; user unknown,E27,check pass; user unknown
697,Jul,2,04:15:43,combo,sshd(pam_unix),24573,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=zummit.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
698,Jul,2,04:15:43,combo,sshd(pam_unix),24574,check pass; user unknown,E27,check pass; user unknown
699,Jul,2,04:15:43,combo,sshd(pam_unix),24574,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=zummit.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
700,Jul,2,04:15:43,combo,sshd(pam_unix),24576,check pass; user unknown,E27,check pass; user unknown
701,Jul,2,04:15:43,combo,sshd(pam_unix),24576,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=zummit.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
702,Jul,2,04:15:43,combo,sshd(pam_unix),24578,check pass; user unknown,E27,check pass; user unknown
703,Jul,2,04:15:43,combo,sshd(pam_unix),24578,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=zummit.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
704,Jul,2,04:15:43,combo,sshd(pam_unix),24579,check pass; user unknown,E27,check pass; user unknown
705,Jul,2,04:15:43,combo,sshd(pam_unix),24579,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=zummit.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
706,Jul,2,04:15:43,combo,sshd(pam_unix),24581,check pass; user unknown,E27,check pass; user unknown
707,Jul,2,04:15:43,combo,sshd(pam_unix),24581,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=zummit.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
708,Jul,2,04:15:43,combo,sshd(pam_unix),24583,check pass; user unknown,E27,check pass; user unknown
709,Jul,2,04:15:43,combo,sshd(pam_unix),24583,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=zummit.com,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
710,Jul,3,04:07:47,combo,su(pam_unix),26964,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
711,Jul,3,04:07:48,combo,su(pam_unix),26964,session closed for user cyrus,E101,session closed for user <*>
712,Jul,3,04:07:49,combo,cups,,cupsd shutdown succeeded,E37,cupsd shutdown succeeded
713,Jul,3,04:07:55,combo,cups,,cupsd startup succeeded,E38,cupsd startup succeeded
714,Jul,3,04:08:03,combo,syslogd 1.4.1,,restart.,E90,restart.
715,Jul,3,04:08:03,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
716,Jul,3,04:14:00,combo,su(pam_unix),28416,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
717,Jul,3,04:14:01,combo,su(pam_unix),28416,session closed for user news,E101,session closed for user <*>
718,Jul,3,10:05:25,combo,ftpd,32069,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
719,Jul,3,10:05:25,combo,ftpd,32067,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
720,Jul,3,10:05:25,combo,ftpd,32070,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
721,Jul,3,10:05:25,combo,ftpd,32053,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
722,Jul,3,10:05:25,combo,ftpd,32066,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
723,Jul,3,10:05:25,combo,ftpd,32068,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
724,Jul,3,10:05:25,combo,ftpd,32065,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
725,Jul,3,10:05:25,combo,ftpd,32062,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
726,Jul,3,10:05:25,combo,ftpd,32063,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
727,Jul,3,10:05:25,combo,ftpd,32059,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
728,Jul,3,10:05:25,combo,ftpd,32060,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
729,Jul,3,10:05:25,combo,ftpd,32071,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
730,Jul,3,10:05:25,combo,ftpd,32051,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
731,Jul,3,10:05:25,combo,ftpd,32057,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
732,Jul,3,10:05:25,combo,ftpd,32050,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
733,Jul,3,10:05:25,combo,ftpd,32056,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
734,Jul,3,10:05:25,combo,ftpd,32058,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
735,Jul,3,10:05:25,combo,ftpd,32052,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
736,Jul,3,10:05:25,combo,ftpd,32061,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
737,Jul,3,10:05:25,combo,ftpd,32055,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
738,Jul,3,10:05:25,combo,ftpd,32064,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
739,Jul,3,10:05:25,combo,ftpd,32054,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
740,Jul,3,10:05:25,combo,ftpd,32049,connection from 203.101.45.59 (dsl-Chn-static-059.45.101.203.touchtelindia.net) at Sun Jul 3 10:05:25 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
741,Jul,3,23:16:09,combo,ftpd,768,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
742,Jul,3,23:16:09,combo,ftpd,772,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
743,Jul,3,23:16:09,combo,ftpd,769,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
744,Jul,3,23:16:09,combo,ftpd,767,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
745,Jul,3,23:16:09,combo,ftpd,765,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
746,Jul,3,23:16:09,combo,ftpd,766,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
747,Jul,3,23:16:09,combo,ftpd,770,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
748,Jul,3,23:16:09,combo,ftpd,764,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
749,Jul,3,23:16:09,combo,ftpd,757,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
750,Jul,3,23:16:09,combo,ftpd,763,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
751,Jul,3,23:16:09,combo,ftpd,758,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
752,Jul,3,23:16:09,combo,ftpd,761,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
753,Jul,3,23:16:09,combo,ftpd,762,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
754,Jul,3,23:16:09,combo,ftpd,759,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
755,Jul,3,23:16:09,combo,ftpd,756,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
756,Jul,3,23:16:09,combo,ftpd,773,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
757,Jul,3,23:16:09,combo,ftpd,760,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
758,Jul,3,23:16:09,combo,ftpd,774,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
759,Jul,3,23:16:09,combo,ftpd,775,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
760,Jul,3,23:16:09,combo,ftpd,771,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
761,Jul,3,23:16:09,combo,ftpd,776,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
762,Jul,3,23:16:09,combo,ftpd,777,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
763,Jul,3,23:16:09,combo,ftpd,778,connection from 62.99.164.82 (62.99.164.82.sh.interxion.inode.at) at Sun Jul 3 23:16:09 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
764,Jul,4,04:03:06,combo,su(pam_unix),1583,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
765,Jul,4,04:03:07,combo,su(pam_unix),1583,session closed for user cyrus,E101,session closed for user <*>
766,Jul,4,04:03:08,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
767,Jul,4,04:08:48,combo,su(pam_unix),1965,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
768,Jul,4,04:08:49,combo,su(pam_unix),1965,session closed for user news,E101,session closed for user <*>
769,Jul,4,09:33:09,combo,sshd(pam_unix),2543,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.76.59.29 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
770,Jul,4,09:33:10,combo,sshd(pam_unix),2544,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.76.59.29 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
771,Jul,4,09:33:14,combo,sshd(pam_unix),2547,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.76.59.29 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
772,Jul,4,12:52:44,combo,ftpd,2839,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
773,Jul,4,12:52:44,combo,ftpd,2838,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
774,Jul,4,12:52:44,combo,ftpd,2841,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
775,Jul,4,12:52:44,combo,ftpd,2840,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
776,Jul,4,12:52:44,combo,ftpd,2831,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
777,Jul,4,12:52:44,combo,ftpd,2829,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
778,Jul,4,12:52:44,combo,ftpd,2835,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
779,Jul,4,12:52:44,combo,ftpd,2828,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
780,Jul,4,12:52:44,combo,ftpd,2832,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
781,Jul,4,12:52:44,combo,ftpd,2830,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
782,Jul,4,12:52:44,combo,ftpd,2837,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
783,Jul,4,12:52:44,combo,ftpd,2833,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
784,Jul,4,12:52:44,combo,ftpd,2834,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
785,Jul,4,12:52:44,combo,ftpd,2836,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
786,Jul,4,12:52:44,combo,ftpd,2824,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
787,Jul,4,12:52:44,combo,ftpd,2822,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
788,Jul,4,12:52:44,combo,ftpd,2821,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
789,Jul,4,12:52:44,combo,ftpd,2827,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
790,Jul,4,12:52:44,combo,ftpd,2823,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
791,Jul,4,12:52:44,combo,ftpd,2825,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
792,Jul,4,12:52:44,combo,ftpd,2842,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
793,Jul,4,12:52:44,combo,ftpd,2826,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
794,Jul,4,12:52:44,combo,ftpd,2843,connection from 63.197.98.106 (adsl-63-197-98-106.dsl.mtry01.pacbell.net) at Mon Jul 4 12:52:44 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
795,Jul,4,19:15:48,combo,sshd(pam_unix),3378,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.117.241.87 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
796,Jul,4,19:15:48,combo,sshd(pam_unix),3380,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.117.241.87 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
797,Jul,4,19:15:49,combo,sshd(pam_unix),3382,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.117.241.87 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
798,Jul,4,19:15:51,combo,sshd(pam_unix),3384,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.117.241.87 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
799,Jul,4,19:15:51,combo,sshd(pam_unix),3386,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.117.241.87 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
800,Jul,4,19:15:52,combo,sshd(pam_unix),3388,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.117.241.87 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
801,Jul,4,19:15:54,combo,sshd(pam_unix),3390,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.117.241.87 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
802,Jul,4,19:15:54,combo,sshd(pam_unix),3391,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.117.241.87 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
803,Jul,4,19:15:57,combo,sshd(pam_unix),3394,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.117.241.87 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
804,Jul,4,19:15:59,combo,sshd(pam_unix),3396,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.117.241.87 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
805,Jul,4,19:16:00,combo,sshd(pam_unix),3399,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.117.241.87 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
806,Jul,4,19:16:00,combo,sshd(pam_unix),3398,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.117.241.87 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
807,Jul,4,19:16:01,combo,sshd(pam_unix),3402,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.117.241.87 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
808,Jul,5,04:03:16,combo,su(pam_unix),4474,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
809,Jul,5,04:03:17,combo,su(pam_unix),4474,session closed for user cyrus,E101,session closed for user <*>
810,Jul,5,04:03:18,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
811,Jul,5,04:09:29,combo,su(pam_unix),5699,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
812,Jul,5,04:09:30,combo,su(pam_unix),5699,session closed for user news,E101,session closed for user <*>
813,Jul,5,13:36:28,combo,sshd(pam_unix),6552,check pass; user unknown,E27,check pass; user unknown
814,Jul,5,13:36:28,combo,sshd(pam_unix),6552,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.229.150.228,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
815,Jul,5,13:36:28,combo,sshd(pam_unix),6554,check pass; user unknown,E27,check pass; user unknown
816,Jul,5,13:36:28,combo,sshd(pam_unix),6554,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.229.150.228,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
817,Jul,5,13:36:33,combo,sshd(pam_unix),6556,check pass; user unknown,E27,check pass; user unknown
818,Jul,5,13:36:33,combo,sshd(pam_unix),6556,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.229.150.228,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
819,Jul,5,13:36:36,combo,sshd(pam_unix),6558,check pass; user unknown,E27,check pass; user unknown
820,Jul,5,13:36:36,combo,sshd(pam_unix),6558,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.229.150.228,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
821,Jul,5,13:36:37,combo,sshd(pam_unix),6560,check pass; user unknown,E27,check pass; user unknown
822,Jul,5,13:36:37,combo,sshd(pam_unix),6560,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.229.150.228,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
823,Jul,5,13:52:21,combo,ftpd,6590,connection from 211.72.2.106 () at Tue Jul 5 13:52:21 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
824,Jul,5,13:52:21,combo,ftpd,6582,connection from 211.72.2.106 () at Tue Jul 5 13:52:21 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
825,Jul,5,13:52:21,combo,ftpd,6580,connection from 211.72.2.106 () at Tue Jul 5 13:52:21 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
826,Jul,5,13:52:21,combo,ftpd,6589,connection from 211.72.2.106 () at Tue Jul 5 13:52:21 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
827,Jul,5,13:52:21,combo,ftpd,6586,connection from 211.72.2.106 () at Tue Jul 5 13:52:21 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
828,Jul,5,13:52:21,combo,ftpd,6591,connection from 211.72.2.106 () at Tue Jul 5 13:52:21 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
829,Jul,5,13:52:21,combo,ftpd,6587,connection from 211.72.2.106 () at Tue Jul 5 13:52:21 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
830,Jul,5,13:52:21,combo,ftpd,6583,connection from 211.72.2.106 () at Tue Jul 5 13:52:21 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
831,Jul,5,13:52:21,combo,ftpd,6588,connection from 211.72.2.106 () at Tue Jul 5 13:52:21 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
832,Jul,5,13:52:21,combo,ftpd,6581,connection from 211.72.2.106 () at Tue Jul 5 13:52:21 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
833,Jul,5,13:52:21,combo,ftpd,6585,connection from 211.72.2.106 () at Tue Jul 5 13:52:21 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
834,Jul,5,13:52:21,combo,ftpd,6592,connection from 211.72.2.106 () at Tue Jul 5 13:52:21 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
835,Jul,5,13:52:21,combo,ftpd,6584,connection from 211.72.2.106 () at Tue Jul 5 13:52:21 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
836,Jul,5,13:52:23,combo,ftpd,6593,connection from 211.72.2.106 () at Tue Jul 5 13:52:23 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
837,Jul,5,13:52:23,combo,ftpd,6595,connection from 211.72.2.106 () at Tue Jul 5 13:52:23 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
838,Jul,5,13:52:23,combo,ftpd,6594,connection from 211.72.2.106 () at Tue Jul 5 13:52:23 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
839,Jul,5,13:52:23,combo,ftpd,6596,connection from 211.72.2.106 () at Tue Jul 5 13:52:23 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
840,Jul,5,13:52:23,combo,ftpd,6597,connection from 211.72.2.106 () at Tue Jul 5 13:52:23 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
841,Jul,5,13:52:23,combo,ftpd,6598,connection from 211.72.2.106 () at Tue Jul 5 13:52:23 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
842,Jul,5,13:52:23,combo,ftpd,6600,connection from 211.72.2.106 () at Tue Jul 5 13:52:23 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
843,Jul,5,13:52:23,combo,ftpd,6601,connection from 211.72.2.106 () at Tue Jul 5 13:52:23 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
844,Jul,5,13:52:23,combo,ftpd,6602,connection from 211.72.2.106 () at Tue Jul 5 13:52:23 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
845,Jul,5,13:52:23,combo,ftpd,6599,connection from 211.72.2.106 () at Tue Jul 5 13:52:23 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
846,Jul,6,02:22:31,combo,sshd(pam_unix),7694,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.16.122.48 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
847,Jul,6,02:22:32,combo,sshd(pam_unix),7702,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.16.122.48 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
848,Jul,6,02:22:32,combo,sshd(pam_unix),7697,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.16.122.48 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
849,Jul,6,02:22:32,combo,sshd(pam_unix),7696,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.16.122.48 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
850,Jul,6,02:22:33,combo,sshd(pam_unix),7704,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.16.122.48 user=root,E18,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=root
851,Jul,6,04:03:08,combo,su(pam_unix),8195,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
852,Jul,6,04:03:09,combo,su(pam_unix),8195,session closed for user cyrus,E101,session closed for user <*>
853,Jul,6,04:03:10,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
854,Jul,6,04:08:43,combo,su(pam_unix),8565,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
855,Jul,6,04:08:44,combo,su(pam_unix),8565,session closed for user news,E101,session closed for user <*>
856,Jul,6,18:00:56,combo,ftpd,9772,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
857,Jul,6,18:00:56,combo,ftpd,9773,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
858,Jul,6,18:00:56,combo,ftpd,9777,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
859,Jul,6,18:00:56,combo,ftpd,9774,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
860,Jul,6,18:00:56,combo,ftpd,9775,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
861,Jul,6,18:00:56,combo,ftpd,9769,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
862,Jul,6,18:00:56,combo,ftpd,9776,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
863,Jul,6,18:00:56,combo,ftpd,9771,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
864,Jul,6,18:00:56,combo,ftpd,9770,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
865,Jul,6,18:00:56,combo,ftpd,9765,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
866,Jul,6,18:00:56,combo,ftpd,9764,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
867,Jul,6,18:00:56,combo,ftpd,9757,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
868,Jul,6,18:00:56,combo,ftpd,9766,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
869,Jul,6,18:00:56,combo,ftpd,9758,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
870,Jul,6,18:00:56,combo,ftpd,9759,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
871,Jul,6,18:00:56,combo,ftpd,9760,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
872,Jul,6,18:00:56,combo,ftpd,9761,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
873,Jul,6,18:00:56,combo,ftpd,9762,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
874,Jul,6,18:00:56,combo,ftpd,9767,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
875,Jul,6,18:00:56,combo,ftpd,9763,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
876,Jul,6,18:00:56,combo,ftpd,9768,connection from 211.72.151.162 () at Wed Jul 6 18:00:56 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
877,Jul,6,18:00:57,combo,ftpd,9778,connection from 211.72.151.162 () at Wed Jul 6 18:00:57 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
878,Jul,6,18:00:57,combo,ftpd,9779,connection from 211.72.151.162 () at Wed Jul 6 18:00:57 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
879,Jul,7,04:04:31,combo,su(pam_unix),10961,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
880,Jul,7,04:04:32,combo,su(pam_unix),10961,session closed for user cyrus,E101,session closed for user <*>
881,Jul,7,04:04:33,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
882,Jul,7,04:10:44,combo,su(pam_unix),12193,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
883,Jul,7,04:10:45,combo,su(pam_unix),12193,session closed for user news,E101,session closed for user <*>
884,Jul,7,07:18:12,combo,sshd(pam_unix),12518,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
885,Jul,7,07:18:12,combo,sshd(pam_unix),12519,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
886,Jul,7,07:18:12,combo,sshd(pam_unix),12518,session closed for user test,E101,session closed for user <*>
887,Jul,7,07:18:12,combo,sshd(pam_unix),12520,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
888,Jul,7,07:18:12,combo,sshd(pam_unix),12520,session closed for user test,E101,session closed for user <*>
889,Jul,7,07:18:12,combo,sshd(pam_unix),12519,session closed for user test,E101,session closed for user <*>
890,Jul,7,07:18:13,combo,sshd(pam_unix),12524,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
891,Jul,7,07:18:13,combo,sshd(pam_unix),12525,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
892,Jul,7,07:18:13,combo,sshd(pam_unix),12524,session closed for user test,E101,session closed for user <*>
893,Jul,7,07:18:13,combo,sshd(pam_unix),12527,session opened for user test by (uid=509),E102,session opened for user <*> by (uid=<*>)
894,Jul,7,07:18:14,combo,sshd(pam_unix),12525,session closed for user test,E101,session closed for user <*>
895,Jul,7,07:18:14,combo,sshd(pam_unix),12527,session closed for user test,E101,session closed for user <*>
896,Jul,7,08:06:12,combo,gpm,2094,*** info [mice.c(1766)]:,E1,*** info [mice.c(<*>)]:
897,Jul,7,08:06:12,combo,gpm,2094,imps2: Auto-detected intellimouse PS/2,E51,imps2: Auto-detected intellimouse PS/<*>
898,Jul,7,08:06:15,combo,login(pam_unix),2421,session opened for user root by LOGIN(uid=0),E103,session opened for user <*> by LOGIN(uid=<*>)
899,Jul,7,08:06:15,combo,-- root,2421,ROOT LOGIN ON tty2,E91,ROOT LOGIN ON tty2
900,Jul,7,08:09:10,combo,login(pam_unix),2421,session closed for user root,E101,session closed for user <*>
901,Jul,7,08:09:11,combo,udev,12754,removing device node '/udev/vcsa2',E89,removing device node '/udev/<*>'
902,Jul,7,08:09:11,combo,udev,12753,removing device node '/udev/vcs2',E89,removing device node '/udev/<*>'
903,Jul,7,08:09:11,combo,udev,12777,creating device node '/udev/vcs2',E36,creating device node '/udev/<*>'
904,Jul,7,08:09:11,combo,udev,12778,creating device node '/udev/vcsa2',E36,creating device node '/udev/<*>'
905,Jul,7,08:09:11,combo,udev,12786,removing device node '/udev/vcs2',E89,removing device node '/udev/<*>'
906,Jul,7,08:09:11,combo,udev,12790,removing device node '/udev/vcsa2',E89,removing device node '/udev/<*>'
907,Jul,7,08:09:11,combo,udev,12795,creating device node '/udev/vcs2',E36,creating device node '/udev/<*>'
908,Jul,7,08:09:11,combo,udev,12798,creating device node '/udev/vcsa2',E36,creating device node '/udev/<*>'
909,Jul,7,14:18:55,combo,sshd(pam_unix),13317,check pass; user unknown,E27,check pass; user unknown
910,Jul,7,14:18:55,combo,sshd(pam_unix),13317,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c9063558.virtua.com.br,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
911,Jul,7,14:18:57,combo,sshd(pam_unix),13321,check pass; user unknown,E27,check pass; user unknown
912,Jul,7,14:18:57,combo,sshd(pam_unix),13321,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c9063558.virtua.com.br,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
913,Jul,7,14:18:58,combo,sshd(pam_unix),13318,check pass; user unknown,E27,check pass; user unknown
914,Jul,7,14:18:58,combo,sshd(pam_unix),13318,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c9063558.virtua.com.br,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
915,Jul,7,14:18:59,combo,sshd(pam_unix),13323,check pass; user unknown,E27,check pass; user unknown
916,Jul,7,14:18:59,combo,sshd(pam_unix),13323,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c9063558.virtua.com.br,E16,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*>
917,Jul,7,16:33:52,combo,ftpd,13521,connection from 202.82.200.188 () at Thu Jul 7 16:33:52 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
918,Jul,7,16:33:52,combo,ftpd,13513,connection from 202.82.200.188 () at Thu Jul 7 16:33:52 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
919,Jul,7,16:33:52,combo,ftpd,13511,connection from 202.82.200.188 () at Thu Jul 7 16:33:52 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
920,Jul,7,16:33:52,combo,ftpd,13512,connection from 202.82.200.188 () at Thu Jul 7 16:33:52 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
921,Jul,7,16:33:52,combo,ftpd,13516,connection from 202.82.200.188 () at Thu Jul 7 16:33:52 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
922,Jul,7,16:33:52,combo,ftpd,13515,connection from 202.82.200.188 () at Thu Jul 7 16:33:52 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
923,Jul,7,16:33:52,combo,ftpd,13518,connection from 202.82.200.188 () at Thu Jul 7 16:33:52 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
924,Jul,7,16:33:52,combo,ftpd,13522,connection from 202.82.200.188 () at Thu Jul 7 16:33:52 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
925,Jul,7,16:33:52,combo,ftpd,13517,connection from 202.82.200.188 () at Thu Jul 7 16:33:52 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
926,Jul,7,16:33:52,combo,ftpd,13520,connection from 202.82.200.188 () at Thu Jul 7 16:33:52 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
927,Jul,7,16:33:52,combo,ftpd,13519,connection from 202.82.200.188 () at Thu Jul 7 16:33:52 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
928,Jul,7,16:33:52,combo,ftpd,13514,connection from 202.82.200.188 () at Thu Jul 7 16:33:52 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
929,Jul,7,23:09:45,combo,ftpd,14105,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
930,Jul,7,23:09:45,combo,ftpd,14106,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
931,Jul,7,23:09:45,combo,ftpd,14103,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
932,Jul,7,23:09:45,combo,ftpd,14107,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
933,Jul,7,23:09:45,combo,ftpd,14104,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
934,Jul,7,23:09:45,combo,ftpd,14108,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
935,Jul,7,23:09:45,combo,ftpd,14109,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
936,Jul,7,23:09:45,combo,ftpd,14110,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
937,Jul,7,23:09:45,combo,ftpd,14111,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
938,Jul,7,23:09:45,combo,ftpd,14112,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
939,Jul,7,23:09:45,combo,ftpd,14113,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
940,Jul,7,23:09:45,combo,ftpd,14114,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
941,Jul,7,23:09:45,combo,ftpd,14115,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
942,Jul,7,23:09:45,combo,ftpd,14116,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
943,Jul,7,23:09:45,combo,ftpd,14118,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
944,Jul,7,23:09:45,combo,ftpd,14119,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
945,Jul,7,23:09:45,combo,ftpd,14117,connection from 221.4.102.93 () at Thu Jul 7 23:09:45 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
946,Jul,7,23:09:47,combo,ftpd,14120,connection from 221.4.102.93 () at Thu Jul 7 23:09:47 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
947,Jul,7,23:09:50,combo,ftpd,14121,connection from 221.4.102.93 () at Thu Jul 7 23:09:50 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
948,Jul,8,04:04:19,combo,su(pam_unix),14943,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
949,Jul,8,04:04:19,combo,su(pam_unix),14943,session closed for user cyrus,E101,session closed for user <*>
950,Jul,8,04:04:20,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
951,Jul,8,04:12:07,combo,su(pam_unix),19593,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
952,Jul,8,04:12:08,combo,su(pam_unix),19593,session closed for user news,E101,session closed for user <*>
953,Jul,8,20:14:55,combo,sshd(pam_unix),20963,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=212.0.132.20 user=test,E19,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=test
954,Jul,8,20:14:56,combo,sshd(pam_unix),20969,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=212.0.132.20 user=test,E19,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=test
955,Jul,8,20:14:56,combo,sshd(pam_unix),20968,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=212.0.132.20 user=test,E19,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=test
956,Jul,8,20:14:56,combo,sshd(pam_unix),20964,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=212.0.132.20 user=test,E19,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=<*> user=test
957,Jul,9,04:04:23,combo,su(pam_unix),21991,session opened for user cyrus by (uid=0),E102,session opened for user <*> by (uid=<*>)
958,Jul,9,04:04:24,combo,su(pam_unix),21991,session closed for user cyrus,E101,session closed for user <*>
959,Jul,9,04:04:25,combo,logrotate,,ALERT exited abnormally with [1],E8,ALERT exited abnormally with [1]
960,Jul,9,04:10:11,combo,su(pam_unix),22368,session opened for user news by (uid=0),E102,session opened for user <*> by (uid=<*>)
961,Jul,9,04:10:12,combo,su(pam_unix),22368,session closed for user news,E101,session closed for user <*>
962,Jul,9,11:35:59,combo,ftpd,23028,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
963,Jul,9,11:35:59,combo,ftpd,23027,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
964,Jul,9,11:35:59,combo,ftpd,23026,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
965,Jul,9,11:35:59,combo,ftpd,23032,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
966,Jul,9,11:35:59,combo,ftpd,23030,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
967,Jul,9,11:35:59,combo,ftpd,23031,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
968,Jul,9,11:35:59,combo,ftpd,23035,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
969,Jul,9,11:35:59,combo,ftpd,23038,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
970,Jul,9,11:35:59,combo,ftpd,23037,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
971,Jul,9,11:35:59,combo,ftpd,23029,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
972,Jul,9,11:35:59,combo,ftpd,23036,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
973,Jul,9,11:35:59,combo,ftpd,23046,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
974,Jul,9,11:35:59,combo,ftpd,23048,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
975,Jul,9,11:35:59,combo,ftpd,23045,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
976,Jul,9,11:35:59,combo,ftpd,23043,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
977,Jul,9,11:35:59,combo,ftpd,23040,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
978,Jul,9,11:35:59,combo,ftpd,23044,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
979,Jul,9,11:35:59,combo,ftpd,23039,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
980,Jul,9,11:35:59,combo,ftpd,23041,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
981,Jul,9,11:35:59,combo,ftpd,23047,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
982,Jul,9,11:35:59,combo,ftpd,23033,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
983,Jul,9,11:35:59,combo,ftpd,23042,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
984,Jul,9,11:35:59,combo,ftpd,23034,connection from 211.57.88.250 () at Sat Jul 9 11:35:59 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
985,Jul,9,12:16:49,combo,ftpd,23140,connection from 211.167.68.59 () at Sat Jul 9 12:16:49 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
986,Jul,9,12:16:49,combo,ftpd,23143,connection from 211.167.68.59 () at Sat Jul 9 12:16:49 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
987,Jul,9,12:16:49,combo,ftpd,23142,connection from 211.167.68.59 () at Sat Jul 9 12:16:49 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
988,Jul,9,12:16:49,combo,ftpd,23141,connection from 211.167.68.59 () at Sat Jul 9 12:16:49 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
989,Jul,9,12:16:49,combo,ftpd,23144,connection from 211.167.68.59 () at Sat Jul 9 12:16:49 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
990,Jul,9,12:16:49,combo,ftpd,23145,connection from 211.167.68.59 () at Sat Jul 9 12:16:49 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
991,Jul,9,12:16:49,combo,ftpd,23146,connection from 211.167.68.59 () at Sat Jul 9 12:16:49 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
992,Jul,9,12:16:49,combo,ftpd,23148,connection from 211.167.68.59 () at Sat Jul 9 12:16:49 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
993,Jul,9,12:16:49,combo,ftpd,23149,connection from 211.167.68.59 () at Sat Jul 9 12:16:49 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
994,Jul,9,12:16:49,combo,ftpd,23150,connection from 211.167.68.59 () at Sat Jul 9 12:16:49 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
995,Jul,9,12:16:49,combo,ftpd,23147,connection from 211.167.68.59 () at Sat Jul 9 12:16:49 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
996,Jul,9,12:16:51,combo,ftpd,23151,connection from 211.167.68.59 () at Sat Jul 9 12:16:51 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
997,Jul,9,12:16:51,combo,ftpd,23152,connection from 211.167.68.59 () at Sat Jul 9 12:16:51 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
998,Jul,9,12:16:51,combo,ftpd,23153,connection from 211.167.68.59 () at Sat Jul 9 12:16:51 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>
999,Jul,9,12:16:51,combo,ftpd,23155,connection from 211.167.68.59 () at Sat Jul 9 12:16:51 2005,E29,connection from <*> (<*>) at <*>:<*>:<*>