File size: 160,284 Bytes
1be4d5c | 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 1001 1002 1003 1004 1005 1006 | LineNumber,RelativeTime,Timestamp,Month,Day,Time,Hostname,Process,PID,Message,RawDate,Label
594,120373,13793553,Jun,10,15:32:33,combo,named,2306.0,using 1 CPU,Jun 10 15:32:33,Normal
593,120373,13793553,Jun,10,15:32:33,combo,named,2306.0,starting BIND 9.2.3 -u named -t /var/named/chroot,Jun 10 15:32:33,Normal
603,120374,13793554,Jun,10,15:32:34,combo,named,2306.0,"listening on IPv4 interface eth0:5, 63.126.79.73#53",Jun 10 15:32:34,Normal
602,120374,13793554,Jun,10,15:32:34,combo,named,2306.0,"listening on IPv4 interface eth0:4, 63.126.79.72#53",Jun 10 15:32:34,Normal
600,120374,13793554,Jun,10,15:32:34,combo,named,2306.0,"listening on IPv4 interface eth0:2, 63.126.79.70#53",Jun 10 15:32:34,Normal
601,120374,13793554,Jun,10,15:32:34,combo,named,2306.0,"listening on IPv4 interface eth0:3, 63.126.79.71#53",Jun 10 15:32:34,Normal
596,120374,13793554,Jun,10,15:32:34,combo,named,2306.0,loading configuration from '/etc/named.conf',Jun 10 15:32:34,Normal
606,120374,13793554,Jun,10,15:32:34,combo,named,2306.0,"listening on IPv4 interface eth0:8, 63.126.79.81#53",Jun 10 15:32:34,Normal
607,120374,13793554,Jun,10,15:32:34,combo,named,2306.0,"listening on IPv4 interface eth0:9, 63.126.79.82#53",Jun 10 15:32:34,Normal
598,120374,13793554,Jun,10,15:32:34,combo,named,2306.0,"listening on IPv4 interface eth0, 63.126.79.67#53",Jun 10 15:32:34,Normal
599,120374,13793554,Jun,10,15:32:34,combo,named,2306.0,"listening on IPv4 interface eth0:1, 63.126.79.69#53",Jun 10 15:32:34,Normal
604,120374,13793554,Jun,10,15:32:34,combo,named,2306.0,"listening on IPv4 interface eth0:6, 63.126.79.75#53",Jun 10 15:32:34,Normal
605,120374,13793554,Jun,10,15:32:34,combo,named,2306.0,"listening on IPv4 interface eth0:7, 63.126.79.80#53",Jun 10 15:32:34,Normal
597,120374,13793554,Jun,10,15:32:34,combo,named,2306.0,"listening on IPv4 interface lo, 127.0.0.1#53",Jun 10 15:32:34,Normal
608,120375,13793555,Jun,10,15:32:35,combo,named,2306.0,"listening on IPv4 interface eth0:10, 63.126.79.83#53",Jun 10 15:32:35,Normal
609,120375,13793555,Jun,10,15:32:35,combo,named,2306.0,"listening on IPv4 interface eth0:11, 63.126.79.84#53",Jun 10 15:32:35,Normal
611,120376,13793556,Jun,10,15:32:36,combo,named,2306.0,"listening on IPv4 interface eth0:12, 63.126.79.85#53",Jun 10 15:32:36,Normal
612,120377,13793557,Jun,10,15:32:37,combo,named,2306.0,"listening on IPv4 interface eth0:13, 63.126.79.87#53",Jun 10 15:32:37,Normal
616,120378,13793558,Jun,10,15:32:38,combo,named,2306.0,"listening on IPv4 interface eth0:14, 63.126.79.89#53",Jun 10 15:32:38,Normal
620,120380,13793560,Jun,10,15:32:40,combo,named,2306.0,"listening on IPv4 interface eth0:16, 63.126.79.95#53",Jun 10 15:32:40,Normal
618,120380,13793560,Jun,10,15:32:40,combo,named,2306.0,"listening on IPv4 interface eth0:15, 63.126.79.90#53",Jun 10 15:32:40,Normal
622,120381,13793561,Jun,10,15:32:41,combo,named,2306.0,"listening on IPv4 interface eth0:17, 63.126.79.100#53",Jun 10 15:32:41,Normal
624,120382,13793562,Jun,10,15:32:42,combo,named,2306.0,"listening on IPv4 interface eth0:18, 63.126.79.105#53",Jun 10 15:32:42,Normal
626,120383,13793563,Jun,10,15:32:43,combo,named,2306.0,"listening on IPv4 interface eth0:20, 63.126.79.115#53",Jun 10 15:32:43,Normal
625,120383,13793563,Jun,10,15:32:43,combo,named,2306.0,"listening on IPv4 interface eth0:19, 63.126.79.110#53",Jun 10 15:32:43,Normal
627,120384,13793564,Jun,10,15:32:44,combo,named,2306.0,"listening on IPv4 interface eth0:21, 63.126.79.120#53",Jun 10 15:32:44,Normal
628,120385,13793565,Jun,10,15:32:45,combo,named,2306.0,"listening on IPv4 interface eth0:22, 63.126.79.125#53",Jun 10 15:32:45,Normal
629,120385,13793565,Jun,10,15:32:45,combo,named,2306.0,couldn't add command channel 127.0.0.1#953: not found,Jun 10 15:32:45,Anomaly
630,120385,13793565,Jun,10,15:32:45,combo,named,2306.0,couldn't add command channel ::1#953: not found,Jun 10 15:32:45,Anomaly
632,120386,13793566,Jun,10,15:32:46,combo,named,2306.0,running,Jun 10 15:32:46,Normal
676,126614,13799794,Jun,10,17:16:34,combo,sshd(pam_unix),3353.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=itsc.iasi.astral.ro,Jun 10 17:16:34,Anomaly
675,126614,13799794,Jun,10,17:16:34,combo,sshd(pam_unix),3353.0,check pass; user unknown,Jun 10 17:16:34,Normal
679,163322,13836502,Jun,11,03:28:22,combo,ftpd,4304.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:22 2005,Jun 11 03:28:22,Normal
683,163322,13836502,Jun,11,03:28:22,combo,ftpd,4302.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:22 2005,Jun 11 03:28:22,Normal
681,163322,13836502,Jun,11,03:28:22,combo,ftpd,4303.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:22 2005,Jun 11 03:28:22,Normal
680,163322,13836502,Jun,11,03:28:22,combo,ftpd,4308.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:22 2005,Jun 11 03:28:22,Normal
677,163322,13836502,Jun,11,03:28:22,combo,ftpd,4301.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:22 2005,Jun 11 03:28:22,Normal
678,163322,13836502,Jun,11,03:28:22,combo,ftpd,4305.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:22 2005,Jun 11 03:28:22,Normal
684,163322,13836502,Jun,11,03:28:22,combo,ftpd,4307.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:22 2005,Jun 11 03:28:22,Normal
682,163322,13836502,Jun,11,03:28:22,combo,ftpd,4306.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:22 2005,Jun 11 03:28:22,Normal
696,163323,13836503,Jun,11,03:28:23,combo,ftpd,4320.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:23 2005,Jun 11 03:28:23,Normal
695,163323,13836503,Jun,11,03:28:23,combo,ftpd,4316.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:23 2005,Jun 11 03:28:23,Normal
692,163323,13836503,Jun,11,03:28:23,combo,ftpd,4317.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:23 2005,Jun 11 03:28:23,Normal
685,163323,13836503,Jun,11,03:28:23,combo,ftpd,4309.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:23 2005,Jun 11 03:28:23,Normal
686,163323,13836503,Jun,11,03:28:23,combo,ftpd,4310.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:23 2005,Jun 11 03:28:23,Normal
694,163323,13836503,Jun,11,03:28:23,combo,ftpd,4319.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:23 2005,Jun 11 03:28:23,Normal
693,163323,13836503,Jun,11,03:28:23,combo,ftpd,4318.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:23 2005,Jun 11 03:28:23,Normal
691,163323,13836503,Jun,11,03:28:23,combo,ftpd,4315.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:23 2005,Jun 11 03:28:23,Normal
690,163323,13836503,Jun,11,03:28:23,combo,ftpd,4314.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:23 2005,Jun 11 03:28:23,Normal
687,163323,13836503,Jun,11,03:28:23,combo,ftpd,4311.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:23 2005,Jun 11 03:28:23,Normal
689,163323,13836503,Jun,11,03:28:23,combo,ftpd,4313.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:23 2005,Jun 11 03:28:23,Normal
688,163323,13836503,Jun,11,03:28:23,combo,ftpd,4312.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:23 2005,Jun 11 03:28:23,Normal
698,163324,13836504,Jun,11,03:28:24,combo,ftpd,4322.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:24 2005,Jun 11 03:28:24,Normal
697,163324,13836504,Jun,11,03:28:24,combo,ftpd,4321.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:24 2005,Jun 11 03:28:24,Normal
699,163325,13836505,Jun,11,03:28:25,combo,ftpd,4323.0,connection from 209.184.7.130 () at Sat Jun 11 03:28:25 2005,Jun 11 03:28:25,Normal
701,165372,13838552,Jun,11,04:02:32,combo,xinetd,2034.0,select reported EBADF but no bad file descriptors were found,Jun 11 04:02:32,Normal
700,165372,13838552,Jun,11,04:02:32,combo,xinetd,2034.0,file descriptor of service comsat has been closed,Jun 11 04:02:32,Normal
702,165418,13838598,Jun,11,04:03:18,combo,su(pam_unix),4718.0,session opened for user cyrus by (uid=0),Jun 11 04:03:18,Normal
703,165419,13838599,Jun,11,04:03:19,combo,su(pam_unix),4718.0,session closed for user cyrus,Jun 11 04:03:19,Normal
704,165420,13838600,Jun,11,04:03:20,combo,logrotate,,ALERT exited abnormally with [1],Jun 11 04:03:20,Normal
705,165812,13838992,Jun,11,04:09:52,combo,su(pam_unix),5961.0,session opened for user news by (uid=0),Jun 11 04:09:52,Normal
706,165813,13838993,Jun,11,04:09:53,combo,su(pam_unix),5961.0,session closed for user news,Jun 11 04:09:53,Normal
707,185965,13859145,Jun,11,09:45:45,combo,sshd(pam_unix),6472.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:45:45,Anomaly
708,185975,13859155,Jun,11,09:45:55,combo,sshd(pam_unix),6474.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:45:55,Anomaly
709,185978,13859158,Jun,11,09:45:58,combo,sshd(pam_unix),6476.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:45:58,Anomaly
710,185981,13859161,Jun,11,09:46:01,combo,sshd(pam_unix),6478.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:01,Anomaly
711,185985,13859165,Jun,11,09:46:05,combo,sshd(pam_unix),6480.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:05,Anomaly
712,185988,13859168,Jun,11,09:46:08,combo,sshd(pam_unix),6482.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:08,Anomaly
713,185991,13859171,Jun,11,09:46:11,combo,sshd(pam_unix),6484.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:11,Anomaly
714,185995,13859175,Jun,11,09:46:15,combo,sshd(pam_unix),6486.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:15,Anomaly
715,185998,13859178,Jun,11,09:46:18,combo,sshd(pam_unix),6488.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:18,Anomaly
716,186001,13859181,Jun,11,09:46:21,combo,sshd(pam_unix),6490.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:21,Anomaly
717,186005,13859185,Jun,11,09:46:25,combo,sshd(pam_unix),6492.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:25,Anomaly
718,186008,13859188,Jun,11,09:46:28,combo,sshd(pam_unix),6494.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:28,Anomaly
719,186011,13859191,Jun,11,09:46:31,combo,sshd(pam_unix),6496.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:31,Anomaly
720,186014,13859194,Jun,11,09:46:34,combo,sshd(pam_unix),6498.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:34,Anomaly
721,186015,13859195,Jun,11,09:46:35,combo,sshd(pam_unix),6500.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:35,Anomaly
723,186018,13859198,Jun,11,09:46:38,combo,sshd(pam_unix),6504.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:38,Anomaly
722,186018,13859198,Jun,11,09:46:38,combo,sshd(pam_unix),6502.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:38,Anomaly
724,186021,13859201,Jun,11,09:46:41,combo,sshd(pam_unix),6506.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:41,Anomaly
725,186024,13859204,Jun,11,09:46:44,combo,sshd(pam_unix),6508.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:44,Anomaly
726,186025,13859205,Jun,11,09:46:45,combo,sshd(pam_unix),6510.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:45,Anomaly
727,186027,13859207,Jun,11,09:46:47,combo,sshd(pam_unix),6512.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:47,Anomaly
728,186028,13859208,Jun,11,09:46:48,combo,sshd(pam_unix),6514.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:48,Anomaly
729,186028,13859208,Jun,11,09:46:48,combo,sshd(pam_unix),6516.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=unknown.sagonet.net user=root,Jun 11 09:46:48,Anomaly
742,237685,13910865,Jun,12,00:07:45,combo,ftpd,7710.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
731,237685,13910865,Jun,12,00:07:45,combo,ftpd,7724.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
736,237685,13910865,Jun,12,00:07:45,combo,ftpd,7721.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
738,237685,13910865,Jun,12,00:07:45,combo,ftpd,7720.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
746,237685,13910865,Jun,12,00:07:45,combo,ftpd,7717.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
737,237685,13910865,Jun,12,00:07:45,combo,ftpd,7719.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
735,237685,13910865,Jun,12,00:07:45,combo,ftpd,7718.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
734,237685,13910865,Jun,12,00:07:45,combo,ftpd,7726.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
730,237685,13910865,Jun,12,00:07:45,combo,ftpd,7722.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
745,237685,13910865,Jun,12,00:07:45,combo,ftpd,7716.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
733,237685,13910865,Jun,12,00:07:45,combo,ftpd,7723.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
747,237685,13910865,Jun,12,00:07:45,combo,ftpd,7715.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
744,237685,13910865,Jun,12,00:07:45,combo,ftpd,7713.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
743,237685,13910865,Jun,12,00:07:45,combo,ftpd,7712.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
739,237685,13910865,Jun,12,00:07:45,combo,ftpd,7714.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
732,237685,13910865,Jun,12,00:07:45,combo,ftpd,7725.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
741,237685,13910865,Jun,12,00:07:45,combo,ftpd,7711.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
740,237685,13910865,Jun,12,00:07:45,combo,ftpd,7709.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:45 2005,Jun 12 00:07:45,Normal
749,237686,13910866,Jun,12,00:07:46,combo,ftpd,7729.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:46 2005,Jun 12 00:07:46,Normal
748,237686,13910866,Jun,12,00:07:46,combo,ftpd,7728.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:46 2005,Jun 12 00:07:46,Normal
752,237686,13910866,Jun,12,00:07:46,combo,ftpd,7731.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:46 2005,Jun 12 00:07:46,Normal
751,237686,13910866,Jun,12,00:07:46,combo,ftpd,7727.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:46 2005,Jun 12 00:07:46,Normal
750,237686,13910866,Jun,12,00:07:46,combo,ftpd,7730.0,connection from 222.33.90.199 () at Sun Jun 12 00:07:46 2005,Jun 12 00:07:46,Normal
753,241553,13914733,Jun,12,01:12:13,combo,sshd(pam_unix),7822.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4 user=test,Jun 12 01:12:13,Anomaly
754,241553,13914733,Jun,12,01:12:13,combo,sshd(pam_unix),7823.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4 user=test,Jun 12 01:12:13,Anomaly
755,241553,13914733,Jun,12,01:12:13,combo,sshd(pam_unix),7821.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4 user=test,Jun 12 01:12:13,Anomaly
757,241554,13914734,Jun,12,01:12:14,combo,sshd(pam_unix),7828.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4 user=test,Jun 12 01:12:14,Anomaly
756,241554,13914734,Jun,12,01:12:14,combo,sshd(pam_unix),7826.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4 user=test,Jun 12 01:12:14,Anomaly
758,241557,13914737,Jun,12,01:12:17,combo,sshd(pam_unix),7831.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4 user=test,Jun 12 01:12:17,Anomaly
759,241558,13914738,Jun,12,01:12:18,combo,sshd(pam_unix),7832.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4 user=test,Jun 12 01:12:18,Anomaly
760,241561,13914741,Jun,12,01:12:21,combo,sshd(pam_unix),7835.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4 user=test,Jun 12 01:12:21,Anomaly
762,241562,13914742,Jun,12,01:12:22,combo,sshd(pam_unix),7839.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4 user=test,Jun 12 01:12:22,Anomaly
761,241562,13914742,Jun,12,01:12:22,combo,sshd(pam_unix),7837.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4 user=test,Jun 12 01:12:22,Anomaly
763,241567,13914747,Jun,12,01:12:27,combo,sshd(pam_unix),7841.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4 user=test,Jun 12 01:12:27,Anomaly
764,241737,13914917,Jun,12,01:15:17,combo,sshd(pam_unix),7847.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4 user=test,Jun 12 01:15:17,Anomaly
765,241743,13914923,Jun,12,01:15:23,combo,sshd(pam_unix),7849.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4 user=test,Jun 12 01:15:23,Anomaly
766,246242,13919422,Jun,12,02:30:22,combo,sshd(pam_unix),7954.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.46.241.200 user=guest,Jun 12 02:30:22,Anomaly
767,251866,13925046,Jun,12,04:04:06,combo,su(pam_unix),8486.0,session opened for user cyrus by (uid=0),Jun 12 04:04:06,Normal
768,251867,13925047,Jun,12,04:04:07,combo,su(pam_unix),8486.0,session closed for user cyrus,Jun 12 04:04:07,Normal
769,251869,13925049,Jun,12,04:04:09,combo,cups,,cupsd shutdown succeeded,Jun 12 04:04:09,Normal
770,251875,13925055,Jun,12,04:04:15,combo,cups,,cupsd startup succeeded,Jun 12 04:04:15,Normal
772,251879,13925059,Jun,12,04:04:19,combo,logrotate,,ALERT exited abnormally with [1],Jun 12 04:04:19,Normal
774,252231,13925411,Jun,12,04:10:11,combo,su(pam_unix),9084.0,session closed for user news,Jun 12 04:10:11,Normal
773,252231,13925411,Jun,12,04:10:11,combo,su(pam_unix),9084.0,session opened for user news by (uid=0),Jun 12 04:10:11,Normal
775,256513,13929693,Jun,12,05:21:33,combo,sshd(pam_unix),12286.0,session opened for user test by (uid=509),Jun 12 05:21:33,Normal
776,256673,13929853,Jun,12,05:24:13,combo,sshd(pam_unix),12286.0,session closed for user test,Jun 12 05:24:13,Normal
778,288260,13961440,Jun,12,14:10:40,combo,sshd(pam_unix),13105.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.38.14.205,Jun 12 14:10:40,Anomaly
777,288260,13961440,Jun,12,14:10:40,combo,sshd(pam_unix),13105.0,check pass; user unknown,Jun 12 14:10:40,Normal
780,288260,13961440,Jun,12,14:10:40,combo,sshd(pam_unix),13107.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.38.14.205,Jun 12 14:10:40,Anomaly
779,288260,13961440,Jun,12,14:10:40,combo,sshd(pam_unix),13107.0,check pass; user unknown,Jun 12 14:10:40,Normal
782,288262,13961442,Jun,12,14:10:42,combo,sshd(pam_unix),13109.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.38.14.205,Jun 12 14:10:42,Anomaly
781,288262,13961442,Jun,12,14:10:42,combo,sshd(pam_unix),13109.0,check pass; user unknown,Jun 12 14:10:42,Normal
786,288264,13961444,Jun,12,14:10:44,combo,sshd(pam_unix),13111.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.38.14.205,Jun 12 14:10:44,Anomaly
784,288264,13961444,Jun,12,14:10:44,combo,sshd(pam_unix),13112.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.38.14.205,Jun 12 14:10:44,Anomaly
783,288264,13961444,Jun,12,14:10:44,combo,sshd(pam_unix),13112.0,check pass; user unknown,Jun 12 14:10:44,Normal
785,288264,13961444,Jun,12,14:10:44,combo,sshd(pam_unix),13111.0,check pass; user unknown,Jun 12 14:10:44,Normal
787,288266,13961446,Jun,12,14:10:46,combo,sshd(pam_unix),13115.0,check pass; user unknown,Jun 12 14:10:46,Normal
788,288266,13961446,Jun,12,14:10:46,combo,sshd(pam_unix),13115.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.38.14.205,Jun 12 14:10:46,Anomaly
790,288266,13961446,Jun,12,14:10:46,combo,sshd(pam_unix),13116.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.38.14.205,Jun 12 14:10:46,Anomaly
789,288266,13961446,Jun,12,14:10:46,combo,sshd(pam_unix),13116.0,check pass; user unknown,Jun 12 14:10:46,Normal
792,288269,13961449,Jun,12,14:10:49,combo,sshd(pam_unix),13119.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.38.14.205,Jun 12 14:10:49,Anomaly
791,288269,13961449,Jun,12,14:10:49,combo,sshd(pam_unix),13119.0,check pass; user unknown,Jun 12 14:10:49,Normal
796,288270,13961450,Jun,12,14:10:50,combo,sshd(pam_unix),13122.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.38.14.205,Jun 12 14:10:50,Anomaly
794,288270,13961450,Jun,12,14:10:50,combo,sshd(pam_unix),13121.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.38.14.205,Jun 12 14:10:50,Anomaly
793,288270,13961450,Jun,12,14:10:50,combo,sshd(pam_unix),13121.0,check pass; user unknown,Jun 12 14:10:50,Normal
795,288270,13961450,Jun,12,14:10:50,combo,sshd(pam_unix),13122.0,check pass; user unknown,Jun 12 14:10:50,Normal
800,288272,13961452,Jun,12,14:10:52,combo,sshd(pam_unix),13126.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.38.14.205,Jun 12 14:10:52,Anomaly
797,288272,13961452,Jun,12,14:10:52,combo,sshd(pam_unix),13125.0,check pass; user unknown,Jun 12 14:10:52,Normal
798,288272,13961452,Jun,12,14:10:52,combo,sshd(pam_unix),13125.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.38.14.205,Jun 12 14:10:52,Anomaly
799,288272,13961452,Jun,12,14:10:52,combo,sshd(pam_unix),13126.0,check pass; user unknown,Jun 12 14:10:52,Normal
802,288274,13961454,Jun,12,14:10:54,combo,sshd(pam_unix),13129.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.38.14.205,Jun 12 14:10:54,Anomaly
801,288274,13961454,Jun,12,14:10:54,combo,sshd(pam_unix),13129.0,check pass; user unknown,Jun 12 14:10:54,Normal
809,330907,14004087,Jun,13,02:01:27,combo,ftpd,14114.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
808,330907,14004087,Jun,13,02:01:27,combo,ftpd,14120.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
806,330907,14004087,Jun,13,02:01:27,combo,ftpd,14125.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
818,330907,14004087,Jun,13,02:01:27,combo,ftpd,14112.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
813,330907,14004087,Jun,13,02:01:27,combo,ftpd,14115.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
805,330907,14004087,Jun,13,02:01:27,combo,ftpd,14122.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
811,330907,14004087,Jun,13,02:01:27,combo,ftpd,14117.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
812,330907,14004087,Jun,13,02:01:27,combo,ftpd,14121.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
804,330907,14004087,Jun,13,02:01:27,combo,ftpd,14123.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
815,330907,14004087,Jun,13,02:01:27,combo,ftpd,14110.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
819,330907,14004087,Jun,13,02:01:27,combo,ftpd,14113.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
807,330907,14004087,Jun,13,02:01:27,combo,ftpd,14119.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
816,330907,14004087,Jun,13,02:01:27,combo,ftpd,14109.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
817,330907,14004087,Jun,13,02:01:27,combo,ftpd,14111.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
810,330907,14004087,Jun,13,02:01:27,combo,ftpd,14116.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
803,330907,14004087,Jun,13,02:01:27,combo,ftpd,14124.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
814,330907,14004087,Jun,13,02:01:27,combo,ftpd,14118.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:27 2005,Jun 13 02:01:27,Normal
823,330908,14004088,Jun,13,02:01:28,combo,ftpd,14128.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:28 2005,Jun 13 02:01:28,Normal
821,330908,14004088,Jun,13,02:01:28,combo,ftpd,14127.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:28 2005,Jun 13 02:01:28,Normal
822,330908,14004088,Jun,13,02:01:28,combo,ftpd,14129.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:28 2005,Jun 13 02:01:28,Normal
824,330908,14004088,Jun,13,02:01:28,combo,ftpd,14131.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:28 2005,Jun 13 02:01:28,Normal
825,330908,14004088,Jun,13,02:01:28,combo,ftpd,14130.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:28 2005,Jun 13 02:01:28,Normal
820,330908,14004088,Jun,13,02:01:28,combo,ftpd,14126.0,connection from 61.218.67.60 (mail.net-star.com.tw) at Mon Jun 13 02:01:28 2005,Jun 13 02:01:28,Normal
826,338207,14011387,Jun,13,04:03:07,combo,su(pam_unix),14659.0,session opened for user cyrus by (uid=0),Jun 13 04:03:07,Normal
827,338208,14011388,Jun,13,04:03:08,combo,su(pam_unix),14659.0,session closed for user cyrus,Jun 13 04:03:08,Normal
828,338209,14011389,Jun,13,04:03:09,combo,logrotate,,ALERT exited abnormally with [1],Jun 13 04:03:09,Normal
829,338580,14011760,Jun,13,04:09:20,combo,su(pam_unix),15888.0,session opened for user news by (uid=0),Jun 13 04:09:20,Normal
830,338582,14011762,Jun,13,04:09:22,combo,su(pam_unix),15888.0,session closed for user news,Jun 13 04:09:22,Normal
831,343251,14016431,Jun,13,05:27:11,combo,gdm(pam_unix),2803.0,bad username [;;],Jun 13 05:27:11,Normal
832,343252,14016432,Jun,13,05:27:12,combo,gdm-binary,2803.0,Couldn't authenticate user,Jun 13 05:27:12,Normal
833,343270,14016450,Jun,13,05:27:30,combo,gdm(pam_unix),2803.0,bad username [],Jun 13 05:27:30,Normal
834,343271,14016451,Jun,13,05:27:31,combo,gdm-binary,2803.0,Couldn't authenticate user,Jun 13 05:27:31,Normal
848,356604,14029784,Jun,13,09:09:44,combo,ftpd,16373.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
847,356604,14029784,Jun,13,09:09:44,combo,ftpd,16374.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
850,356604,14029784,Jun,13,09:09:44,combo,ftpd,16371.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
849,356604,14029784,Jun,13,09:09:44,combo,ftpd,16372.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
851,356604,14029784,Jun,13,09:09:44,combo,ftpd,16370.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
842,356604,14029784,Jun,13,09:09:44,combo,ftpd,16390.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
855,356604,14029784,Jun,13,09:09:44,combo,ftpd,16380.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
854,356604,14029784,Jun,13,09:09:44,combo,ftpd,16378.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
856,356604,14029784,Jun,13,09:09:44,combo,ftpd,16392.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
857,356604,14029784,Jun,13,09:09:44,combo,ftpd,16381.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
853,356604,14029784,Jun,13,09:09:44,combo,ftpd,16385.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
852,356604,14029784,Jun,13,09:09:44,combo,ftpd,16384.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
846,356604,14029784,Jun,13,09:09:44,combo,ftpd,16376.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
838,356604,14029784,Jun,13,09:09:44,combo,ftpd,16377.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
840,356604,14029784,Jun,13,09:09:44,combo,ftpd,16388.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
841,356604,14029784,Jun,13,09:09:44,combo,ftpd,16391.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
837,356604,14029784,Jun,13,09:09:44,combo,ftpd,16383.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
836,356604,14029784,Jun,13,09:09:44,combo,ftpd,16382.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
843,356604,14029784,Jun,13,09:09:44,combo,ftpd,16379.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
844,356604,14029784,Jun,13,09:09:44,combo,ftpd,16375.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
845,356604,14029784,Jun,13,09:09:44,combo,ftpd,16386.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
835,356604,14029784,Jun,13,09:09:44,combo,ftpd,16389.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
839,356604,14029784,Jun,13,09:09:44,combo,ftpd,16387.0,connection from 212.5.120.141 (host-141.STSK.macomnet.net) at Mon Jun 13 09:09:44 2005,Jun 13 09:09:44,Normal
860,360709,14033889,Jun,13,10:18:09,combo,sshd(pam_unix),16511.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.153.202.254 user=root,Jun 13 10:18:09,Anomaly
861,360709,14033889,Jun,13,10:18:09,combo,sshd(pam_unix),16514.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.153.202.254 user=root,Jun 13 10:18:09,Anomaly
862,360709,14033889,Jun,13,10:18:09,combo,sshd(pam_unix),16518.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.153.202.254 user=root,Jun 13 10:18:09,Anomaly
866,360709,14033889,Jun,13,10:18:09,combo,sshd(pam_unix),16513.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.153.202.254 user=root,Jun 13 10:18:09,Anomaly
859,360709,14033889,Jun,13,10:18:09,combo,sshd(pam_unix),16510.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.153.202.254 user=root,Jun 13 10:18:09,Anomaly
858,360709,14033889,Jun,13,10:18:09,combo,sshd(pam_unix),16509.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.153.202.254 user=root,Jun 13 10:18:09,Anomaly
867,360709,14033889,Jun,13,10:18:09,combo,sshd(pam_unix),16517.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.153.202.254 user=root,Jun 13 10:18:09,Anomaly
865,360709,14033889,Jun,13,10:18:09,combo,sshd(pam_unix),16516.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.153.202.254 user=root,Jun 13 10:18:09,Anomaly
864,360709,14033889,Jun,13,10:18:09,combo,sshd(pam_unix),16519.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.153.202.254 user=root,Jun 13 10:18:09,Anomaly
863,360709,14033889,Jun,13,10:18:09,combo,sshd(pam_unix),16515.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.153.202.254 user=root,Jun 13 10:18:09,Anomaly
868,366524,14039704,Jun,13,11:55:04,combo,rpc.statd,1636.0,gethostbyname error for ^X^X^Z^Z%8x%8x%8x%8x%8x%8x%8x%8x%8x%62716x%hn%51859x%hn\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220,Jun 13 11:55:04,Anomaly
869,366525,14039705,Jun,13,11:55:05,combo,rpc.statd,1636.0,gethostbyname error for ^X^X^Z^Z%8x%8x%8x%8x%8x%8x%8x%8x%8x%62716x%hn%51859x%hn\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220,Jun 13 11:55:05,Anomaly
870,366528,14039708,Jun,13,11:55:08,combo,rpc.statd,1636.0,gethostbyname error for ^X^X^Z^Z%8x%8x%8x%8x%8x%8x%8x%8x%8x%62716x%hn%51859x%hn\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220,Jun 13 11:55:08,Anomaly
871,366529,14039709,Jun,13,11:55:09,combo,rpc.statd,1636.0,gethostbyname error for ^X^X^Z^Z%8x%8x%8x%8x%8x%8x%8x%8x%8x%62716x%hn%51859x%hn\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220,Jun 13 11:55:09,Anomaly
872,366529,14039709,Jun,13,11:55:09,combo,rpc.statd,1636.0,gethostbyname error for ^X^X^Z^Z%8x%8x%8x%8x%8x%8x%8x%8x%8x%62716x%hn%51859x%hn\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220,Jun 13 11:55:09,Anomaly
873,366530,14039710,Jun,13,11:55:10,combo,rpc.statd,1636.0,gethostbyname error for ^X^X^Z^Z%8x%8x%8x%8x%8x%8x%8x%8x%8x%62716x%hn%51859x%hn\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220,Jun 13 11:55:10,Anomaly
876,369792,14042972,Jun,13,12:49:32,combo,ftpd,16734.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
877,369792,14042972,Jun,13,12:49:32,combo,ftpd,16745.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
878,369792,14042972,Jun,13,12:49:32,combo,ftpd,16738.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
883,369792,14042972,Jun,13,12:49:32,combo,ftpd,16731.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
880,369792,14042972,Jun,13,12:49:32,combo,ftpd,16744.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
891,369792,14042972,Jun,13,12:49:32,combo,ftpd,16747.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
892,369792,14042972,Jun,13,12:49:32,combo,ftpd,16748.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
894,369792,14042972,Jun,13,12:49:32,combo,ftpd,16750.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
893,369792,14042972,Jun,13,12:49:32,combo,ftpd,16749.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
896,369792,14042972,Jun,13,12:49:32,combo,ftpd,16752.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
895,369792,14042972,Jun,13,12:49:32,combo,ftpd,16751.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
879,369792,14042972,Jun,13,12:49:32,combo,ftpd,16739.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
881,369792,14042972,Jun,13,12:49:32,combo,ftpd,16732.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
882,369792,14042972,Jun,13,12:49:32,combo,ftpd,16740.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
875,369792,14042972,Jun,13,12:49:32,combo,ftpd,16736.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
885,369792,14042972,Jun,13,12:49:32,combo,ftpd,16733.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
886,369792,14042972,Jun,13,12:49:32,combo,ftpd,16737.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
884,369792,14042972,Jun,13,12:49:32,combo,ftpd,16735.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
889,369792,14042972,Jun,13,12:49:32,combo,ftpd,16743.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
874,369792,14042972,Jun,13,12:49:32,combo,ftpd,16730.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
888,369792,14042972,Jun,13,12:49:32,combo,ftpd,16742.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
890,369792,14042972,Jun,13,12:49:32,combo,ftpd,16746.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
887,369792,14042972,Jun,13,12:49:32,combo,ftpd,16741.0,connection from 65.35.73.251 (251-73.35-65.tampabay.res.rr.com) at Mon Jun 13 12:49:32 2005,Jun 13 12:49:32,Normal
899,377836,14051016,Jun,13,15:03:36,combo,sshd(pam_unix),16949.0,check pass; user unknown,Jun 13 15:03:36,Normal
898,377836,14051016,Jun,13,15:03:36,combo,sshd(pam_unix),16950.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 13 15:03:36,Anomaly
897,377836,14051016,Jun,13,15:03:36,combo,sshd(pam_unix),16950.0,check pass; user unknown,Jun 13 15:03:36,Normal
900,377836,14051016,Jun,13,15:03:36,combo,sshd(pam_unix),16949.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 13 15:03:36,Anomaly
902,377837,14051017,Jun,13,15:03:37,combo,sshd(pam_unix),16954.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 13 15:03:37,Anomaly
901,377837,14051017,Jun,13,15:03:37,combo,sshd(pam_unix),16954.0,check pass; user unknown,Jun 13 15:03:37,Normal
903,377837,14051017,Jun,13,15:03:37,combo,sshd(pam_unix),16953.0,check pass; user unknown,Jun 13 15:03:37,Normal
904,377837,14051017,Jun,13,15:03:37,combo,sshd(pam_unix),16953.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 13 15:03:37,Anomaly
905,377838,14051018,Jun,13,15:03:38,combo,sshd(pam_unix),16959.0,check pass; user unknown,Jun 13 15:03:38,Normal
906,377838,14051018,Jun,13,15:03:38,combo,sshd(pam_unix),16959.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 13 15:03:38,Anomaly
910,377839,14051019,Jun,13,15:03:39,combo,sshd(pam_unix),16957.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 13 15:03:39,Anomaly
907,377839,14051019,Jun,13,15:03:39,combo,sshd(pam_unix),16960.0,check pass; user unknown,Jun 13 15:03:39,Normal
909,377839,14051019,Jun,13,15:03:39,combo,sshd(pam_unix),16957.0,check pass; user unknown,Jun 13 15:03:39,Normal
908,377839,14051019,Jun,13,15:03:39,combo,sshd(pam_unix),16960.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 13 15:03:39,Anomaly
911,377840,14051020,Jun,13,15:03:40,combo,sshd(pam_unix),16963.0,check pass; user unknown,Jun 13 15:03:40,Normal
912,377840,14051020,Jun,13,15:03:40,combo,sshd(pam_unix),16963.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 13 15:03:40,Anomaly
915,377841,14051021,Jun,13,15:03:41,combo,sshd(pam_unix),16966.0,check pass; user unknown,Jun 13 15:03:41,Normal
914,377841,14051021,Jun,13,15:03:41,combo,sshd(pam_unix),16965.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 13 15:03:41,Anomaly
913,377841,14051021,Jun,13,15:03:41,combo,sshd(pam_unix),16965.0,check pass; user unknown,Jun 13 15:03:41,Normal
916,377841,14051021,Jun,13,15:03:41,combo,sshd(pam_unix),16966.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 13 15:03:41,Anomaly
917,377935,14051115,Jun,13,15:05:15,combo,sshd(pam_unix),16973.0,check pass; user unknown,Jun 13 15:05:15,Normal
918,377935,14051115,Jun,13,15:05:15,combo,sshd(pam_unix),16973.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 13 15:05:15,Anomaly
919,377938,14051118,Jun,13,15:05:18,combo,sshd(pam_unix),16975.0,check pass; user unknown,Jun 13 15:05:18,Normal
920,377938,14051118,Jun,13,15:05:18,combo,sshd(pam_unix),16975.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 13 15:05:18,Anomaly
923,378250,14051430,Jun,13,15:10:30,combo,sshd(pam_unix),16990.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr user=root,Jun 13 15:10:30,Anomaly
928,378250,14051430,Jun,13,15:10:30,combo,sshd(pam_unix),16996.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr user=root,Jun 13 15:10:30,Anomaly
929,378250,14051430,Jun,13,15:10:30,combo,sshd(pam_unix),16989.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr user=root,Jun 13 15:10:30,Anomaly
930,378250,14051430,Jun,13,15:10:30,combo,sshd(pam_unix),16997.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr user=root,Jun 13 15:10:30,Anomaly
926,378250,14051430,Jun,13,15:10:30,combo,sshd(pam_unix),16995.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr user=root,Jun 13 15:10:30,Anomaly
925,378250,14051430,Jun,13,15:10:30,combo,sshd(pam_unix),16986.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr user=root,Jun 13 15:10:30,Anomaly
924,378250,14051430,Jun,13,15:10:30,combo,sshd(pam_unix),16987.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr user=root,Jun 13 15:10:30,Anomaly
927,378250,14051430,Jun,13,15:10:30,combo,sshd(pam_unix),16985.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr user=root,Jun 13 15:10:30,Anomaly
921,378250,14051430,Jun,13,15:10:30,combo,sshd(pam_unix),16984.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr user=root,Jun 13 15:10:30,Anomaly
922,378250,14051430,Jun,13,15:10:30,combo,sshd(pam_unix),16992.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr user=root,Jun 13 15:10:30,Anomaly
939,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17428.0,check pass; user unknown,Jun 13 20:13:11,Normal
931,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17422.0,check pass; user unknown,Jun 13 20:13:11,Normal
943,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17427.0,check pass; user unknown,Jun 13 20:13:11,Normal
944,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17427.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr,Jun 13 20:13:11,Anomaly
945,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17431.0,check pass; user unknown,Jun 13 20:13:11,Normal
946,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17431.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr,Jun 13 20:13:11,Anomaly
947,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17433.0,check pass; user unknown,Jun 13 20:13:11,Normal
940,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17428.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr,Jun 13 20:13:11,Anomaly
941,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17420.0,check pass; user unknown,Jun 13 20:13:11,Normal
942,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17420.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr,Jun 13 20:13:11,Anomaly
937,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17423.0,check pass; user unknown,Jun 13 20:13:11,Normal
936,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17421.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr,Jun 13 20:13:11,Anomaly
948,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17433.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr,Jun 13 20:13:11,Anomaly
950,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17429.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr,Jun 13 20:13:11,Anomaly
949,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17429.0,check pass; user unknown,Jun 13 20:13:11,Normal
932,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17422.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr,Jun 13 20:13:11,Anomaly
934,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17432.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr,Jun 13 20:13:11,Anomaly
933,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17432.0,check pass; user unknown,Jun 13 20:13:11,Normal
938,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17423.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=under-eepc58.kaist.ac.kr,Jun 13 20:13:11,Anomaly
935,396411,14069591,Jun,13,20:13:11,combo,sshd(pam_unix),17421.0,check pass; user unknown,Jun 13 20:13:11,Normal
951,420815,14093995,Jun,14,02:59:55,combo,sshd(pam_unix),18004.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202.101.42.106 user=root,Jun 14 02:59:55,Anomaly
952,420816,14093996,Jun,14,02:59:56,combo,sshd(pam_unix),18008.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202.101.42.106 user=root,Jun 14 02:59:56,Anomaly
953,420816,14093996,Jun,14,02:59:56,combo,sshd(pam_unix),18007.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202.101.42.106 user=root,Jun 14 02:59:56,Anomaly
954,420817,14093997,Jun,14,02:59:57,combo,sshd(pam_unix),18009.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202.101.42.106 user=root,Jun 14 02:59:57,Anomaly
955,420820,14094000,Jun,14,03:00:00,combo,sshd(pam_unix),18014.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202.101.42.106 user=root,Jun 14 03:00:00,Anomaly
956,420822,14094002,Jun,14,03:00:02,combo,sshd(pam_unix),18015.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202.101.42.106 user=root,Jun 14 03:00:02,Anomaly
957,420823,14094003,Jun,14,03:00:03,combo,sshd(pam_unix),18019.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202.101.42.106 user=root,Jun 14 03:00:03,Anomaly
958,420825,14094005,Jun,14,03:00:05,combo,sshd(pam_unix),18018.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202.101.42.106 user=root,Jun 14 03:00:05,Anomaly
959,420826,14094006,Jun,14,03:00:06,combo,sshd(pam_unix),18022.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202.101.42.106 user=root,Jun 14 03:00:06,Anomaly
960,420830,14094010,Jun,14,03:00:10,combo,sshd(pam_unix),18026.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202.101.42.106 user=root,Jun 14 03:00:10,Anomaly
961,420832,14094012,Jun,14,03:00:12,combo,sshd(pam_unix),18029.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202.101.42.106 user=root,Jun 14 03:00:12,Anomaly
962,420833,14094013,Jun,14,03:00:13,combo,sshd(pam_unix),18038.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202.101.42.106 user=root,Jun 14 03:00:13,Anomaly
964,420835,14094015,Jun,14,03:00:15,combo,sshd(pam_unix),18042.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202.101.42.106 user=root,Jun 14 03:00:15,Anomaly
963,420835,14094015,Jun,14,03:00:15,combo,sshd(pam_unix),18028.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202.101.42.106 user=root,Jun 14 03:00:15,Anomaly
965,424875,14098055,Jun,14,04:07:35,combo,su(pam_unix),18485.0,session opened for user cyrus by (uid=0),Jun 14 04:07:35,Normal
966,424876,14098056,Jun,14,04:07:36,combo,su(pam_unix),18485.0,session closed for user cyrus,Jun 14 04:07:36,Normal
967,424877,14098057,Jun,14,04:07:37,combo,logrotate,,ALERT exited abnormally with [1],Jun 14 04:07:37,Normal
968,425237,14098417,Jun,14,04:13:37,combo,su(pam_unix),18858.0,session opened for user news by (uid=0),Jun 14 04:13:37,Normal
969,425238,14098418,Jun,14,04:13:38,combo,su(pam_unix),18858.0,session closed for user news,Jun 14 04:13:38,Normal
971,453016,14126196,Jun,14,11:56:36,combo,sshd(pam_unix),19593.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.233.12.249 user=root,Jun 14 11:56:36,Anomaly
970,453016,14126196,Jun,14,11:56:36,combo,sshd(pam_unix),19594.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.233.12.249 user=root,Jun 14 11:56:36,Anomaly
974,453016,14126196,Jun,14,11:56:36,combo,sshd(pam_unix),19601.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.233.12.249 user=root,Jun 14 11:56:36,Anomaly
975,453016,14126196,Jun,14,11:56:36,combo,sshd(pam_unix),19603.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.233.12.249 user=root,Jun 14 11:56:36,Anomaly
972,453016,14126196,Jun,14,11:56:36,combo,sshd(pam_unix),19595.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.233.12.249 user=root,Jun 14 11:56:36,Anomaly
973,453016,14126196,Jun,14,11:56:36,combo,sshd(pam_unix),19599.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.233.12.249 user=root,Jun 14 11:56:36,Anomaly
978,453017,14126197,Jun,14,11:56:37,combo,sshd(pam_unix),19606.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.233.12.249 user=root,Jun 14 11:56:37,Anomaly
979,453017,14126197,Jun,14,11:56:37,combo,sshd(pam_unix),19608.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.233.12.249 user=root,Jun 14 11:56:37,Anomaly
976,453017,14126197,Jun,14,11:56:37,combo,sshd(pam_unix),19604.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.233.12.249 user=root,Jun 14 11:56:37,Anomaly
977,453017,14126197,Jun,14,11:56:37,combo,sshd(pam_unix),19607.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.233.12.249 user=root,Jun 14 11:56:37,Anomaly
981,464913,14138093,Jun,14,15:14:53,combo,sshd(pam_unix),19913.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 14 15:14:53,Anomaly
980,464913,14138093,Jun,14,15:14:53,combo,sshd(pam_unix),19913.0,check pass; user unknown,Jun 14 15:14:53,Normal
989,464914,14138094,Jun,14,15:14:54,combo,sshd(pam_unix),19920.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 14 15:14:54,Anomaly
988,464914,14138094,Jun,14,15:14:54,combo,sshd(pam_unix),19920.0,check pass; user unknown,Jun 14 15:14:54,Normal
984,464914,14138094,Jun,14,15:14:54,combo,sshd(pam_unix),19917.0,check pass; user unknown,Jun 14 15:14:54,Normal
987,464914,14138094,Jun,14,15:14:54,combo,sshd(pam_unix),19918.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 14 15:14:54,Anomaly
982,464914,14138094,Jun,14,15:14:54,combo,sshd(pam_unix),19916.0,check pass; user unknown,Jun 14 15:14:54,Normal
983,464914,14138094,Jun,14,15:14:54,combo,sshd(pam_unix),19916.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 14 15:14:54,Anomaly
986,464914,14138094,Jun,14,15:14:54,combo,sshd(pam_unix),19918.0,check pass; user unknown,Jun 14 15:14:54,Normal
985,464914,14138094,Jun,14,15:14:54,combo,sshd(pam_unix),19917.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 14 15:14:54,Anomaly
992,464915,14138095,Jun,14,15:14:55,combo,sshd(pam_unix),19915.0,check pass; user unknown,Jun 14 15:14:55,Normal
990,464915,14138095,Jun,14,15:14:55,combo,sshd(pam_unix),19925.0,check pass; user unknown,Jun 14 15:14:55,Normal
991,464915,14138095,Jun,14,15:14:55,combo,sshd(pam_unix),19925.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 14 15:14:55,Anomaly
993,464915,14138095,Jun,14,15:14:55,combo,sshd(pam_unix),19915.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 14 15:14:55,Anomaly
997,464916,14138096,Jun,14,15:14:56,combo,sshd(pam_unix),19929.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 14 15:14:56,Anomaly
994,464916,14138096,Jun,14,15:14:56,combo,sshd(pam_unix),19927.0,check pass; user unknown,Jun 14 15:14:56,Normal
996,464916,14138096,Jun,14,15:14:56,combo,sshd(pam_unix),19929.0,check pass; user unknown,Jun 14 15:14:56,Normal
995,464916,14138096,Jun,14,15:14:56,combo,sshd(pam_unix),19927.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 14 15:14:56,Anomaly
999,464917,14138097,Jun,14,15:14:57,combo,sshd(pam_unix),19928.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 14 15:14:57,Anomaly
998,464917,14138097,Jun,14,15:14:57,combo,sshd(pam_unix),19928.0,check pass; user unknown,Jun 14 15:14:57,Normal
1000,464981,14138161,Jun,14,15:16:01,combo,sshd(pam_unix),19939.0,check pass; user unknown,Jun 14 15:16:01,Normal
1001,464981,14138161,Jun,14,15:16:01,combo,sshd(pam_unix),19939.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 14 15:16:01,Anomaly
1003,464982,14138162,Jun,14,15:16:02,combo,sshd(pam_unix),19937.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 14 15:16:02,Anomaly
1002,464982,14138162,Jun,14,15:16:02,combo,sshd(pam_unix),19937.0,check pass; user unknown,Jun 14 15:16:02,Normal
1010,503919,14177099,Jun,15,02:04:59,combo,sshd(pam_unix),20893.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,Jun 15 02:04:59,Anomaly
1012,503919,14177099,Jun,15,02:04:59,combo,sshd(pam_unix),20897.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,Jun 15 02:04:59,Anomaly
1009,503919,14177099,Jun,15,02:04:59,combo,sshd(pam_unix),20892.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,Jun 15 02:04:59,Anomaly
1008,503919,14177099,Jun,15,02:04:59,combo,sshd(pam_unix),20886.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,Jun 15 02:04:59,Anomaly
1013,503919,14177099,Jun,15,02:04:59,combo,sshd(pam_unix),20898.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,Jun 15 02:04:59,Anomaly
1006,503919,14177099,Jun,15,02:04:59,combo,sshd(pam_unix),20883.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,Jun 15 02:04:59,Anomaly
1005,503919,14177099,Jun,15,02:04:59,combo,sshd(pam_unix),20884.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,Jun 15 02:04:59,Anomaly
1004,503919,14177099,Jun,15,02:04:59,combo,sshd(pam_unix),20882.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,Jun 15 02:04:59,Anomaly
1007,503919,14177099,Jun,15,02:04:59,combo,sshd(pam_unix),20885.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,Jun 15 02:04:59,Anomaly
1011,503919,14177099,Jun,15,02:04:59,combo,sshd(pam_unix),20896.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220-135-151-1.hinet-ip.hinet.net user=root,Jun 15 02:04:59,Anomaly
1014,511198,14184378,Jun,15,04:06:18,combo,su(pam_unix),21416.0,session opened for user cyrus by (uid=0),Jun 15 04:06:18,Normal
1015,511199,14184379,Jun,15,04:06:19,combo,su(pam_unix),21416.0,session closed for user cyrus,Jun 15 04:06:19,Normal
1016,511200,14184380,Jun,15,04:06:20,combo,logrotate,,ALERT exited abnormally with [1],Jun 15 04:06:20,Normal
1017,511582,14184762,Jun,15,04:12:42,combo,su(pam_unix),22644.0,session opened for user news by (uid=0),Jun 15 04:12:42,Normal
1018,511583,14184763,Jun,15,04:12:43,combo,su(pam_unix),22644.0,session closed for user news,Jun 15 04:12:43,Normal
1038,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23412.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 15 12:12:34,Anomaly
1034,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23396.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 15 12:12:34,Anomaly
1035,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23407.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 15 12:12:34,Anomaly
1036,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23403.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 15 12:12:34,Anomaly
1020,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23397.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 15 12:12:34,Anomaly
1037,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23412.0,check pass; user unknown,Jun 15 12:12:34,Normal
1026,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23399.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 15 12:12:34,Anomaly
1025,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23399.0,check pass; user unknown,Jun 15 12:12:34,Normal
1024,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23404.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 15 12:12:34,Anomaly
1023,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23404.0,check pass; user unknown,Jun 15 12:12:34,Normal
1022,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23395.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 15 12:12:34,Anomaly
1021,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23395.0,check pass; user unknown,Jun 15 12:12:34,Normal
1027,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23406.0,check pass; user unknown,Jun 15 12:12:34,Normal
1019,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23397.0,check pass; user unknown,Jun 15 12:12:34,Normal
1029,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23396.0,check pass; user unknown,Jun 15 12:12:34,Normal
1028,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23406.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 15 12:12:34,Anomaly
1032,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23394.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 15 12:12:34,Anomaly
1033,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23403.0,check pass; user unknown,Jun 15 12:12:34,Normal
1030,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23394.0,check pass; user unknown,Jun 15 12:12:34,Normal
1031,540374,14213554,Jun,15,12:12:34,combo,sshd(pam_unix),23407.0,check pass; user unknown,Jun 15 12:12:34,Normal
1040,540419,14213599,Jun,15,12:13:19,combo,sshd(pam_unix),23414.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 15 12:13:19,Anomaly
1039,540419,14213599,Jun,15,12:13:19,combo,sshd(pam_unix),23414.0,check pass; user unknown,Jun 15 12:13:19,Normal
1041,540420,14213600,Jun,15,12:13:20,combo,sshd(pam_unix),23416.0,check pass; user unknown,Jun 15 12:13:20,Normal
1042,540420,14213600,Jun,15,12:13:20,combo,sshd(pam_unix),23416.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.188.2.4,Jun 15 12:13:20,Anomaly
1046,550032,14223212,Jun,15,14:53:32,combo,sshd(pam_unix),23663.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,Jun 15 14:53:32,Anomaly
1048,550032,14223212,Jun,15,14:53:32,combo,sshd(pam_unix),23664.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,Jun 15 14:53:32,Anomaly
1044,550032,14223212,Jun,15,14:53:32,combo,sshd(pam_unix),23661.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,Jun 15 14:53:32,Anomaly
1045,550032,14223212,Jun,15,14:53:32,combo,sshd(pam_unix),23663.0,check pass; user unknown,Jun 15 14:53:32,Normal
1047,550032,14223212,Jun,15,14:53:32,combo,sshd(pam_unix),23664.0,check pass; user unknown,Jun 15 14:53:32,Normal
1043,550032,14223212,Jun,15,14:53:32,combo,sshd(pam_unix),23661.0,check pass; user unknown,Jun 15 14:53:32,Normal
1049,550033,14223213,Jun,15,14:53:33,combo,sshd(pam_unix),23665.0,check pass; user unknown,Jun 15 14:53:33,Normal
1050,550033,14223213,Jun,15,14:53:33,combo,sshd(pam_unix),23665.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,Jun 15 14:53:33,Anomaly
1051,550034,14223214,Jun,15,14:53:34,combo,sshd(pam_unix),23669.0,check pass; user unknown,Jun 15 14:53:34,Normal
1052,550034,14223214,Jun,15,14:53:34,combo,sshd(pam_unix),23669.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,Jun 15 14:53:34,Anomaly
1056,550035,14223215,Jun,15,14:53:35,combo,sshd(pam_unix),23673.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,Jun 15 14:53:35,Anomaly
1053,550035,14223215,Jun,15,14:53:35,combo,sshd(pam_unix),23671.0,check pass; user unknown,Jun 15 14:53:35,Normal
1054,550035,14223215,Jun,15,14:53:35,combo,sshd(pam_unix),23671.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,Jun 15 14:53:35,Anomaly
1058,550035,14223215,Jun,15,14:53:35,combo,sshd(pam_unix),23674.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,Jun 15 14:53:35,Anomaly
1055,550035,14223215,Jun,15,14:53:35,combo,sshd(pam_unix),23673.0,check pass; user unknown,Jun 15 14:53:35,Normal
1057,550035,14223215,Jun,15,14:53:35,combo,sshd(pam_unix),23674.0,check pass; user unknown,Jun 15 14:53:35,Normal
1059,550036,14223216,Jun,15,14:53:36,combo,sshd(pam_unix),23678.0,check pass; user unknown,Jun 15 14:53:36,Normal
1062,550036,14223216,Jun,15,14:53:36,combo,sshd(pam_unix),23677.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,Jun 15 14:53:36,Anomaly
1060,550036,14223216,Jun,15,14:53:36,combo,sshd(pam_unix),23678.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=061092085098.ctinets.com,Jun 15 14:53:36,Anomaly
1061,550036,14223216,Jun,15,14:53:36,combo,sshd(pam_unix),23677.0,check pass; user unknown,Jun 15 14:53:36,Normal
1071,568751,14241931,Jun,15,20:05:31,combo,sshd(pam_unix),24139.0,check pass; user unknown,Jun 15 20:05:31,Normal
1072,568751,14241931,Jun,15,20:05:31,combo,sshd(pam_unix),24139.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=d211-116-254-214.rev.krline.net,Jun 15 20:05:31,Anomaly
1063,568751,14241931,Jun,15,20:05:31,combo,sshd(pam_unix),24138.0,check pass; user unknown,Jun 15 20:05:31,Normal
1064,568751,14241931,Jun,15,20:05:31,combo,sshd(pam_unix),24138.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=d211-116-254-214.rev.krline.net,Jun 15 20:05:31,Anomaly
1065,568751,14241931,Jun,15,20:05:31,combo,sshd(pam_unix),24137.0,check pass; user unknown,Jun 15 20:05:31,Normal
1066,568751,14241931,Jun,15,20:05:31,combo,sshd(pam_unix),24137.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=d211-116-254-214.rev.krline.net,Jun 15 20:05:31,Anomaly
1068,568751,14241931,Jun,15,20:05:31,combo,sshd(pam_unix),24141.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=d211-116-254-214.rev.krline.net,Jun 15 20:05:31,Anomaly
1067,568751,14241931,Jun,15,20:05:31,combo,sshd(pam_unix),24141.0,check pass; user unknown,Jun 15 20:05:31,Normal
1069,568751,14241931,Jun,15,20:05:31,combo,sshd(pam_unix),24140.0,check pass; user unknown,Jun 15 20:05:31,Normal
1070,568751,14241931,Jun,15,20:05:31,combo,sshd(pam_unix),24140.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=d211-116-254-214.rev.krline.net,Jun 15 20:05:31,Anomaly
1073,597842,14271022,Jun,16,04:10:22,combo,su(pam_unix),25178.0,session opened for user cyrus by (uid=0),Jun 16 04:10:22,Normal
1074,597843,14271023,Jun,16,04:10:23,combo,su(pam_unix),25178.0,session closed for user cyrus,Jun 16 04:10:23,Normal
1075,597844,14271024,Jun,16,04:10:24,combo,logrotate,,ALERT exited abnormally with [1],Jun 16 04:10:24,Normal
1076,598197,14271377,Jun,16,04:16:17,combo,su(pam_unix),25548.0,session opened for user news by (uid=0),Jun 16 04:16:17,Normal
1077,598198,14271378,Jun,16,04:16:18,combo,su(pam_unix),25548.0,session closed for user news,Jun 16 04:16:18,Normal
1078,683833,14357013,Jun,17,04:03:33,combo,su(pam_unix),27953.0,session opened for user cyrus by (uid=0),Jun 17 04:03:33,Normal
1079,683834,14357014,Jun,17,04:03:34,combo,su(pam_unix),27953.0,session closed for user cyrus,Jun 17 04:03:34,Normal
1080,683836,14357016,Jun,17,04:03:36,combo,logrotate,,ALERT exited abnormally with [1],Jun 17 04:03:36,Normal
1081,684203,14357383,Jun,17,04:09:43,combo,su(pam_unix),29190.0,session opened for user news by (uid=0),Jun 17 04:09:43,Normal
1082,684205,14357385,Jun,17,04:09:45,combo,su(pam_unix),29190.0,session closed for user news,Jun 17 04:09:45,Normal
1088,694840,14368020,Jun,17,07:07:00,combo,ftpd,29509.0,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:00 2005,Jun 17 07:07:00,Normal
1083,694840,14368020,Jun,17,07:07:00,combo,ftpd,29504.0,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:00 2005,Jun 17 07:07:00,Normal
1087,694840,14368020,Jun,17,07:07:00,combo,ftpd,29506.0,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:00 2005,Jun 17 07:07:00,Normal
1086,694840,14368020,Jun,17,07:07:00,combo,ftpd,29505.0,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:00 2005,Jun 17 07:07:00,Normal
1085,694840,14368020,Jun,17,07:07:00,combo,ftpd,29507.0,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:00 2005,Jun 17 07:07:00,Normal
1084,694840,14368020,Jun,17,07:07:00,combo,ftpd,29508.0,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:00 2005,Jun 17 07:07:00,Normal
1089,694842,14368022,Jun,17,07:07:02,combo,ftpd,29510.0,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:02 2005,Jun 17 07:07:02,Normal
1090,694844,14368024,Jun,17,07:07:04,combo,ftpd,29511.0,connection from 24.54.76.216 (24-54-76-216.bflony.adelphia.net) at Fri Jun 17 07:07:04 2005,Jun 17 07:07:04,Normal
1091,740213,14413393,Jun,17,19:43:13,combo,sshd(pam_unix),30565.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.46.224.253 user=guest,Jun 17 19:43:13,Anomaly
1092,742986,14416166,Jun,17,20:29:26,combo,sshd(pam_unix),30631.0,session opened for user test by (uid=509),Jun 17 20:29:26,Normal
1093,743317,14416497,Jun,17,20:34:57,combo,sshd(pam_unix),30631.0,session closed for user test,Jun 17 20:34:57,Normal
1097,744526,14417706,Jun,17,20:55:06,combo,ftpd,30756.0,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,Jun 17 20:55:06,Normal
1098,744526,14417706,Jun,17,20:55:06,combo,ftpd,30757.0,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,Jun 17 20:55:06,Normal
1094,744526,14417706,Jun,17,20:55:06,combo,ftpd,30755.0,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,Jun 17 20:55:06,Normal
1095,744526,14417706,Jun,17,20:55:06,combo,ftpd,30754.0,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,Jun 17 20:55:06,Normal
1096,744526,14417706,Jun,17,20:55:06,combo,ftpd,30753.0,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,Jun 17 20:55:06,Normal
1099,744527,14417707,Jun,17,20:55:07,combo,ftpd,30758.0,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,Jun 17 20:55:07,Normal
1100,744527,14417707,Jun,17,20:55:07,combo,ftpd,30759.0,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,Jun 17 20:55:07,Normal
1116,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31204.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,Jun 18 01:30:59,Anomaly
1101,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31201.0,check pass; user unknown,Jun 18 01:30:59,Normal
1103,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31199.0,check pass; user unknown,Jun 18 01:30:59,Normal
1104,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31199.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,Jun 18 01:30:59,Anomaly
1109,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31205.0,check pass; user unknown,Jun 18 01:30:59,Normal
1108,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31202.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,Jun 18 01:30:59,Anomaly
1110,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31205.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,Jun 18 01:30:59,Anomaly
1112,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31200.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,Jun 18 01:30:59,Anomaly
1115,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31204.0,check pass; user unknown,Jun 18 01:30:59,Normal
1111,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31200.0,check pass; user unknown,Jun 18 01:30:59,Normal
1113,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31206.0,check pass; user unknown,Jun 18 01:30:59,Normal
1120,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31207.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,Jun 18 01:30:59,Anomaly
1114,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31206.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,Jun 18 01:30:59,Anomaly
1117,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31203.0,check pass; user unknown,Jun 18 01:30:59,Normal
1118,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31203.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,Jun 18 01:30:59,Anomaly
1119,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31207.0,check pass; user unknown,Jun 18 01:30:59,Normal
1105,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31198.0,check pass; user unknown,Jun 18 01:30:59,Normal
1106,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31198.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,Jun 18 01:30:59,Anomaly
1107,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31202.0,check pass; user unknown,Jun 18 01:30:59,Normal
1102,761079,14434259,Jun,18,01:30:59,combo,sshd(pam_unix),31201.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-70-242-75-179.dsl.ksc2mo.swbell.net,Jun 18 01:30:59,Anomaly
1121,763310,14436490,Jun,18,02:08:10,combo,ftpd,31272.0,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,Jun 18 02:08:10,Normal
1127,763310,14436490,Jun,18,02:08:10,combo,ftpd,31278.0,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,Jun 18 02:08:10,Normal
1126,763310,14436490,Jun,18,02:08:10,combo,ftpd,31277.0,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,Jun 18 02:08:10,Normal
1124,763310,14436490,Jun,18,02:08:10,combo,ftpd,31275.0,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,Jun 18 02:08:10,Normal
1123,763310,14436490,Jun,18,02:08:10,combo,ftpd,31274.0,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,Jun 18 02:08:10,Normal
1122,763310,14436490,Jun,18,02:08:10,combo,ftpd,31273.0,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,Jun 18 02:08:10,Normal
1125,763310,14436490,Jun,18,02:08:10,combo,ftpd,31276.0,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,Jun 18 02:08:10,Normal
1132,763311,14436491,Jun,18,02:08:11,combo,ftpd,31283.0,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,Jun 18 02:08:11,Normal
1131,763311,14436491,Jun,18,02:08:11,combo,ftpd,31282.0,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,Jun 18 02:08:11,Normal
1129,763311,14436491,Jun,18,02:08:11,combo,ftpd,31280.0,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,Jun 18 02:08:11,Normal
1128,763311,14436491,Jun,18,02:08:11,combo,ftpd,31279.0,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,Jun 18 02:08:11,Normal
1130,763311,14436491,Jun,18,02:08:11,combo,ftpd,31281.0,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,Jun 18 02:08:11,Normal
1133,763312,14436492,Jun,18,02:08:12,combo,ftpd,31284.0,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,Jun 18 02:08:12,Normal
1134,763312,14436492,Jun,18,02:08:12,combo,ftpd,31285.0,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,Jun 18 02:08:12,Normal
1135,763312,14436492,Jun,18,02:08:12,combo,ftpd,31286.0,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,Jun 18 02:08:12,Normal
1136,764210,14437390,Jun,18,02:23:10,combo,ftpd,31277.0,User unknown timed out after 900 seconds at Sat Jun 18 02:23:10 2005,Jun 18 02:23:10,Normal
1137,770445,14443625,Jun,18,04:07:05,combo,su(pam_unix),31791.0,session opened for user cyrus by (uid=0),Jun 18 04:07:05,Normal
1139,770446,14443626,Jun,18,04:07:06,combo,logrotate,,ALERT exited abnormally with [1],Jun 18 04:07:06,Normal
1138,770446,14443626,Jun,18,04:07:06,combo,su(pam_unix),31791.0,session closed for user cyrus,Jun 18 04:07:06,Normal
1140,770782,14443962,Jun,18,04:12:42,combo,su(pam_unix),32164.0,session opened for user news by (uid=0),Jun 18 04:12:42,Normal
1141,770783,14443963,Jun,18,04:12:43,combo,su(pam_unix),32164.0,session closed for user news,Jun 18 04:12:43,Normal
1142,856955,14530135,Jun,19,04:08:55,combo,su(pam_unix),2192.0,session opened for user cyrus by (uid=0),Jun 19 04:08:55,Normal
1143,856955,14530135,Jun,19,04:08:55,combo,su(pam_unix),2192.0,session closed for user cyrus,Jun 19 04:08:55,Normal
1144,856957,14530137,Jun,19,04:08:57,combo,cups,,cupsd shutdown succeeded,Jun 19 04:08:57,Normal
1145,856962,14530142,Jun,19,04:09:02,combo,cups,,cupsd startup succeeded,Jun 19 04:09:02,Normal
1147,856971,14530151,Jun,19,04:09:11,combo,logrotate,,ALERT exited abnormally with [1],Jun 19 04:09:11,Normal
1149,857338,14530518,Jun,19,04:15:18,combo,su(pam_unix),3676.0,session closed for user news,Jun 19 04:15:18,Normal
1148,857338,14530518,Jun,19,04:15:18,combo,su(pam_unix),3676.0,session opened for user news by (uid=0),Jun 19 04:15:18,Normal
1160,941679,14614859,Jun,20,03:40:59,combo,ftpd,8830.0,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,Jun 20 03:40:59,Normal
1150,941679,14614859,Jun,20,03:40:59,combo,ftpd,8829.0,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,Jun 20 03:40:59,Normal
1152,941679,14614859,Jun,20,03:40:59,combo,ftpd,8828.0,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,Jun 20 03:40:59,Normal
1153,941679,14614859,Jun,20,03:40:59,combo,ftpd,8822.0,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,Jun 20 03:40:59,Normal
1158,941679,14614859,Jun,20,03:40:59,combo,ftpd,8826.0,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,Jun 20 03:40:59,Normal
1159,941679,14614859,Jun,20,03:40:59,combo,ftpd,8832.0,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,Jun 20 03:40:59,Normal
1161,941679,14614859,Jun,20,03:40:59,combo,ftpd,8831.0,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,Jun 20 03:40:59,Normal
1151,941679,14614859,Jun,20,03:40:59,combo,ftpd,8824.0,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,Jun 20 03:40:59,Normal
1154,941679,14614859,Jun,20,03:40:59,combo,ftpd,8833.0,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,Jun 20 03:40:59,Normal
1155,941679,14614859,Jun,20,03:40:59,combo,ftpd,8827.0,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,Jun 20 03:40:59,Normal
1156,941679,14614859,Jun,20,03:40:59,combo,ftpd,8823.0,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,Jun 20 03:40:59,Normal
1157,941679,14614859,Jun,20,03:40:59,combo,ftpd,8825.0,connection from 222.33.90.199 () at Mon Jun 20 03:40:59 2005,Jun 20 03:40:59,Normal
1163,942994,14616174,Jun,20,04:02:54,combo,su(pam_unix),9187.0,session closed for user cyrus,Jun 20 04:02:54,Normal
1162,942994,14616174,Jun,20,04:02:54,combo,su(pam_unix),9187.0,session opened for user cyrus by (uid=0),Jun 20 04:02:54,Normal
1164,942995,14616175,Jun,20,04:02:55,combo,logrotate,,ALERT exited abnormally with [1],Jun 20 04:02:55,Normal
1165,943337,14616517,Jun,20,04:08:37,combo,su(pam_unix),9558.0,session opened for user news by (uid=0),Jun 20 04:08:37,Normal
1166,943338,14616518,Jun,20,04:08:38,combo,su(pam_unix),9558.0,session closed for user news,Jun 20 04:08:38,Normal
1167,945499,14618679,Jun,20,04:44:39,combo,snmpd,2318.0,Received SNMP packet(s) from 67.170.148.126,Jun 20 04:44:39,Normal
1169,962025,14635205,Jun,20,09:20:05,combo,sshd(pam_unix),10035.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,Jun 20 09:20:05,Anomaly
1172,962025,14635205,Jun,20,09:20:05,combo,sshd(pam_unix),10039.0,check pass; user unknown,Jun 20 09:20:05,Normal
1171,962025,14635205,Jun,20,09:20:05,combo,sshd(pam_unix),10037.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,Jun 20 09:20:05,Anomaly
1168,962025,14635205,Jun,20,09:20:05,combo,sshd(pam_unix),10035.0,check pass; user unknown,Jun 20 09:20:05,Normal
1170,962025,14635205,Jun,20,09:20:05,combo,sshd(pam_unix),10037.0,check pass; user unknown,Jun 20 09:20:05,Normal
1173,962025,14635205,Jun,20,09:20:05,combo,sshd(pam_unix),10039.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,Jun 20 09:20:05,Anomaly
1174,962026,14635206,Jun,20,09:20:06,combo,sshd(pam_unix),10041.0,check pass; user unknown,Jun 20 09:20:06,Normal
1175,962026,14635206,Jun,20,09:20:06,combo,sshd(pam_unix),10041.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,Jun 20 09:20:06,Anomaly
1183,962027,14635207,Jun,20,09:20:07,combo,sshd(pam_unix),10049.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,Jun 20 09:20:07,Anomaly
1179,962027,14635207,Jun,20,09:20:07,combo,sshd(pam_unix),10045.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,Jun 20 09:20:07,Anomaly
1176,962027,14635207,Jun,20,09:20:07,combo,sshd(pam_unix),10043.0,check pass; user unknown,Jun 20 09:20:07,Normal
1180,962027,14635207,Jun,20,09:20:07,combo,sshd(pam_unix),10047.0,check pass; user unknown,Jun 20 09:20:07,Normal
1182,962027,14635207,Jun,20,09:20:07,combo,sshd(pam_unix),10049.0,check pass; user unknown,Jun 20 09:20:07,Normal
1181,962027,14635207,Jun,20,09:20:07,combo,sshd(pam_unix),10047.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,Jun 20 09:20:07,Anomaly
1178,962027,14635207,Jun,20,09:20:07,combo,sshd(pam_unix),10045.0,check pass; user unknown,Jun 20 09:20:07,Normal
1177,962027,14635207,Jun,20,09:20:07,combo,sshd(pam_unix),10043.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,Jun 20 09:20:07,Anomaly
1187,962028,14635208,Jun,20,09:20:08,combo,sshd(pam_unix),10053.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,Jun 20 09:20:08,Anomaly
1184,962028,14635208,Jun,20,09:20:08,combo,sshd(pam_unix),10051.0,check pass; user unknown,Jun 20 09:20:08,Normal
1185,962028,14635208,Jun,20,09:20:08,combo,sshd(pam_unix),10051.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.166.159.14,Jun 20 09:20:08,Anomaly
1186,962028,14635208,Jun,20,09:20:08,combo,sshd(pam_unix),10053.0,check pass; user unknown,Jun 20 09:20:08,Normal
1188,1029637,14702817,Jun,21,04:06:57,combo,su(pam_unix),12098.0,session opened for user cyrus by (uid=0),Jun 21 04:06:57,Normal
1189,1029638,14702818,Jun,21,04:06:58,combo,su(pam_unix),12098.0,session closed for user cyrus,Jun 21 04:06:58,Normal
1190,1029639,14702819,Jun,21,04:06:59,combo,logrotate,,ALERT exited abnormally with [1],Jun 21 04:06:59,Normal
1191,1030003,14703183,Jun,21,04:13:03,combo,su(pam_unix),13327.0,session opened for user news by (uid=0),Jun 21 04:13:03,Normal
1192,1030004,14703184,Jun,21,04:13:04,combo,su(pam_unix),13327.0,session closed for user news,Jun 21 04:13:04,Normal
1195,1047016,14720196,Jun,21,08:56:36,combo,sshd(pam_unix),14282.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217.60.212.66 user=guest,Jun 21 08:56:36,Anomaly
1194,1047016,14720196,Jun,21,08:56:36,combo,sshd(pam_unix),14279.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217.60.212.66 user=guest,Jun 21 08:56:36,Anomaly
1196,1047016,14720196,Jun,21,08:56:36,combo,sshd(pam_unix),14277.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217.60.212.66 user=guest,Jun 21 08:56:36,Anomaly
1193,1047016,14720196,Jun,21,08:56:36,combo,sshd(pam_unix),14281.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217.60.212.66 user=guest,Jun 21 08:56:36,Anomaly
1198,1047016,14720196,Jun,21,08:56:36,combo,sshd(pam_unix),14280.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217.60.212.66 user=guest,Jun 21 08:56:36,Anomaly
1197,1047016,14720196,Jun,21,08:56:36,combo,sshd(pam_unix),14278.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217.60.212.66 user=guest,Jun 21 08:56:36,Anomaly
1200,1113066,14786246,Jun,22,03:17:26,combo,sshd(pam_unix),16206.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:17:26,Anomaly
1199,1113066,14786246,Jun,22,03:17:26,combo,sshd(pam_unix),16207.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:17:26,Anomaly
1201,1113075,14786255,Jun,22,03:17:35,combo,sshd(pam_unix),16210.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:17:35,Anomaly
1202,1113076,14786256,Jun,22,03:17:36,combo,sshd(pam_unix),16212.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:17:36,Anomaly
1203,1113076,14786256,Jun,22,03:17:36,combo,sshd(pam_unix),16213.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:17:36,Anomaly
1204,1113085,14786265,Jun,22,03:17:45,combo,sshd(pam_unix),16216.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:17:45,Anomaly
1205,1113086,14786266,Jun,22,03:17:46,combo,sshd(pam_unix),16218.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:17:46,Anomaly
1206,1113086,14786266,Jun,22,03:17:46,combo,sshd(pam_unix),16219.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:17:46,Anomaly
1207,1113092,14786272,Jun,22,03:17:52,combo,sshd(pam_unix),16222.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:17:52,Anomaly
1208,1113095,14786275,Jun,22,03:17:55,combo,sshd(pam_unix),16224.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:17:55,Anomaly
1209,1113096,14786276,Jun,22,03:17:56,combo,sshd(pam_unix),16226.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:17:56,Anomaly
1210,1113096,14786276,Jun,22,03:17:56,combo,sshd(pam_unix),16227.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:17:56,Anomaly
1211,1113102,14786282,Jun,22,03:18:02,combo,sshd(pam_unix),16230.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:18:02,Anomaly
1212,1113105,14786285,Jun,22,03:18:05,combo,sshd(pam_unix),16232.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:18:05,Anomaly
1213,1113106,14786286,Jun,22,03:18:06,combo,sshd(pam_unix),16234.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:18:06,Anomaly
1214,1113106,14786286,Jun,22,03:18:06,combo,sshd(pam_unix),16235.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:18:06,Anomaly
1215,1113110,14786290,Jun,22,03:18:10,combo,sshd(pam_unix),16238.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:18:10,Anomaly
1216,1113112,14786292,Jun,22,03:18:12,combo,sshd(pam_unix),16240.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:18:12,Anomaly
1217,1113115,14786295,Jun,22,03:18:15,combo,sshd(pam_unix),16242.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:18:15,Anomaly
1218,1113116,14786296,Jun,22,03:18:16,combo,sshd(pam_unix),16244.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:18:16,Anomaly
1219,1113116,14786296,Jun,22,03:18:16,combo,sshd(pam_unix),16245.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:18:16,Anomaly
1220,1113120,14786300,Jun,22,03:18:20,combo,sshd(pam_unix),16248.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:18:20,Anomaly
1221,1113122,14786302,Jun,22,03:18:22,combo,sshd(pam_unix),16250.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=n219076184117.netvigator.com user=root,Jun 22 03:18:22,Anomaly
1222,1115978,14789158,Jun,22,04:05:58,combo,su(pam_unix),16663.0,session opened for user cyrus by (uid=0),Jun 22 04:05:58,Normal
1223,1115979,14789159,Jun,22,04:05:59,combo,su(pam_unix),16663.0,session closed for user cyrus,Jun 22 04:05:59,Normal
1224,1115980,14789160,Jun,22,04:06:00,combo,logrotate,,ALERT exited abnormally with [1],Jun 22 04:06:00,Normal
1225,1116322,14789502,Jun,22,04:11:42,combo,su(pam_unix),17037.0,session opened for user news by (uid=0),Jun 22 04:11:42,Normal
1226,1116322,14789502,Jun,22,04:11:42,combo,su(pam_unix),17037.0,session closed for user news,Jun 22 04:11:42,Normal
1227,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17129.0,check pass; user unknown,Jun 22 04:30:55,Normal
1233,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17123.0,check pass; user unknown,Jun 22 04:30:55,Normal
1239,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17135.0,check pass; user unknown,Jun 22 04:30:55,Normal
1240,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17135.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,Jun 22 04:30:55,Anomaly
1241,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17137.0,check pass; user unknown,Jun 22 04:30:55,Normal
1237,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17131.0,check pass; user unknown,Jun 22 04:30:55,Normal
1232,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17124.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,Jun 22 04:30:55,Anomaly
1234,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17123.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,Jun 22 04:30:55,Anomaly
1235,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17132.0,check pass; user unknown,Jun 22 04:30:55,Normal
1231,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17124.0,check pass; user unknown,Jun 22 04:30:55,Normal
1228,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17129.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,Jun 22 04:30:55,Anomaly
1229,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17125.0,check pass; user unknown,Jun 22 04:30:55,Normal
1230,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17125.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,Jun 22 04:30:55,Anomaly
1236,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17132.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,Jun 22 04:30:55,Anomaly
1238,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17131.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,Jun 22 04:30:55,Anomaly
1242,1117475,14790655,Jun,22,04:30:55,combo,sshd(pam_unix),17137.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,Jun 22 04:30:55,Anomaly
1245,1117476,14790656,Jun,22,04:30:56,combo,sshd(pam_unix),17140.0,check pass; user unknown,Jun 22 04:30:56,Normal
1243,1117476,14790656,Jun,22,04:30:56,combo,sshd(pam_unix),17139.0,check pass; user unknown,Jun 22 04:30:56,Normal
1246,1117476,14790656,Jun,22,04:30:56,combo,sshd(pam_unix),17140.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,Jun 22 04:30:56,Anomaly
1244,1117476,14790656,Jun,22,04:30:56,combo,sshd(pam_unix),17139.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ip-216-69-169-168.ip.secureserver.net,Jun 22 04:30:56,Anomaly
1254,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17892.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1255,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17876.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1256,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17875.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1253,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17879.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1249,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17887.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1262,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17878.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1251,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17890.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1260,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17872.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1261,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17881.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1252,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17893.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1257,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17877.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1248,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17889.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1250,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17888.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1247,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17886.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1258,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17874.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1259,1149010,14822190,Jun,22,13:16:30,combo,ftpd,17882.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:30,Normal
1266,1149011,14822191,Jun,22,13:16:31,combo,ftpd,17880.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:31 2005,Jun 22 13:16:31,Normal
1264,1149011,14822191,Jun,22,13:16:31,combo,ftpd,17885.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:31 2005,Jun 22 13:16:31,Normal
1263,1149011,14822191,Jun,22,13:16:31,combo,ftpd,17873.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:30 2005,Jun 22 13:16:31,Normal
1265,1149011,14822191,Jun,22,13:16:31,combo,ftpd,17884.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:31 2005,Jun 22 13:16:31,Normal
1267,1149011,14822191,Jun,22,13:16:31,combo,ftpd,17883.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:31 2005,Jun 22 13:16:31,Normal
1268,1149011,14822191,Jun,22,13:16:31,combo,ftpd,17891.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:31 2005,Jun 22 13:16:31,Normal
1269,1149012,14822192,Jun,22,13:16:32,combo,ftpd,17894.0,connection from 210.245.165.136 () at Wed Jun 22 13:16:32 2005,Jun 22 13:16:32,Normal
1273,1193709,14866889,Jun,23,01:41:29,combo,sshd(pam_unix),18975.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,Jun 23 01:41:29,Anomaly
1271,1193709,14866889,Jun,23,01:41:29,combo,sshd(pam_unix),18971.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,Jun 23 01:41:29,Anomaly
1272,1193709,14866889,Jun,23,01:41:29,combo,sshd(pam_unix),18973.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,Jun 23 01:41:29,Anomaly
1274,1193709,14866889,Jun,23,01:41:29,combo,sshd(pam_unix),18977.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,Jun 23 01:41:29,Anomaly
1270,1193709,14866889,Jun,23,01:41:29,combo,sshd(pam_unix),18969.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,Jun 23 01:41:29,Anomaly
1277,1193710,14866890,Jun,23,01:41:30,combo,sshd(pam_unix),18981.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,Jun 23 01:41:30,Anomaly
1276,1193710,14866890,Jun,23,01:41:30,combo,sshd(pam_unix),18982.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,Jun 23 01:41:30,Anomaly
1275,1193710,14866890,Jun,23,01:41:30,combo,sshd(pam_unix),18983.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,Jun 23 01:41:30,Anomaly
1278,1193710,14866890,Jun,23,01:41:30,combo,sshd(pam_unix),18976.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,Jun 23 01:41:30,Anomaly
1279,1193712,14866892,Jun,23,01:41:32,combo,sshd(pam_unix),18967.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=209.152.168.249 user=guest,Jun 23 01:41:32,Anomaly
1281,1198134,14871314,Jun,23,02:55:14,combo,sshd(pam_unix),19085.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=200.60.37.201,Jun 23 02:55:14,Anomaly
1280,1198134,14871314,Jun,23,02:55:14,combo,sshd(pam_unix),19085.0,check pass; user unknown,Jun 23 02:55:14,Normal
1282,1202348,14875528,Jun,23,04:05:28,combo,su(pam_unix),19534.0,session opened for user cyrus by (uid=0),Jun 23 04:05:28,Normal
1283,1202349,14875529,Jun,23,04:05:29,combo,su(pam_unix),19534.0,session closed for user cyrus,Jun 23 04:05:29,Normal
1284,1202350,14875530,Jun,23,04:05:30,combo,logrotate,,ALERT exited abnormally with [1],Jun 23 04:05:30,Normal
1285,1202808,14875988,Jun,23,04:13:08,combo,su(pam_unix),24180.0,session opened for user news by (uid=0),Jun 23 04:13:08,Normal
1286,1202809,14875989,Jun,23,04:13:09,combo,su(pam_unix),24180.0,session closed for user news,Jun 23 04:13:09,Normal
1287,1272223,14945403,Jun,23,23:30:03,combo,sshd(pam_unix),26189.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,Jun 23 23:30:03,Anomaly
1288,1272223,14945403,Jun,23,23:30:03,combo,sshd(pam_unix),26188.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,Jun 23 23:30:03,Anomaly
1290,1272224,14945404,Jun,23,23:30:04,combo,sshd(pam_unix),26182.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,Jun 23 23:30:04,Anomaly
1291,1272224,14945404,Jun,23,23:30:04,combo,sshd(pam_unix),26183.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,Jun 23 23:30:04,Anomaly
1292,1272224,14945404,Jun,23,23:30:04,combo,sshd(pam_unix),26184.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,Jun 23 23:30:04,Anomaly
1289,1272224,14945404,Jun,23,23:30:04,combo,sshd(pam_unix),26193.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,Jun 23 23:30:04,Anomaly
1294,1272225,14945405,Jun,23,23:30:05,combo,sshd(pam_unix),26198.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,Jun 23 23:30:05,Anomaly
1295,1272225,14945405,Jun,23,23:30:05,combo,sshd(pam_unix),26190.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,Jun 23 23:30:05,Anomaly
1293,1272225,14945405,Jun,23,23:30:05,combo,sshd(pam_unix),26197.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.22.3.51 user=root,Jun 23 23:30:05,Anomaly
1296,1288754,14961934,Jun,24,04:05:34,combo,su(pam_unix),26938.0,session opened for user cyrus by (uid=0),Jun 24 04:05:34,Normal
1298,1288755,14961935,Jun,24,04:05:35,combo,logrotate,,ALERT exited abnormally with [1],Jun 24 04:05:35,Normal
1297,1288755,14961935,Jun,24,04:05:35,combo,su(pam_unix),26938.0,session closed for user cyrus,Jun 24 04:05:35,Normal
1299,1289092,14962272,Jun,24,04:11:12,combo,su(pam_unix),27311.0,session opened for user news by (uid=0),Jun 24 04:11:12,Normal
1300,1289092,14962272,Jun,24,04:11:12,combo,su(pam_unix),27311.0,session closed for user news,Jun 24 04:11:12,Normal
1302,1342131,15015311,Jun,24,18:55:11,combo,ftpd,28566.0,connection from 218.69.108.57 () at Fri Jun 24 18:55:11 2005,Jun 24 18:55:11,Normal
1301,1342131,15015311,Jun,24,18:55:11,combo,ftpd,28568.0,connection from 218.69.108.57 () at Fri Jun 24 18:55:11 2005,Jun 24 18:55:11,Normal
1306,1342131,15015311,Jun,24,18:55:11,combo,ftpd,28564.0,connection from 218.69.108.57 () at Fri Jun 24 18:55:11 2005,Jun 24 18:55:11,Normal
1303,1342131,15015311,Jun,24,18:55:11,combo,ftpd,28562.0,connection from 218.69.108.57 () at Fri Jun 24 18:55:11 2005,Jun 24 18:55:11,Normal
1304,1342131,15015311,Jun,24,18:55:11,combo,ftpd,28563.0,connection from 218.69.108.57 () at Fri Jun 24 18:55:11 2005,Jun 24 18:55:11,Normal
1305,1342131,15015311,Jun,24,18:55:11,combo,ftpd,28565.0,connection from 218.69.108.57 () at Fri Jun 24 18:55:11 2005,Jun 24 18:55:11,Normal
1307,1342131,15015311,Jun,24,18:55:11,combo,ftpd,28567.0,connection from 218.69.108.57 () at Fri Jun 24 18:55:11 2005,Jun 24 18:55:11,Normal
1313,1342138,15015318,Jun,24,18:55:18,combo,ftpd,28573.0,connection from 218.69.108.57 () at Fri Jun 24 18:55:18 2005,Jun 24 18:55:18,Normal
1308,1342138,15015318,Jun,24,18:55:18,combo,ftpd,28570.0,connection from 218.69.108.57 () at Fri Jun 24 18:55:18 2005,Jun 24 18:55:18,Normal
1309,1342138,15015318,Jun,24,18:55:18,combo,ftpd,28571.0,connection from 218.69.108.57 () at Fri Jun 24 18:55:18 2005,Jun 24 18:55:18,Normal
1310,1342138,15015318,Jun,24,18:55:18,combo,ftpd,28569.0,connection from 218.69.108.57 () at Fri Jun 24 18:55:18 2005,Jun 24 18:55:18,Normal
1311,1342138,15015318,Jun,24,18:55:18,combo,ftpd,28572.0,connection from 218.69.108.57 () at Fri Jun 24 18:55:18 2005,Jun 24 18:55:18,Normal
1312,1342138,15015318,Jun,24,18:55:18,combo,ftpd,28574.0,connection from 218.69.108.57 () at Fri Jun 24 18:55:18 2005,Jun 24 18:55:18,Normal
1315,1375085,15048265,Jun,25,04:04:25,combo,su(pam_unix),29690.0,session closed for user cyrus,Jun 25 04:04:25,Normal
1314,1375085,15048265,Jun,25,04:04:25,combo,su(pam_unix),29690.0,session opened for user cyrus by (uid=0),Jun 25 04:04:25,Normal
1316,1375086,15048266,Jun,25,04:04:26,combo,logrotate,,ALERT exited abnormally with [1],Jun 25 04:04:26,Normal
1317,1375454,15048634,Jun,25,04:10:34,combo,su(pam_unix),30934.0,session opened for user news by (uid=0),Jun 25 04:10:34,Normal
1318,1375455,15048635,Jun,25,04:10:35,combo,su(pam_unix),30934.0,session closed for user news,Jun 25 04:10:35,Normal
1322,1377329,15050509,Jun,25,04:41:49,combo,sshd(pam_unix),31035.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,Jun 25 04:41:49,Anomaly
1319,1377329,15050509,Jun,25,04:41:49,combo,sshd(pam_unix),31031.0,check pass; user unknown,Jun 25 04:41:49,Normal
1325,1377329,15050509,Jun,25,04:41:49,combo,sshd(pam_unix),31036.0,check pass; user unknown,Jun 25 04:41:49,Normal
1324,1377329,15050509,Jun,25,04:41:49,combo,sshd(pam_unix),31034.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,Jun 25 04:41:49,Anomaly
1326,1377329,15050509,Jun,25,04:41:49,combo,sshd(pam_unix),31036.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,Jun 25 04:41:49,Anomaly
1321,1377329,15050509,Jun,25,04:41:49,combo,sshd(pam_unix),31035.0,check pass; user unknown,Jun 25 04:41:49,Normal
1320,1377329,15050509,Jun,25,04:41:49,combo,sshd(pam_unix),31031.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,Jun 25 04:41:49,Anomaly
1323,1377329,15050509,Jun,25,04:41:49,combo,sshd(pam_unix),31034.0,check pass; user unknown,Jun 25 04:41:49,Normal
1328,1377331,15050511,Jun,25,04:41:51,combo,sshd(pam_unix),31025.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,Jun 25 04:41:51,Anomaly
1330,1377331,15050511,Jun,25,04:41:51,combo,sshd(pam_unix),31028.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,Jun 25 04:41:51,Anomaly
1334,1377331,15050511,Jun,25,04:41:51,combo,sshd(pam_unix),31027.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,Jun 25 04:41:51,Anomaly
1335,1377331,15050511,Jun,25,04:41:51,combo,sshd(pam_unix),31021.0,check pass; user unknown,Jun 25 04:41:51,Normal
1333,1377331,15050511,Jun,25,04:41:51,combo,sshd(pam_unix),31027.0,check pass; user unknown,Jun 25 04:41:51,Normal
1327,1377331,15050511,Jun,25,04:41:51,combo,sshd(pam_unix),31025.0,check pass; user unknown,Jun 25 04:41:51,Normal
1332,1377331,15050511,Jun,25,04:41:51,combo,sshd(pam_unix),31020.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,Jun 25 04:41:51,Anomaly
1338,1377331,15050511,Jun,25,04:41:51,combo,sshd(pam_unix),31024.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,Jun 25 04:41:51,Anomaly
1336,1377331,15050511,Jun,25,04:41:51,combo,sshd(pam_unix),31021.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=massive.merukuru.org,Jun 25 04:41:51,Anomaly
1337,1377331,15050511,Jun,25,04:41:51,combo,sshd(pam_unix),31024.0,check pass; user unknown,Jun 25 04:41:51,Normal
1329,1377331,15050511,Jun,25,04:41:51,combo,sshd(pam_unix),31028.0,check pass; user unknown,Jun 25 04:41:51,Normal
1331,1377331,15050511,Jun,25,04:41:51,combo,sshd(pam_unix),31020.0,check pass; user unknown,Jun 25 04:41:51,Normal
1339,1393528,15066708,Jun,25,09:11:48,combo,rpc.statd,1636.0,gethostbyname error for ^X^X^Z^Z%8x%8x%8x%8x%8x%8x%8x%8x%8x%62716x%hn%51859x%hn\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220\220,Jun 25 09:11:48,Anomaly
1343,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31476.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1349,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31468.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1350,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31463.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1344,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31473.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1345,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31467.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1348,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31472.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1357,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31460.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1346,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31470.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1347,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31465.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1356,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31461.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1342,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31474.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1341,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31477.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1340,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31475.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1355,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31466.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1354,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31464.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1353,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31462.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1352,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31469.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1351,1394044,15067224,Jun,25,09:20:24,combo,ftpd,31471.0,connection from 210.118.170.95 () at Sat Jun 25 09:20:24 2005,Jun 25 09:20:24,Normal
1359,1430350,15103530,Jun,25,19:25:30,combo,ftpd,32329.0,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,Jun 25 19:25:30,Normal
1358,1430350,15103530,Jun,25,19:25:30,combo,ftpd,32328.0,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,Jun 25 19:25:30,Normal
1364,1430350,15103530,Jun,25,19:25:30,combo,ftpd,32325.0,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,Jun 25 19:25:30,Normal
1366,1430350,15103530,Jun,25,19:25:30,combo,ftpd,32330.0,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,Jun 25 19:25:30,Normal
1365,1430350,15103530,Jun,25,19:25:30,combo,ftpd,32331.0,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,Jun 25 19:25:30,Normal
1362,1430350,15103530,Jun,25,19:25:30,combo,ftpd,32323.0,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,Jun 25 19:25:30,Normal
1363,1430350,15103530,Jun,25,19:25:30,combo,ftpd,32327.0,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,Jun 25 19:25:30,Normal
1360,1430350,15103530,Jun,25,19:25:30,combo,ftpd,32324.0,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,Jun 25 19:25:30,Normal
1361,1430350,15103530,Jun,25,19:25:30,combo,ftpd,32326.0,connection from 211.167.68.59 () at Sat Jun 25 19:25:30 2005,Jun 25 19:25:30,Normal
1368,1430351,15103531,Jun,25,19:25:31,combo,ftpd,32332.0,connection from 211.167.68.59 () at Sat Jun 25 19:25:31 2005,Jun 25 19:25:31,Normal
1369,1430351,15103531,Jun,25,19:25:31,combo,ftpd,32334.0,connection from 211.167.68.59 () at Sat Jun 25 19:25:31 2005,Jun 25 19:25:31,Normal
1367,1430351,15103531,Jun,25,19:25:31,combo,ftpd,32333.0,connection from 211.167.68.59 () at Sat Jun 25 19:25:31 2005,Jun 25 19:25:31,Normal
1370,1430354,15103534,Jun,25,19:25:34,combo,ftpd,32335.0,connection from 211.167.68.59 () at Sat Jun 25 19:25:34 2005,Jun 25 19:25:34,Normal
1371,1461477,15134657,Jun,26,04:04:17,combo,su(pam_unix),945.0,session opened for user cyrus by (uid=0),Jun 26 04:04:17,Normal
1372,1461477,15134657,Jun,26,04:04:17,combo,su(pam_unix),945.0,session closed for user cyrus,Jun 26 04:04:17,Normal
1373,1461479,15134659,Jun,26,04:04:19,combo,cups,,cupsd shutdown succeeded,Jun 26 04:04:19,Normal
1374,1461484,15134664,Jun,26,04:04:24,combo,cups,,cupsd startup succeeded,Jun 26 04:04:24,Normal
1376,1461491,15134671,Jun,26,04:04:31,combo,logrotate,,ALERT exited abnormally with [1],Jun 26 04:04:31,Normal
1377,1461822,15135002,Jun,26,04:10:02,combo,su(pam_unix),1546.0,session opened for user news by (uid=0),Jun 26 04:10:02,Normal
1378,1461824,15135004,Jun,26,04:10:04,combo,su(pam_unix),1546.0,session closed for user news,Jun 26 04:10:04,Normal
1379,1547787,15220967,Jun,27,04:02:47,combo,su(pam_unix),7031.0,session opened for user cyrus by (uid=0),Jun 27 04:02:47,Normal
1380,1547788,15220968,Jun,27,04:02:48,combo,su(pam_unix),7031.0,session closed for user cyrus,Jun 27 04:02:48,Normal
1381,1547789,15220969,Jun,27,04:02:49,combo,logrotate,,ALERT exited abnormally with [1],Jun 27 04:02:49,Normal
1382,1548156,15221336,Jun,27,04:08:56,combo,su(pam_unix),8269.0,session opened for user news by (uid=0),Jun 27 04:08:56,Normal
1383,1548157,15221337,Jun,27,04:08:57,combo,su(pam_unix),8269.0,session closed for user news,Jun 27 04:08:57,Normal
1384,1562357,15235537,Jun,27,08:05:37,combo,sshd(pam_unix),8660.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=troi.bluesky-technologies.com user=root,Jun 27 08:05:37,Anomaly
1386,1562359,15235539,Jun,27,08:05:39,combo,sshd(pam_unix),8663.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=troi.bluesky-technologies.com user=root,Jun 27 08:05:39,Anomaly
1388,1562359,15235539,Jun,27,08:05:39,combo,sshd(pam_unix),8661.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=troi.bluesky-technologies.com user=root,Jun 27 08:05:39,Anomaly
1385,1562359,15235539,Jun,27,08:05:39,combo,sshd(pam_unix),8664.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=troi.bluesky-technologies.com user=root,Jun 27 08:05:39,Anomaly
1387,1562359,15235539,Jun,27,08:05:39,combo,sshd(pam_unix),8662.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=troi.bluesky-technologies.com user=root,Jun 27 08:05:39,Anomaly
1389,1634215,15307395,Jun,28,04:03:15,combo,su(pam_unix),10735.0,session opened for user cyrus by (uid=0),Jun 28 04:03:15,Normal
1390,1634216,15307396,Jun,28,04:03:16,combo,su(pam_unix),10735.0,session closed for user cyrus,Jun 28 04:03:16,Normal
1391,1634217,15307397,Jun,28,04:03:17,combo,logrotate,,ALERT exited abnormally with [1],Jun 28 04:03:17,Normal
1392,1634560,15307740,Jun,28,04:09:00,combo,su(pam_unix),11106.0,session opened for user news by (uid=0),Jun 28 04:09:00,Normal
1393,1634561,15307741,Jun,28,04:09:01,combo,su(pam_unix),11106.0,session closed for user news,Jun 28 04:09:01,Normal
1396,1649044,15322224,Jun,28,08:10:24,combo,sshd(pam_unix),11521.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,Jun 28 08:10:24,Anomaly
1397,1649044,15322224,Jun,28,08:10:24,combo,sshd(pam_unix),11510.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,Jun 28 08:10:24,Anomaly
1395,1649044,15322224,Jun,28,08:10:24,combo,sshd(pam_unix),11517.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,Jun 28 08:10:24,Anomaly
1394,1649044,15322224,Jun,28,08:10:24,combo,sshd(pam_unix),11513.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,Jun 28 08:10:24,Anomaly
1398,1649045,15322225,Jun,28,08:10:25,combo,sshd(pam_unix),11519.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,Jun 28 08:10:25,Anomaly
1399,1649046,15322226,Jun,28,08:10:26,combo,sshd(pam_unix),11514.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,Jun 28 08:10:26,Anomaly
1400,1649048,15322228,Jun,28,08:10:28,combo,sshd(pam_unix),11512.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,Jun 28 08:10:28,Anomaly
1401,1649049,15322229,Jun,28,08:10:29,combo,sshd(pam_unix),11509.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,Jun 28 08:10:29,Anomaly
1402,1649050,15322230,Jun,28,08:10:30,combo,sshd(pam_unix),11515.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.53.154.93 user=root,Jun 28 08:10:30,Anomaly
1403,1695146,15368326,Jun,28,20:58:46,combo,sshd(pam_unix),12665.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,Jun 28 20:58:46,Anomaly
1404,1695146,15368326,Jun,28,20:58:46,combo,sshd(pam_unix),12666.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,Jun 28 20:58:46,Anomaly
1405,1695147,15368327,Jun,28,20:58:47,combo,sshd(pam_unix),12669.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,Jun 28 20:58:47,Anomaly
1406,1695150,15368330,Jun,28,20:58:50,combo,sshd(pam_unix),12671.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,Jun 28 20:58:50,Anomaly
1407,1695152,15368332,Jun,28,20:58:52,combo,sshd(pam_unix),12673.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,Jun 28 20:58:52,Anomaly
1408,1695153,15368333,Jun,28,20:58:53,combo,sshd(pam_unix),12675.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,Jun 28 20:58:53,Anomaly
1409,1695153,15368333,Jun,28,20:58:53,combo,sshd(pam_unix),12677.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,Jun 28 20:58:53,Anomaly
1412,1695155,15368335,Jun,28,20:58:55,combo,sshd(pam_unix),12680.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,Jun 28 20:58:55,Anomaly
1411,1695155,15368335,Jun,28,20:58:55,combo,sshd(pam_unix),12681.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,Jun 28 20:58:55,Anomaly
1410,1695155,15368335,Jun,28,20:58:55,combo,sshd(pam_unix),12679.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=62-192-102-94.dsl.easynet.nl user=root,Jun 28 20:58:55,Anomaly
1413,1697786,15370966,Jun,28,21:42:46,combo,sshd(pam_unix),12756.0,check pass; user unknown,Jun 28 21:42:46,Normal
1414,1697786,15370966,Jun,28,21:42:46,combo,sshd(pam_unix),12756.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.115.206.155,Jun 28 21:42:46,Anomaly
1420,1697786,15370966,Jun,28,21:42:46,combo,sshd(pam_unix),12755.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.115.206.155,Jun 28 21:42:46,Anomaly
1416,1697786,15370966,Jun,28,21:42:46,combo,sshd(pam_unix),12753.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.115.206.155,Jun 28 21:42:46,Anomaly
1418,1697786,15370966,Jun,28,21:42:46,combo,sshd(pam_unix),12752.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.115.206.155,Jun 28 21:42:46,Anomaly
1422,1697786,15370966,Jun,28,21:42:46,combo,sshd(pam_unix),12754.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.115.206.155,Jun 28 21:42:46,Anomaly
1421,1697786,15370966,Jun,28,21:42:46,combo,sshd(pam_unix),12754.0,check pass; user unknown,Jun 28 21:42:46,Normal
1419,1697786,15370966,Jun,28,21:42:46,combo,sshd(pam_unix),12755.0,check pass; user unknown,Jun 28 21:42:46,Normal
1415,1697786,15370966,Jun,28,21:42:46,combo,sshd(pam_unix),12753.0,check pass; user unknown,Jun 28 21:42:46,Normal
1417,1697786,15370966,Jun,28,21:42:46,combo,sshd(pam_unix),12752.0,check pass; user unknown,Jun 28 21:42:46,Normal
1440,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13243.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1434,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13264.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1428,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13260.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1431,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13258.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1430,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13256.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1442,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13253.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1443,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13247.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1429,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13259.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1432,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13255.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1425,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13261.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1426,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13250.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1436,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13263.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1435,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13251.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1433,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13254.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1438,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13246.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1437,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13245.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1424,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13257.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1427,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13252.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1423,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13262.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1444,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13248.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1441,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13249.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1439,1718162,15391342,Jun,29,03:22:22,combo,ftpd,13244.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:22 2005,Jun 29 03:22:22,Normal
1445,1718163,15391343,Jun,29,03:22:23,combo,ftpd,13265.0,connection from 61.74.96.178 () at Wed Jun 29 03:22:23 2005,Jun 29 03:22:23,Normal
1446,1720610,15393790,Jun,29,04:03:10,combo,su(pam_unix),13665.0,session opened for user cyrus by (uid=0),Jun 29 04:03:10,Normal
1447,1720611,15393791,Jun,29,04:03:11,combo,su(pam_unix),13665.0,session closed for user cyrus,Jun 29 04:03:11,Normal
1448,1720612,15393792,Jun,29,04:03:12,combo,logrotate,,ALERT exited abnormally with [1],Jun 29 04:03:12,Normal
1449,1720989,15394169,Jun,29,04:09:29,combo,su(pam_unix),14891.0,session opened for user news by (uid=0),Jun 29 04:09:29,Normal
1450,1720990,15394170,Jun,29,04:09:30,combo,su(pam_unix),14891.0,session closed for user news,Jun 29 04:09:30,Normal
1456,1742519,15415699,Jun,29,10:08:19,combo,sshd(pam_unix),15476.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,Jun 29 10:08:19,Normal
1452,1742519,15415699,Jun,29,10:08:19,combo,sshd(pam_unix),15477.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,Jun 29 10:08:19,Normal
1457,1742519,15415699,Jun,29,10:08:19,combo,sshd(pam_unix),15488.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,Jun 29 10:08:19,Normal
1451,1742519,15415699,Jun,29,10:08:19,combo,sshd(pam_unix),15481.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,Jun 29 10:08:19,Normal
1454,1742519,15415699,Jun,29,10:08:19,combo,sshd(pam_unix),15478.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,Jun 29 10:08:19,Normal
1455,1742519,15415699,Jun,29,10:08:19,combo,sshd(pam_unix),15480.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,Jun 29 10:08:19,Normal
1453,1742519,15415699,Jun,29,10:08:19,combo,sshd(pam_unix),15479.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,Jun 29 10:08:19,Normal
1459,1742520,15415700,Jun,29,10:08:20,combo,sshd(pam_unix),15491.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,Jun 29 10:08:20,Normal
1458,1742520,15415700,Jun,29,10:08:20,combo,sshd(pam_unix),15490.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,Jun 29 10:08:20,Normal
1460,1742520,15415700,Jun,29,10:08:20,combo,sshd(pam_unix),15492.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=csnsu.nsuok.edu user=root,Jun 29 10:08:20,Normal
1464,1744901,15418081,Jun,29,10:48:01,combo,ftpd,15542.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:01 2005,Jun 29 10:48:01,Normal
1463,1744901,15418081,Jun,29,10:48:01,combo,ftpd,15546.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:01 2005,Jun 29 10:48:01,Normal
1462,1744901,15418081,Jun,29,10:48:01,combo,ftpd,15543.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:01 2005,Jun 29 10:48:01,Normal
1461,1744901,15418081,Jun,29,10:48:01,combo,ftpd,15547.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:01 2005,Jun 29 10:48:01,Normal
1466,1744901,15418081,Jun,29,10:48:01,combo,ftpd,15545.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:01 2005,Jun 29 10:48:01,Normal
1465,1744901,15418081,Jun,29,10:48:01,combo,ftpd,15544.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:01 2005,Jun 29 10:48:01,Normal
1467,1744905,15418085,Jun,29,10:48:05,combo,ftpd,15548.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:05 2005,Jun 29 10:48:05,Normal
1469,1744906,15418086,Jun,29,10:48:06,combo,ftpd,15550.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:06 2005,Jun 29 10:48:06,Normal
1470,1744906,15418086,Jun,29,10:48:06,combo,ftpd,15551.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:06 2005,Jun 29 10:48:06,Normal
1468,1744906,15418086,Jun,29,10:48:06,combo,ftpd,15549.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:06 2005,Jun 29 10:48:06,Normal
1472,1744908,15418088,Jun,29,10:48:08,combo,ftpd,15553.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:08 2005,Jun 29 10:48:08,Normal
1471,1744908,15418088,Jun,29,10:48:08,combo,ftpd,15552.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:08 2005,Jun 29 10:48:08,Normal
1473,1744908,15418088,Jun,29,10:48:08,combo,ftpd,15554.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:08 2005,Jun 29 10:48:08,Normal
1474,1744910,15418090,Jun,29,10:48:10,combo,ftpd,15555.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:10 2005,Jun 29 10:48:10,Normal
1475,1744912,15418092,Jun,29,10:48:12,combo,ftpd,15556.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:12 2005,Jun 29 10:48:12,Normal
1476,1744912,15418092,Jun,29,10:48:12,combo,ftpd,15557.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:12 2005,Jun 29 10:48:12,Normal
1477,1744913,15418093,Jun,29,10:48:13,combo,ftpd,15558.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:13 2005,Jun 29 10:48:13,Normal
1478,1744915,15418095,Jun,29,10:48:15,combo,ftpd,15559.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:15 2005,Jun 29 10:48:15,Normal
1480,1744917,15418097,Jun,29,10:48:17,combo,ftpd,15561.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:17 2005,Jun 29 10:48:17,Normal
1479,1744917,15418097,Jun,29,10:48:17,combo,ftpd,15560.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:17 2005,Jun 29 10:48:17,Normal
1481,1744918,15418098,Jun,29,10:48:18,combo,ftpd,15562.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:18 2005,Jun 29 10:48:18,Normal
1482,1744920,15418100,Jun,29,10:48:20,combo,ftpd,15563.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:20 2005,Jun 29 10:48:20,Normal
1483,1744921,15418101,Jun,29,10:48:21,combo,ftpd,15564.0,connection from 208.62.55.75 () at Wed Jun 29 10:48:21 2005,Jun 29 10:48:21,Normal
1484,1749933,15423113,Jun,29,12:11:53,combo,sshd(pam_unix),15692.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,Jun 29 12:11:53,Anomaly
1485,1749935,15423115,Jun,29,12:11:55,combo,sshd(pam_unix),15694.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,Jun 29 12:11:55,Anomaly
1486,1749937,15423117,Jun,29,12:11:57,combo,sshd(pam_unix),15696.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,Jun 29 12:11:57,Anomaly
1488,1749939,15423119,Jun,29,12:11:59,combo,sshd(pam_unix),15700.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,Jun 29 12:11:59,Anomaly
1487,1749939,15423119,Jun,29,12:11:59,combo,sshd(pam_unix),15698.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,Jun 29 12:11:59,Anomaly
1489,1749941,15423121,Jun,29,12:12:01,combo,sshd(pam_unix),15702.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,Jun 29 12:12:01,Anomaly
1490,1749942,15423122,Jun,29,12:12:02,combo,sshd(pam_unix),15704.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,Jun 29 12:12:02,Anomaly
1491,1749943,15423123,Jun,29,12:12:03,combo,sshd(pam_unix),15706.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,Jun 29 12:12:03,Anomaly
1492,1749943,15423123,Jun,29,12:12:03,combo,sshd(pam_unix),15708.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,Jun 29 12:12:03,Anomaly
1494,1749945,15423125,Jun,29,12:12:05,combo,sshd(pam_unix),15712.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,Jun 29 12:12:05,Anomaly
1493,1749945,15423125,Jun,29,12:12:05,combo,sshd(pam_unix),15710.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,Jun 29 12:12:05,Anomaly
1495,1749946,15423126,Jun,29,12:12:06,combo,sshd(pam_unix),15714.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,Jun 29 12:12:06,Anomaly
1496,1749950,15423130,Jun,29,12:12:10,combo,sshd(pam_unix),15716.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h64-187-1-131.gtconnect.net user=root,Jun 29 12:12:10,Anomaly
1501,1759095,15432275,Jun,29,14:44:35,combo,ftpd,15923.0,connection from 210.223.97.117 () at Wed Jun 29 14:44:35 2005,Jun 29 14:44:35,Normal
1500,1759095,15432275,Jun,29,14:44:35,combo,ftpd,15919.0,connection from 210.223.97.117 () at Wed Jun 29 14:44:35 2005,Jun 29 14:44:35,Normal
1497,1759095,15432275,Jun,29,14:44:35,combo,ftpd,15917.0,connection from 210.223.97.117 () at Wed Jun 29 14:44:35 2005,Jun 29 14:44:35,Normal
1503,1759095,15432275,Jun,29,14:44:35,combo,ftpd,15921.0,connection from 210.223.97.117 () at Wed Jun 29 14:44:35 2005,Jun 29 14:44:35,Normal
1502,1759095,15432275,Jun,29,14:44:35,combo,ftpd,15920.0,connection from 210.223.97.117 () at Wed Jun 29 14:44:35 2005,Jun 29 14:44:35,Normal
1498,1759095,15432275,Jun,29,14:44:35,combo,ftpd,15922.0,connection from 210.223.97.117 () at Wed Jun 29 14:44:35 2005,Jun 29 14:44:35,Normal
1499,1759095,15432275,Jun,29,14:44:35,combo,ftpd,15918.0,connection from 210.223.97.117 () at Wed Jun 29 14:44:35 2005,Jun 29 14:44:35,Normal
1504,1807041,15480221,Jun,30,04:03:41,combo,su(pam_unix),17407.0,session opened for user cyrus by (uid=0),Jun 30 04:03:41,Normal
1505,1807042,15480222,Jun,30,04:03:42,combo,su(pam_unix),17407.0,session closed for user cyrus,Jun 30 04:03:42,Normal
1506,1807043,15480223,Jun,30,04:03:43,combo,logrotate,,ALERT exited abnormally with [1],Jun 30 04:03:43,Normal
1507,1807390,15480570,Jun,30,04:09:30,combo,su(pam_unix),17778.0,session opened for user news by (uid=0),Jun 30 04:09:30,Normal
1508,1807391,15480571,Jun,30,04:09:31,combo,su(pam_unix),17778.0,session closed for user news,Jun 30 04:09:31,Normal
1510,1838538,15511718,Jun,30,12:48:38,combo,sshd(pam_unix),18559.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,Jun 30 12:48:38,Anomaly
1509,1838538,15511718,Jun,30,12:48:38,combo,sshd(pam_unix),18559.0,check pass; user unknown,Jun 30 12:48:38,Normal
1523,1838541,15511721,Jun,30,12:48:41,combo,sshd(pam_unix),18546.0,check pass; user unknown,Jun 30 12:48:41,Normal
1519,1838541,15511721,Jun,30,12:48:41,combo,sshd(pam_unix),18545.0,check pass; user unknown,Jun 30 12:48:41,Normal
1521,1838541,15511721,Jun,30,12:48:41,combo,sshd(pam_unix),18548.0,check pass; user unknown,Jun 30 12:48:41,Normal
1514,1838541,15511721,Jun,30,12:48:41,combo,sshd(pam_unix),18550.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,Jun 30 12:48:41,Anomaly
1524,1838541,15511721,Jun,30,12:48:41,combo,sshd(pam_unix),18546.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,Jun 30 12:48:41,Anomaly
1522,1838541,15511721,Jun,30,12:48:41,combo,sshd(pam_unix),18548.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,Jun 30 12:48:41,Anomaly
1517,1838541,15511721,Jun,30,12:48:41,combo,sshd(pam_unix),18549.0,check pass; user unknown,Jun 30 12:48:41,Normal
1516,1838541,15511721,Jun,30,12:48:41,combo,sshd(pam_unix),18547.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,Jun 30 12:48:41,Anomaly
1515,1838541,15511721,Jun,30,12:48:41,combo,sshd(pam_unix),18547.0,check pass; user unknown,Jun 30 12:48:41,Normal
1518,1838541,15511721,Jun,30,12:48:41,combo,sshd(pam_unix),18549.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,Jun 30 12:48:41,Anomaly
1520,1838541,15511721,Jun,30,12:48:41,combo,sshd(pam_unix),18545.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,Jun 30 12:48:41,Anomaly
1512,1838541,15511721,Jun,30,12:48:41,combo,sshd(pam_unix),18557.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=biblioteka.wsi.edu.pl,Jun 30 12:48:41,Anomaly
1511,1838541,15511721,Jun,30,12:48:41,combo,sshd(pam_unix),18557.0,check pass; user unknown,Jun 30 12:48:41,Normal
1513,1838541,15511721,Jun,30,12:48:41,combo,sshd(pam_unix),18550.0,check pass; user unknown,Jun 30 12:48:41,Normal
1525,1861000,15534180,Jun,30,19:03:00,combo,sshd(pam_unix),19088.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jun 30 19:03:00,Anomaly
1527,1861000,15534180,Jun,30,19:03:00,combo,sshd(pam_unix),19087.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jun 30 19:03:00,Anomaly
1526,1861000,15534180,Jun,30,19:03:00,combo,sshd(pam_unix),19094.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jun 30 19:03:00,Anomaly
1529,1861001,15534181,Jun,30,19:03:01,combo,sshd(pam_unix),19085.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jun 30 19:03:01,Anomaly
1528,1861001,15534181,Jun,30,19:03:01,combo,sshd(pam_unix),19093.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jun 30 19:03:01,Anomaly
1530,1861003,15534183,Jun,30,19:03:03,combo,sshd(pam_unix),19091.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jun 30 19:03:03,Anomaly
1531,1861004,15534184,Jun,30,19:03:04,combo,sshd(pam_unix),19099.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jun 30 19:03:04,Anomaly
1532,1861004,15534184,Jun,30,19:03:04,combo,sshd(pam_unix),19101.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jun 30 19:03:04,Anomaly
1533,1861005,15534185,Jun,30,19:03:05,combo,sshd(pam_unix),19103.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jun 30 19:03:05,Anomaly
1534,1861007,15534187,Jun,30,19:03:07,combo,sshd(pam_unix),19097.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jun 30 19:03:07,Anomaly
1535,1865397,15538577,Jun,30,20:16:17,combo,sshd(pam_unix),19202.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,Jun 30 20:16:17,Anomaly
1536,1865397,15538577,Jun,30,20:16:17,combo,sshd(pam_unix),19203.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,Jun 30 20:16:17,Anomaly
1537,1865406,15538586,Jun,30,20:16:26,combo,sshd(pam_unix),19209.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,Jun 30 20:16:26,Anomaly
1538,1865406,15538586,Jun,30,20:16:26,combo,sshd(pam_unix),19208.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,Jun 30 20:16:26,Anomaly
1539,1865410,15538590,Jun,30,20:16:30,combo,sshd(pam_unix),19222.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=195.129.24.210 user=root,Jun 30 20:16:30,Anomaly
1541,1867604,15540784,Jun,30,20:53:04,combo,klogind,19272.0,Kerberos authentication failed,Jun 30 20:53:04,Anomaly
1542,1867604,15540784,Jun,30,20:53:04,combo,klogind,19287.0,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,Jun 30 20:53:04,Anomaly
1554,1867604,15540784,Jun,30,20:53:04,combo,klogind,19274.0,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,Jun 30 20:53:04,Anomaly
1550,1867604,15540784,Jun,30,20:53:04,combo,klogind,19269.0,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,Jun 30 20:53:04,Anomaly
1557,1867604,15540784,Jun,30,20:53:04,combo,klogind,19274.0,Kerberos authentication failed,Jun 30 20:53:04,Anomaly
1552,1867604,15540784,Jun,30,20:53:04,combo,klogind,19268.0,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,Jun 30 20:53:04,Anomaly
1551,1867604,15540784,Jun,30,20:53:04,combo,klogind,19269.0,Kerberos authentication failed,Jun 30 20:53:04,Anomaly
1556,1867604,15540784,Jun,30,20:53:04,combo,klogind,19288.0,Kerberos authentication failed,Jun 30 20:53:04,Anomaly
1549,1867604,15540784,Jun,30,20:53:04,combo,klogind,19270.0,Kerberos authentication failed,Jun 30 20:53:04,Anomaly
1540,1867604,15540784,Jun,30,20:53:04,combo,klogind,19272.0,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,Jun 30 20:53:04,Anomaly
1543,1867604,15540784,Jun,30,20:53:04,combo,klogind,19287.0,Kerberos authentication failed,Jun 30 20:53:04,Anomaly
1546,1867604,15540784,Jun,30,20:53:04,combo,klogind,19271.0,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,Jun 30 20:53:04,Anomaly
1553,1867604,15540784,Jun,30,20:53:04,combo,klogind,19288.0,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,Jun 30 20:53:04,Anomaly
1544,1867604,15540784,Jun,30,20:53:04,combo,klogind,19286.0,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,Jun 30 20:53:04,Anomaly
1545,1867604,15540784,Jun,30,20:53:04,combo,klogind,19286.0,Kerberos authentication failed,Jun 30 20:53:04,Anomaly
1548,1867604,15540784,Jun,30,20:53:04,combo,klogind,19270.0,Authentication failed from 163.27.187.39 (163.27.187.39): Permission denied in replay cache code,Jun 30 20:53:04,Anomaly
1555,1867604,15540784,Jun,30,20:53:04,combo,klogind,19268.0,Kerberos authentication failed,Jun 30 20:53:04,Anomaly
1547,1867604,15540784,Jun,30,20:53:04,combo,klogind,19271.0,Kerberos authentication failed,Jun 30 20:53:04,Anomaly
1571,1867606,15540786,Jun,30,20:53:06,combo,klogind,19277.0,Kerberos authentication failed,Jun 30 20:53:06,Anomaly
1575,1867606,15540786,Jun,30,20:53:06,combo,klogind,19281.0,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,Jun 30 20:53:06,Anomaly
1578,1867606,15540786,Jun,30,20:53:06,combo,klogind,19283.0,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,Jun 30 20:53:06,Anomaly
1579,1867606,15540786,Jun,30,20:53:06,combo,klogind,19281.0,Kerberos authentication failed,Jun 30 20:53:06,Anomaly
1580,1867606,15540786,Jun,30,20:53:06,combo,klogind,19285.0,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,Jun 30 20:53:06,Anomaly
1581,1867606,15540786,Jun,30,20:53:06,combo,klogind,19284.0,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,Jun 30 20:53:06,Anomaly
1572,1867606,15540786,Jun,30,20:53:06,combo,klogind,19279.0,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,Jun 30 20:53:06,Anomaly
1573,1867606,15540786,Jun,30,20:53:06,combo,klogind,19279.0,Kerberos authentication failed,Jun 30 20:53:06,Anomaly
1574,1867606,15540786,Jun,30,20:53:06,combo,klogind,19280.0,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,Jun 30 20:53:06,Anomaly
1564,1867606,15540786,Jun,30,20:53:06,combo,klogind,19273.0,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,Jun 30 20:53:06,Anomaly
1565,1867606,15540786,Jun,30,20:53:06,combo,klogind,19273.0,Kerberos authentication failed,Jun 30 20:53:06,Anomaly
1566,1867606,15540786,Jun,30,20:53:06,combo,klogind,19276.0,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,Jun 30 20:53:06,Anomaly
1567,1867606,15540786,Jun,30,20:53:06,combo,klogind,19276.0,Kerberos authentication failed,Jun 30 20:53:06,Anomaly
1568,1867606,15540786,Jun,30,20:53:06,combo,klogind,19275.0,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,Jun 30 20:53:06,Anomaly
1569,1867606,15540786,Jun,30,20:53:06,combo,klogind,19275.0,Kerberos authentication failed,Jun 30 20:53:06,Anomaly
1563,1867606,15540786,Jun,30,20:53:06,combo,klogind,19278.0,Kerberos authentication failed,Jun 30 20:53:06,Anomaly
1562,1867606,15540786,Jun,30,20:53:06,combo,klogind,19278.0,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,Jun 30 20:53:06,Anomaly
1560,1867606,15540786,Jun,30,20:53:06,combo,klogind,19267.0,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,Jun 30 20:53:06,Anomaly
1561,1867606,15540786,Jun,30,20:53:06,combo,klogind,19267.0,Kerberos authentication failed,Jun 30 20:53:06,Anomaly
1558,1867606,15540786,Jun,30,20:53:06,combo,klogind,19266.0,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,Jun 30 20:53:06,Anomaly
1559,1867606,15540786,Jun,30,20:53:06,combo,klogind,19266.0,Kerberos authentication failed,Jun 30 20:53:06,Anomaly
1585,1867606,15540786,Jun,30,20:53:06,combo,klogind,19284.0,Kerberos authentication failed,Jun 30 20:53:06,Anomaly
1582,1867606,15540786,Jun,30,20:53:06,combo,klogind,19282.0,Kerberos authentication failed,Jun 30 20:53:06,Anomaly
1583,1867606,15540786,Jun,30,20:53:06,combo,klogind,19283.0,Kerberos authentication failed,Jun 30 20:53:06,Anomaly
1584,1867606,15540786,Jun,30,20:53:06,combo,klogind,19285.0,Kerberos authentication failed,Jun 30 20:53:06,Anomaly
1576,1867606,15540786,Jun,30,20:53:06,combo,klogind,19282.0,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,Jun 30 20:53:06,Anomaly
1577,1867606,15540786,Jun,30,20:53:06,combo,klogind,19280.0,Kerberos authentication failed,Jun 30 20:53:06,Anomaly
1570,1867606,15540786,Jun,30,20:53:06,combo,klogind,19277.0,Authentication failed from 163.27.187.39 (163.27.187.39): Software caused connection abort,Jun 30 20:53:06,Anomaly
1593,1872612,15545792,Jun,30,22:16:32,combo,sshd(pam_unix),19437.0,session opened for user test by (uid=509),Jun 30 22:16:32,Normal
1595,1872612,15545792,Jun,30,22:16:32,combo,sshd(pam_unix),19431.0,session closed for user test,Jun 30 22:16:32,Normal
1594,1872612,15545792,Jun,30,22:16:32,combo,sshd(pam_unix),19432.0,session closed for user test,Jun 30 22:16:32,Normal
1588,1872612,15545792,Jun,30,22:16:32,combo,sshd(pam_unix),19433.0,session opened for user test by (uid=509),Jun 30 22:16:32,Normal
1592,1872612,15545792,Jun,30,22:16:32,combo,sshd(pam_unix),19438.0,session opened for user test by (uid=509),Jun 30 22:16:32,Normal
1590,1872612,15545792,Jun,30,22:16:32,combo,sshd(pam_unix),19435.0,session opened for user test by (uid=509),Jun 30 22:16:32,Normal
1598,1872612,15545792,Jun,30,22:16:32,combo,sshd(pam_unix),19434.0,session closed for user test,Jun 30 22:16:32,Normal
1599,1872612,15545792,Jun,30,22:16:32,combo,sshd(pam_unix),19435.0,session closed for user test,Jun 30 22:16:32,Normal
1586,1872612,15545792,Jun,30,22:16:32,combo,sshd(pam_unix),19432.0,session opened for user test by (uid=509),Jun 30 22:16:32,Normal
1587,1872612,15545792,Jun,30,22:16:32,combo,sshd(pam_unix),19431.0,session opened for user test by (uid=509),Jun 30 22:16:32,Normal
1591,1872612,15545792,Jun,30,22:16:32,combo,sshd(pam_unix),19436.0,session opened for user test by (uid=509),Jun 30 22:16:32,Normal
1596,1872612,15545792,Jun,30,22:16:32,combo,sshd(pam_unix),19439.0,session opened for user test by (uid=509),Jun 30 22:16:32,Normal
1589,1872612,15545792,Jun,30,22:16:32,combo,sshd(pam_unix),19434.0,session opened for user test by (uid=509),Jun 30 22:16:32,Normal
1597,1872612,15545792,Jun,30,22:16:32,combo,sshd(pam_unix),19440.0,session opened for user test by (uid=509),Jun 30 22:16:32,Normal
1601,1872613,15545793,Jun,30,22:16:33,combo,sshd(pam_unix),19436.0,session closed for user test,Jun 30 22:16:33,Normal
1603,1872613,15545793,Jun,30,22:16:33,combo,sshd(pam_unix),19438.0,session closed for user test,Jun 30 22:16:33,Normal
1600,1872613,15545793,Jun,30,22:16:33,combo,sshd(pam_unix),19433.0,session closed for user test,Jun 30 22:16:33,Normal
1604,1872613,15545793,Jun,30,22:16:33,combo,sshd(pam_unix),19439.0,session closed for user test,Jun 30 22:16:33,Normal
1602,1872613,15545793,Jun,30,22:16:33,combo,sshd(pam_unix),19437.0,session closed for user test,Jun 30 22:16:33,Normal
1605,1872613,15545793,Jun,30,22:16:33,combo,sshd(pam_unix),19440.0,session closed for user test,Jun 30 22:16:33,Normal
1606,1880108,15553288,Jul,1,00:21:28,combo,sshd(pam_unix),19630.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jul 1 00:21:28,Anomaly
1607,1880108,15553288,Jul,1,00:21:28,combo,sshd(pam_unix),19628.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jul 1 00:21:28,Anomaly
1609,1880110,15553290,Jul,1,00:21:30,combo,sshd(pam_unix),19642.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jul 1 00:21:30,Anomaly
1608,1880110,15553290,Jul,1,00:21:30,combo,sshd(pam_unix),19640.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jul 1 00:21:30,Anomaly
1610,1880110,15553290,Jul,1,00:21:30,combo,sshd(pam_unix),19632.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jul 1 00:21:30,Anomaly
1612,1880111,15553291,Jul,1,00:21:31,combo,sshd(pam_unix),19631.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jul 1 00:21:31,Anomaly
1611,1880111,15553291,Jul,1,00:21:31,combo,sshd(pam_unix),19643.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jul 1 00:21:31,Anomaly
1614,1880112,15553292,Jul,1,00:21:32,combo,sshd(pam_unix),19645.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jul 1 00:21:32,Anomaly
1613,1880112,15553292,Jul,1,00:21:32,combo,sshd(pam_unix),19636.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jul 1 00:21:32,Anomaly
1615,1880115,15553295,Jul,1,00:21:35,combo,sshd(pam_unix),19637.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=60.30.224.116 user=root,Jul 1 00:21:35,Anomaly
1616,1893537,15566717,Jul,1,04:05:17,combo,su(pam_unix),20298.0,session opened for user cyrus by (uid=0),Jul 1 04:05:17,Normal
1617,1893538,15566718,Jul,1,04:05:18,combo,su(pam_unix),20298.0,session closed for user cyrus,Jul 1 04:05:18,Normal
1618,1893539,15566719,Jul,1,04:05:19,combo,logrotate,,ALERT exited abnormally with [1],Jul 1 04:05:19,Normal
1619,1893915,15567095,Jul,1,04:11:35,combo,su(pam_unix),21530.0,session opened for user news by (uid=0),Jul 1 04:11:35,Normal
1620,1893916,15567096,Jul,1,04:11:36,combo,su(pam_unix),21530.0,session closed for user news,Jul 1 04:11:36,Normal
1623,1896966,15570146,Jul,1,05:02:26,combo,sshd(pam_unix),21691.0,session opened for user test by (uid=509),Jul 1 05:02:26,Normal
1621,1896966,15570146,Jul,1,05:02:26,combo,sshd(pam_unix),21689.0,session opened for user test by (uid=509),Jul 1 05:02:26,Normal
1622,1896966,15570146,Jul,1,05:02:26,combo,sshd(pam_unix),21689.0,session closed for user test,Jul 1 05:02:26,Normal
1624,1896966,15570146,Jul,1,05:02:26,combo,sshd(pam_unix),21691.0,session closed for user test,Jul 1 05:02:26,Normal
1625,1896966,15570146,Jul,1,05:02:26,combo,sshd(pam_unix),21692.0,session opened for user test by (uid=509),Jul 1 05:02:26,Normal
1626,1896966,15570146,Jul,1,05:02:26,combo,sshd(pam_unix),21692.0,session closed for user test,Jul 1 05:02:26,Normal
1628,1896967,15570147,Jul,1,05:02:27,combo,sshd(pam_unix),21693.0,session closed for user test,Jul 1 05:02:27,Normal
1627,1896967,15570147,Jul,1,05:02:27,combo,sshd(pam_unix),21693.0,session opened for user test by (uid=509),Jul 1 05:02:27,Normal
1631,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21957.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1637,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21958.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1647,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21947.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1648,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21942.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1649,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21938.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1650,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21949.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1651,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21939.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1644,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21943.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1629,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21952.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1638,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21945.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1639,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21959.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1632,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21953.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1633,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21954.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1634,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21955.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1635,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21950.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1636,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21956.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1645,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21944.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1646,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21948.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1643,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21937.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1640,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21940.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1641,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21941.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1642,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21946.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
1630,1907470,15580650,Jul,1,07:57:30,combo,ftpd,21951.0,connection from 202.82.200.188 () at Fri Jul 1 07:57:30 2005,Jul 1 07:57:30,Normal
|