File size: 144,346 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 1007 | LineNumber,RelativeTime,Timestamp,Month,Day,Time,Hostname,Process,PID,Message,RawDate,Label
6740,10447855,24121035,Oct,10,04:17:15,combo,su(pam_unix),17001.0,session opened for user news by (uid=0),Oct 10 04:17:15,Normal
6741,10447857,24121037,Oct,10,04:17:17,combo,su(pam_unix),17001.0,session closed for user news,Oct 10 04:17:17,Normal
6742,10453905,24127085,Oct,10,05:58:05,combo,sshd(pam_unix),17212.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=221.12.60.23 user=test,Oct 10 05:58:05,Anomaly
6743,10453906,24127086,Oct,10,05:58:06,combo,sshd(pam_unix),17217.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=221.12.60.23 user=test,Oct 10 05:58:06,Anomaly
6744,10453907,24127087,Oct,10,05:58:07,combo,sshd(pam_unix),17213.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=221.12.60.23 user=test,Oct 10 05:58:07,Anomaly
6745,10453908,24127088,Oct,10,05:58:08,combo,sshd(pam_unix),17209.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=221.12.60.23 user=test,Oct 10 05:58:08,Anomaly
6746,10453909,24127089,Oct,10,05:58:09,combo,sshd(pam_unix),17211.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=221.12.60.23 user=test,Oct 10 05:58:09,Anomaly
6747,10459262,24132442,Oct,10,07:27:22,combo,sshd(pam_unix),17395.0,session opened for user test by (uid=509),Oct 10 07:27:22,Normal
6748,10459308,24132488,Oct,10,07:28:08,combo,sshd(pam_unix),17426.0,session opened for user test by (uid=509),Oct 10 07:28:08,Normal
6749,10459344,24132524,Oct,10,07:28:44,combo,sshd(pam_unix),17458.0,session opened for user test by (uid=509),Oct 10 07:28:44,Normal
6751,10459418,24132598,Oct,10,07:29:58,combo,sshd(pam_unix),17492.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=iorganet3.teleson.ro,Oct 10 07:29:58,Anomaly
6750,10459418,24132598,Oct,10,07:29:58,combo,sshd(pam_unix),17492.0,check pass; user unknown,Oct 10 07:29:58,Normal
6752,10459424,24132604,Oct,10,07:30:04,combo,sshd(pam_unix),17395.0,session closed for user test,Oct 10 07:30:04,Normal
6753,10459674,24132854,Oct,10,07:34:14,combo,sshd(pam_unix),17458.0,session closed for user test,Oct 10 07:34:14,Normal
6754,10460043,24133223,Oct,10,07:40:23,combo,sshd(pam_unix),17540.0,session opened for user test by (uid=509),Oct 10 07:40:23,Normal
6755,10460157,24133337,Oct,10,07:42:17,combo,passwd(pam_unix),17569.0,authentication failure; logname=test uid=509 euid=0 tty= ruser= rhost= user=test,Oct 10 07:42:17,Anomaly
6756,10460169,24133349,Oct,10,07:42:29,combo,passwd(pam_unix),17571.0,authentication failure; logname=test uid=509 euid=0 tty= ruser= rhost= user=test,Oct 10 07:42:29,Anomaly
6757,10460211,24133391,Oct,10,07:43:11,combo,passwd(pam_unix),17573.0,password changed for test,Oct 10 07:43:11,Normal
6758,10460286,24133466,Oct,10,07:44:26,combo,wall,17578.0,wall: user test broadcasted 1 lines (36 chars),Oct 10 07:44:26,Normal
6759,10460790,24133970,Oct,10,07:52:50,combo,sshd(pam_unix),17540.0,session closed for user test,Oct 10 07:52:50,Normal
6760,10469768,24142948,Oct,10,10:22:28,combo,sshd(pam_unix),17426.0,session closed for user test,Oct 10 10:22:28,Normal
6761,10489952,24163132,Oct,10,15:58:52,combo,sshd(pam_unix),18522.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.69.8.78 user=test,Oct 10 15:58:52,Anomaly
6762,10489952,24163132,Oct,10,15:58:52,combo,sshd(pam_unix),18517.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.69.8.78 user=test,Oct 10 15:58:52,Anomaly
6763,10489953,24163133,Oct,10,15:58:53,combo,sshd(pam_unix),18516.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.69.8.78 user=test,Oct 10 15:58:53,Anomaly
6764,10489954,24163134,Oct,10,15:58:54,combo,sshd(pam_unix),18527.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.69.8.78 user=test,Oct 10 15:58:54,Anomaly
6766,10489954,24163134,Oct,10,15:58:54,combo,sshd(pam_unix),18521.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.69.8.78 user=test,Oct 10 15:58:54,Anomaly
6765,10489954,24163134,Oct,10,15:58:54,combo,sshd(pam_unix),18515.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.69.8.78 user=test,Oct 10 15:58:54,Anomaly
6767,10489955,24163135,Oct,10,15:58:55,combo,sshd(pam_unix),18518.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.69.8.78 user=test,Oct 10 15:58:55,Anomaly
6768,10489956,24163136,Oct,10,15:58:56,combo,sshd(pam_unix),18520.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.69.8.78 user=test,Oct 10 15:58:56,Anomaly
6769,10489957,24163137,Oct,10,15:58:57,combo,sshd(pam_unix),18519.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.69.8.78 user=test,Oct 10 15:58:57,Anomaly
6770,10489958,24163138,Oct,10,15:58:58,combo,sshd(pam_unix),18528.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.69.8.78 user=test,Oct 10 15:58:58,Anomaly
6771,10521652,24194832,Oct,11,00:47:12,combo,sshd(pam_unix),19903.0,session opened for user test by (uid=509),Oct 11 00:47:12,Normal
6772,10522253,24195433,Oct,11,00:57:13,combo,sshd(pam_unix),19980.0,session opened for user test by (uid=509),Oct 11 00:57:13,Normal
6773,10522685,24195865,Oct,11,01:04:25,combo,sshd(pam_unix),20047.0,session opened for user test by (uid=509),Oct 11 01:04:25,Normal
6774,10522710,24195890,Oct,11,01:04:50,combo,sshd(pam_unix),19980.0,session closed for user test,Oct 11 01:04:50,Normal
6775,10522753,24195933,Oct,11,01:05:33,combo,sshd(pam_unix),20083.0,session opened for user test by (uid=509),Oct 11 01:05:33,Normal
6776,10522847,24196027,Oct,11,01:07:07,combo,sshd(pam_unix),20047.0,session closed for user test,Oct 11 01:07:07,Normal
6777,10522850,24196030,Oct,11,01:07:10,combo,sshd(pam_unix),20083.0,session closed for user test,Oct 11 01:07:10,Normal
6778,10525802,24198982,Oct,11,01:56:22,combo,sshd(pam_unix),20229.0,session opened for user test by (uid=509),Oct 11 01:56:22,Normal
6779,10526078,24199258,Oct,11,02:00:58,combo,sshd(pam_unix),20295.0,session opened for user test by (uid=509),Oct 11 02:00:58,Normal
6780,10526325,24199505,Oct,11,02:05:05,combo,sshd(pam_unix),20295.0,session closed for user test,Oct 11 02:05:05,Normal
6781,10526541,24199721,Oct,11,02:08:41,combo,sshd(pam_unix),20229.0,session closed for user test,Oct 11 02:08:41,Normal
6782,10526795,24199975,Oct,11,02:12:55,combo,sshd(pam_unix),20638.0,session opened for user test by (uid=509),Oct 11 02:12:55,Normal
6783,10526952,24200132,Oct,11,02:15:32,combo,sshd(pam_unix),20682.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=81.196.56.79 user=test,Oct 11 02:15:32,Anomaly
6784,10526960,24200140,Oct,11,02:15:40,combo,sshd(pam_unix),20687.0,session opened for user test by (uid=509),Oct 11 02:15:40,Normal
6785,10526969,24200149,Oct,11,02:15:49,combo,sshd(pam_unix),20687.0,session closed for user test,Oct 11 02:15:49,Normal
6786,10527089,24200269,Oct,11,02:17:49,combo,sshd(pam_unix),20720.0,session opened for user test by (uid=509),Oct 11 02:17:49,Normal
6787,10527092,24200272,Oct,11,02:17:52,combo,sshd(pam_unix),20728.0,session opened for user test by (uid=509),Oct 11 02:17:52,Normal
6788,10527769,24200949,Oct,11,02:29:09,combo,sshd(pam_unix),20720.0,session closed for user test,Oct 11 02:29:09,Normal
6789,10528082,24201262,Oct,11,02:34:22,combo,sshd(pam_unix),20830.0,session opened for user test by (uid=509),Oct 11 02:34:22,Normal
6790,10528539,24201719,Oct,11,02:41:59,combo,sshd(pam_unix),20728.0,session closed for user test,Oct 11 02:41:59,Normal
6791,10529562,24202742,Oct,11,02:59:02,combo,sshd(pam_unix),19903.0,session closed for user test,Oct 11 02:59:02,Normal
6792,10529930,24203110,Oct,11,03:05:10,combo,sshd(pam_unix),20638.0,session closed for user test,Oct 11 03:05:10,Normal
6793,10531343,24204523,Oct,11,03:28:43,combo,sshd(pam_unix),20830.0,session closed for user test,Oct 11 03:28:43,Normal
6794,10531880,24205060,Oct,11,03:37:40,combo,sshd(pam_unix),21170.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=81.196.56.77 user=test,Oct 11 03:37:40,Anomaly
6795,10531897,24205077,Oct,11,03:37:57,combo,sshd(pam_unix),21172.0,session opened for user test by (uid=509),Oct 11 03:37:57,Normal
6796,10532444,24205624,Oct,11,03:47:04,combo,sshd(pam_unix),21172.0,session closed for user test,Oct 11 03:47:04,Normal
6797,10533501,24206681,Oct,11,04:04:41,combo,su(pam_unix),21601.0,session opened for user cyrus by (uid=0),Oct 11 04:04:41,Normal
6798,10533502,24206682,Oct,11,04:04:42,combo,su(pam_unix),21601.0,session closed for user cyrus,Oct 11 04:04:42,Normal
6799,10533504,24206684,Oct,11,04:04:44,combo,logrotate,,ALERT exited abnormally with [1],Oct 11 04:04:44,Normal
6800,10534706,24207886,Oct,11,04:24:46,combo,su(pam_unix),22874.0,session opened for user news by (uid=0),Oct 11 04:24:46,Normal
6801,10534708,24207888,Oct,11,04:24:48,combo,su(pam_unix),22874.0,session closed for user news,Oct 11 04:24:48,Normal
6807,10537604,24210784,Oct,11,05:13:04,combo,sshd(pam_unix),23066.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.32.209.188 user=root,Oct 11 05:13:04,Anomaly
6806,10537604,24210784,Oct,11,05:13:04,combo,sshd(pam_unix),23065.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.32.209.188 user=root,Oct 11 05:13:04,Anomaly
6803,10537604,24210784,Oct,11,05:13:04,combo,sshd(pam_unix),23067.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.32.209.188 user=root,Oct 11 05:13:04,Anomaly
6802,10537604,24210784,Oct,11,05:13:04,combo,sshd(pam_unix),23077.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.32.209.188 user=root,Oct 11 05:13:04,Anomaly
6804,10537604,24210784,Oct,11,05:13:04,combo,sshd(pam_unix),23068.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.32.209.188 user=root,Oct 11 05:13:04,Anomaly
6810,10537604,24210784,Oct,11,05:13:04,combo,sshd(pam_unix),23064.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.32.209.188 user=root,Oct 11 05:13:04,Anomaly
6808,10537604,24210784,Oct,11,05:13:04,combo,sshd(pam_unix),23079.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.32.209.188 user=root,Oct 11 05:13:04,Anomaly
6809,10537604,24210784,Oct,11,05:13:04,combo,sshd(pam_unix),23069.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.32.209.188 user=root,Oct 11 05:13:04,Anomaly
6805,10537604,24210784,Oct,11,05:13:04,combo,sshd(pam_unix),23078.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.32.209.188 user=root,Oct 11 05:13:04,Anomaly
6811,10537605,24210785,Oct,11,05:13:05,combo,sshd(pam_unix),23076.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.32.209.188 user=root,Oct 11 05:13:05,Anomaly
6812,10544011,24217191,Oct,11,06:59:51,combo,sshd(pam_unix),23279.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 06:59:51,Anomaly
6813,10544014,24217194,Oct,11,06:59:54,combo,sshd(pam_unix),23281.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 06:59:54,Anomaly
6814,10544015,24217195,Oct,11,06:59:55,combo,sshd(pam_unix),23283.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 06:59:55,Anomaly
6815,10544015,24217195,Oct,11,06:59:55,combo,sshd(pam_unix),23285.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 06:59:55,Anomaly
6816,10544020,24217200,Oct,11,07:00:00,combo,sshd(pam_unix),23287.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 07:00:00,Anomaly
6817,10544024,24217204,Oct,11,07:00:04,combo,sshd(pam_unix),23289.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 07:00:04,Anomaly
6820,10544025,24217205,Oct,11,07:00:05,combo,sshd(pam_unix),23296.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 07:00:05,Anomaly
6818,10544025,24217205,Oct,11,07:00:05,combo,sshd(pam_unix),23291.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 07:00:05,Anomaly
6819,10544025,24217205,Oct,11,07:00:05,combo,sshd(pam_unix),23292.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 07:00:05,Anomaly
6821,10544026,24217206,Oct,11,07:00:06,combo,sshd(pam_unix),23295.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 07:00:06,Anomaly
6823,10544030,24217210,Oct,11,07:00:10,combo,sshd(pam_unix),23300.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 07:00:10,Anomaly
6822,10544030,24217210,Oct,11,07:00:10,combo,sshd(pam_unix),23299.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 07:00:10,Anomaly
6824,10544035,24217215,Oct,11,07:00:15,combo,sshd(pam_unix),23310.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 07:00:15,Anomaly
6825,10544035,24217215,Oct,11,07:00:15,combo,sshd(pam_unix),23312.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 07:00:15,Anomaly
6827,10544037,24217217,Oct,11,07:00:17,combo,sshd(pam_unix),23311.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 07:00:17,Anomaly
6828,10544037,24217217,Oct,11,07:00:17,combo,sshd(pam_unix),23316.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 07:00:17,Anomaly
6826,10544037,24217217,Oct,11,07:00:17,combo,sshd(pam_unix),23317.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211-232-147-37.nexg.net user=root,Oct 11 07:00:17,Anomaly
6829,10550473,24223653,Oct,11,08:47:33,combo,sshd(pam_unix),23568.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.51.189.186 user=root,Oct 11 08:47:33,Anomaly
6830,10550473,24223653,Oct,11,08:47:33,combo,sshd(pam_unix),23567.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.51.189.186 user=root,Oct 11 08:47:33,Anomaly
6832,10552639,24225819,Oct,11,09:23:39,combo,sshd(pam_unix),23660.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.79.44.164,Oct 11 09:23:39,Anomaly
6835,10552639,24225819,Oct,11,09:23:39,combo,sshd(pam_unix),23659.0,check pass; user unknown,Oct 11 09:23:39,Normal
6836,10552639,24225819,Oct,11,09:23:39,combo,sshd(pam_unix),23659.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.79.44.164,Oct 11 09:23:39,Anomaly
6841,10552639,24225819,Oct,11,09:23:39,combo,sshd(pam_unix),23655.0,check pass; user unknown,Oct 11 09:23:39,Normal
6840,10552639,24225819,Oct,11,09:23:39,combo,sshd(pam_unix),23658.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.79.44.164,Oct 11 09:23:39,Anomaly
6838,10552639,24225819,Oct,11,09:23:39,combo,sshd(pam_unix),23657.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.79.44.164,Oct 11 09:23:39,Anomaly
6839,10552639,24225819,Oct,11,09:23:39,combo,sshd(pam_unix),23658.0,check pass; user unknown,Oct 11 09:23:39,Normal
6837,10552639,24225819,Oct,11,09:23:39,combo,sshd(pam_unix),23657.0,check pass; user unknown,Oct 11 09:23:39,Normal
6833,10552639,24225819,Oct,11,09:23:39,combo,sshd(pam_unix),23656.0,check pass; user unknown,Oct 11 09:23:39,Normal
6834,10552639,24225819,Oct,11,09:23:39,combo,sshd(pam_unix),23656.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.79.44.164,Oct 11 09:23:39,Anomaly
6831,10552639,24225819,Oct,11,09:23:39,combo,sshd(pam_unix),23660.0,check pass; user unknown,Oct 11 09:23:39,Normal
6842,10552639,24225819,Oct,11,09:23:39,combo,sshd(pam_unix),23655.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.79.44.164,Oct 11 09:23:39,Anomaly
6843,10611321,24284501,Oct,12,01:41:41,combo,sshd(pam_unix),26045.0,session opened for user test by (uid=509),Oct 12 01:41:41,Normal
6844,10611374,24284554,Oct,12,01:42:34,combo,passwd(pam_unix),26078.0,password changed for test,Oct 12 01:42:34,Normal
6845,10611375,24284555,Oct,12,01:42:35,combo,sshd(pam_unix),26075.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=88-213-181-81-cable.canals.ro user=test,Oct 12 01:42:35,Anomaly
6846,10611431,24284611,Oct,12,01:43:31,combo,sshd(pam_unix),26080.0,session opened for user test by (uid=509),Oct 12 01:43:31,Normal
6847,10611455,24284635,Oct,12,01:43:55,combo,sshd(pam_unix),26045.0,session closed for user test,Oct 12 01:43:55,Normal
6848,10611613,24284793,Oct,12,01:46:33,combo,sshd(pam_unix),26129.0,session opened for user test by (uid=509),Oct 12 01:46:33,Normal
6849,10612036,24285216,Oct,12,01:53:36,combo,sshd(pam_unix),26129.0,session closed for user test,Oct 12 01:53:36,Normal
6850,10612100,24285280,Oct,12,01:54:40,combo,sshd(pam_unix),26223.0,session opened for user test by (uid=509),Oct 12 01:54:40,Normal
6851,10612453,24285633,Oct,12,02:00:33,combo,sshd(pam_unix),26223.0,session closed for user test,Oct 12 02:00:33,Normal
6852,10615089,24288269,Oct,12,02:44:29,combo,sshd(pam_unix),26394.0,session opened for user test by (uid=509),Oct 12 02:44:29,Normal
6853,10618019,24291199,Oct,12,03:33:19,combo,sshd(pam_unix),26080.0,session closed for user test,Oct 12 03:33:19,Normal
6854,10618032,24291212,Oct,12,03:33:32,combo,sshd(pam_unix),26394.0,session closed for user test,Oct 12 03:33:32,Normal
6855,10618471,24291651,Oct,12,03:40:51,combo,sshd(pam_unix),26548.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=81.196.56.83 user=test,Oct 12 03:40:51,Anomaly
6856,10620142,24293322,Oct,12,04:08:42,combo,su(pam_unix),26957.0,session opened for user cyrus by (uid=0),Oct 12 04:08:42,Normal
6857,10620143,24293323,Oct,12,04:08:43,combo,su(pam_unix),26957.0,session closed for user cyrus,Oct 12 04:08:43,Normal
6858,10620145,24293325,Oct,12,04:08:45,combo,logrotate,,ALERT exited abnormally with [1],Oct 12 04:08:45,Normal
6859,10621974,24295154,Oct,12,04:39:14,combo,su(pam_unix),27425.0,session opened for user news by (uid=0),Oct 12 04:39:14,Normal
6860,10621977,24295157,Oct,12,04:39:17,combo,su(pam_unix),27425.0,session closed for user news,Oct 12 04:39:17,Normal
6861,10638286,24311466,Oct,12,09:11:06,combo,ftpd,28068.0,connection from 64.203.6.90 (user-10cm1iq.cable.mindspring.com) at Wed Oct 12 09:11:06 2005,Oct 12 09:11:06,Normal
6862,10639114,24312294,Oct,12,09:24:54,combo,sshd(pam_unix),28091.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.108.60.203 user=root,Oct 12 09:24:54,Anomaly
6863,10654979,24328159,Oct,12,13:49:19,combo,sshd(pam_unix),28667.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=81.196.56.67 user=test,Oct 12 13:49:19,Anomaly
6864,10655070,24328250,Oct,12,13:50:50,combo,sshd(pam_unix),28667.0,1 more authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=81.196.56.67 user=test,Oct 12 13:50:50,Anomaly
6869,10683972,24357152,Oct,12,21:52:32,combo,ftpd,29997.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:32 2005,Oct 12 21:52:32,Normal
6872,10683972,24357152,Oct,12,21:52:32,combo,ftpd,29991.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:32 2005,Oct 12 21:52:32,Normal
6874,10683972,24357152,Oct,12,21:52:32,combo,ftpd,29990.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:32 2005,Oct 12 21:52:32,Normal
6866,10683972,24357152,Oct,12,21:52:32,combo,ftpd,29998.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:32 2005,Oct 12 21:52:32,Normal
6867,10683972,24357152,Oct,12,21:52:32,combo,ftpd,29996.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:32 2005,Oct 12 21:52:32,Normal
6868,10683972,24357152,Oct,12,21:52:32,combo,ftpd,29987.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:32 2005,Oct 12 21:52:32,Normal
6876,10683972,24357152,Oct,12,21:52:32,combo,ftpd,29995.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:32 2005,Oct 12 21:52:32,Normal
6877,10683972,24357152,Oct,12,21:52:32,combo,ftpd,30000.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:32 2005,Oct 12 21:52:32,Normal
6878,10683972,24357152,Oct,12,21:52:32,combo,ftpd,29999.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:32 2005,Oct 12 21:52:32,Normal
6875,10683972,24357152,Oct,12,21:52:32,combo,ftpd,29994.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:32 2005,Oct 12 21:52:32,Normal
6870,10683972,24357152,Oct,12,21:52:32,combo,ftpd,29989.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:32 2005,Oct 12 21:52:32,Normal
6871,10683972,24357152,Oct,12,21:52:32,combo,ftpd,29992.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:32 2005,Oct 12 21:52:32,Normal
6873,10683972,24357152,Oct,12,21:52:32,combo,ftpd,29993.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:32 2005,Oct 12 21:52:32,Normal
6865,10683972,24357152,Oct,12,21:52:32,combo,ftpd,29988.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:32 2005,Oct 12 21:52:32,Normal
6880,10683973,24357153,Oct,12,21:52:33,combo,ftpd,30001.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:33 2005,Oct 12 21:52:33,Normal
6879,10683973,24357153,Oct,12,21:52:33,combo,ftpd,30002.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:33 2005,Oct 12 21:52:33,Normal
6881,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30004.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6887,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30009.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6888,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30011.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6889,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30014.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6890,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30015.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6891,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30013.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6892,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30012.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6893,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30017.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6894,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30016.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6895,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30019.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6897,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30020.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6898,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30021.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6899,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30022.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6896,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30018.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6882,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30006.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6883,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30005.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6884,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30008.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6886,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30007.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6885,10683975,24357155,Oct,12,21:52:35,combo,ftpd,30010.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:35 2005,Oct 12 21:52:35,Normal
6901,10683976,24357156,Oct,12,21:52:36,combo,ftpd,30025.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:36 2005,Oct 12 21:52:36,Normal
6902,10683976,24357156,Oct,12,21:52:36,combo,ftpd,30026.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:36 2005,Oct 12 21:52:36,Normal
6900,10683976,24357156,Oct,12,21:52:36,combo,ftpd,30023.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:36 2005,Oct 12 21:52:36,Normal
6903,10683976,24357156,Oct,12,21:52:36,combo,ftpd,30024.0,connection from 216.206.24.5 () at Wed Oct 12 21:52:36 2005,Oct 12 21:52:36,Normal
6904,10706285,24379465,Oct,13,04:04:25,combo,su(pam_unix),31196.0,session opened for user cyrus by (uid=0),Oct 13 04:04:25,Normal
6905,10706286,24379466,Oct,13,04:04:26,combo,su(pam_unix),31196.0,session closed for user cyrus,Oct 13 04:04:26,Normal
6906,10706289,24379469,Oct,13,04:04:29,combo,logrotate,,ALERT exited abnormally with [1],Oct 13 04:04:29,Normal
6907,10707058,24380238,Oct,13,04:17:18,combo,su(pam_unix),32446.0,session opened for user news by (uid=0),Oct 13 04:17:18,Normal
6908,10707059,24380239,Oct,13,04:17:19,combo,su(pam_unix),32446.0,session closed for user news,Oct 13 04:17:19,Normal
6917,10741068,24414248,Oct,13,13:44:08,combo,ftpd,980.0,connection from 210.21.220.88 (sym.gdsz.cncnet.net) at Thu Oct 13 13:44:08 2005,Oct 13 13:44:08,Normal
6916,10741068,24414248,Oct,13,13:44:08,combo,ftpd,982.0,connection from 210.21.220.88 (sym.gdsz.cncnet.net) at Thu Oct 13 13:44:08 2005,Oct 13 13:44:08,Normal
6915,10741068,24414248,Oct,13,13:44:08,combo,ftpd,981.0,connection from 210.21.220.88 (sym.gdsz.cncnet.net) at Thu Oct 13 13:44:08 2005,Oct 13 13:44:08,Normal
6913,10741068,24414248,Oct,13,13:44:08,combo,ftpd,985.0,connection from 210.21.220.88 (sym.gdsz.cncnet.net) at Thu Oct 13 13:44:08 2005,Oct 13 13:44:08,Normal
6918,10741068,24414248,Oct,13,13:44:08,combo,ftpd,984.0,connection from 210.21.220.88 (sym.gdsz.cncnet.net) at Thu Oct 13 13:44:08 2005,Oct 13 13:44:08,Normal
6920,10741068,24414248,Oct,13,13:44:08,combo,ftpd,977.0,connection from 210.21.220.88 (sym.gdsz.cncnet.net) at Thu Oct 13 13:44:08 2005,Oct 13 13:44:08,Normal
6919,10741068,24414248,Oct,13,13:44:08,combo,ftpd,978.0,connection from 210.21.220.88 (sym.gdsz.cncnet.net) at Thu Oct 13 13:44:08 2005,Oct 13 13:44:08,Normal
6910,10741068,24414248,Oct,13,13:44:08,combo,ftpd,988.0,connection from 210.21.220.88 (sym.gdsz.cncnet.net) at Thu Oct 13 13:44:08 2005,Oct 13 13:44:08,Normal
6911,10741068,24414248,Oct,13,13:44:08,combo,ftpd,983.0,connection from 210.21.220.88 (sym.gdsz.cncnet.net) at Thu Oct 13 13:44:08 2005,Oct 13 13:44:08,Normal
6912,10741068,24414248,Oct,13,13:44:08,combo,ftpd,986.0,connection from 210.21.220.88 (sym.gdsz.cncnet.net) at Thu Oct 13 13:44:08 2005,Oct 13 13:44:08,Normal
6909,10741068,24414248,Oct,13,13:44:08,combo,ftpd,987.0,connection from 210.21.220.88 (sym.gdsz.cncnet.net) at Thu Oct 13 13:44:08 2005,Oct 13 13:44:08,Normal
6914,10741068,24414248,Oct,13,13:44:08,combo,ftpd,979.0,connection from 210.21.220.88 (sym.gdsz.cncnet.net) at Thu Oct 13 13:44:08 2005,Oct 13 13:44:08,Normal
6923,10784770,24457950,Oct,14,01:52:30,combo,ftpd,2425.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:30 2005,Oct 14 01:52:30,Normal
6924,10784770,24457950,Oct,14,01:52:30,combo,ftpd,2422.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:30 2005,Oct 14 01:52:30,Normal
6921,10784770,24457950,Oct,14,01:52:30,combo,ftpd,2418.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:30 2005,Oct 14 01:52:30,Normal
6922,10784770,24457950,Oct,14,01:52:30,combo,ftpd,2423.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:30 2005,Oct 14 01:52:30,Normal
6925,10784770,24457950,Oct,14,01:52:30,combo,ftpd,2419.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:30 2005,Oct 14 01:52:30,Normal
6927,10784770,24457950,Oct,14,01:52:30,combo,ftpd,2421.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:30 2005,Oct 14 01:52:30,Normal
6926,10784770,24457950,Oct,14,01:52:30,combo,ftpd,2420.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:30 2005,Oct 14 01:52:30,Normal
6928,10784770,24457950,Oct,14,01:52:30,combo,ftpd,2424.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:30 2005,Oct 14 01:52:30,Normal
6937,10784771,24457951,Oct,14,01:52:31,combo,ftpd,2434.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:31 2005,Oct 14 01:52:31,Normal
6935,10784771,24457951,Oct,14,01:52:31,combo,ftpd,2433.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:31 2005,Oct 14 01:52:31,Normal
6934,10784771,24457951,Oct,14,01:52:31,combo,ftpd,2431.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:31 2005,Oct 14 01:52:31,Normal
6929,10784771,24457951,Oct,14,01:52:31,combo,ftpd,2427.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:31 2005,Oct 14 01:52:31,Normal
6932,10784771,24457951,Oct,14,01:52:31,combo,ftpd,2429.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:31 2005,Oct 14 01:52:31,Normal
6931,10784771,24457951,Oct,14,01:52:31,combo,ftpd,2428.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:31 2005,Oct 14 01:52:31,Normal
6930,10784771,24457951,Oct,14,01:52:31,combo,ftpd,2426.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:31 2005,Oct 14 01:52:31,Normal
6933,10784771,24457951,Oct,14,01:52:31,combo,ftpd,2430.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:31 2005,Oct 14 01:52:31,Normal
6936,10784771,24457951,Oct,14,01:52:31,combo,ftpd,2432.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:31 2005,Oct 14 01:52:31,Normal
6942,10784772,24457952,Oct,14,01:52:32,combo,ftpd,2439.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:32 2005,Oct 14 01:52:32,Normal
6939,10784772,24457952,Oct,14,01:52:32,combo,ftpd,2437.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:32 2005,Oct 14 01:52:32,Normal
6938,10784772,24457952,Oct,14,01:52:32,combo,ftpd,2435.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:32 2005,Oct 14 01:52:32,Normal
6941,10784772,24457952,Oct,14,01:52:32,combo,ftpd,2436.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:32 2005,Oct 14 01:52:32,Normal
6943,10784772,24457952,Oct,14,01:52:32,combo,ftpd,2440.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:32 2005,Oct 14 01:52:32,Normal
6940,10784772,24457952,Oct,14,01:52:32,combo,ftpd,2438.0,connection from 84.154.104.207 (p549A68CF.dip.t-dialin.net) at Fri Oct 14 01:52:32 2005,Oct 14 01:52:32,Normal
6945,10784887,24458067,Oct,14,01:54:27,combo,sshd(pam_unix),2448.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=www.lssu.edu user=test,Oct 14 01:54:27,Anomaly
6952,10784887,24458067,Oct,14,01:54:27,combo,sshd(pam_unix),2445.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=www.lssu.edu user=test,Oct 14 01:54:27,Anomaly
6950,10784887,24458067,Oct,14,01:54:27,combo,sshd(pam_unix),2456.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=www.lssu.edu user=test,Oct 14 01:54:27,Anomaly
6951,10784887,24458067,Oct,14,01:54:27,combo,sshd(pam_unix),2444.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=www.lssu.edu user=test,Oct 14 01:54:27,Anomaly
6949,10784887,24458067,Oct,14,01:54:27,combo,sshd(pam_unix),2458.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=www.lssu.edu user=test,Oct 14 01:54:27,Anomaly
6953,10784887,24458067,Oct,14,01:54:27,combo,sshd(pam_unix),2447.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=www.lssu.edu user=test,Oct 14 01:54:27,Anomaly
6947,10784887,24458067,Oct,14,01:54:27,combo,sshd(pam_unix),2461.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=www.lssu.edu user=test,Oct 14 01:54:27,Anomaly
6944,10784887,24458067,Oct,14,01:54:27,combo,sshd(pam_unix),2446.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=www.lssu.edu user=test,Oct 14 01:54:27,Anomaly
6946,10784887,24458067,Oct,14,01:54:27,combo,sshd(pam_unix),2454.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=www.lssu.edu user=test,Oct 14 01:54:27,Anomaly
6948,10784887,24458067,Oct,14,01:54:27,combo,sshd(pam_unix),2459.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=www.lssu.edu user=test,Oct 14 01:54:27,Anomaly
6954,10792652,24465832,Oct,14,04:03:52,combo,su(pam_unix),3154.0,session opened for user cyrus by (uid=0),Oct 14 04:03:52,Normal
6955,10792656,24465836,Oct,14,04:03:56,combo,su(pam_unix),3154.0,session closed for user cyrus,Oct 14 04:03:56,Normal
6956,10792657,24465837,Oct,14,04:03:57,combo,logrotate,,ALERT exited abnormally with [1],Oct 14 04:03:57,Normal
6957,10793520,24466700,Oct,14,04:18:20,combo,su(pam_unix),3563.0,session opened for user news by (uid=0),Oct 14 04:18:20,Normal
6958,10793521,24466701,Oct,14,04:18:21,combo,su(pam_unix),3563.0,session closed for user news,Oct 14 04:18:21,Normal
6968,10800775,24473955,Oct,14,06:19:15,combo,sshd(pam_unix),3894.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.23rhodes.net,Oct 14 06:19:15,Anomaly
6963,10800775,24473955,Oct,14,06:19:15,combo,sshd(pam_unix),3902.0,check pass; user unknown,Oct 14 06:19:15,Normal
6962,10800775,24473955,Oct,14,06:19:15,combo,sshd(pam_unix),3897.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.23rhodes.net,Oct 14 06:19:15,Anomaly
6959,10800775,24473955,Oct,14,06:19:15,combo,sshd(pam_unix),3898.0,check pass; user unknown,Oct 14 06:19:15,Normal
6964,10800775,24473955,Oct,14,06:19:15,combo,sshd(pam_unix),3902.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.23rhodes.net,Oct 14 06:19:15,Anomaly
6965,10800775,24473955,Oct,14,06:19:15,combo,sshd(pam_unix),3896.0,check pass; user unknown,Oct 14 06:19:15,Normal
6967,10800775,24473955,Oct,14,06:19:15,combo,sshd(pam_unix),3894.0,check pass; user unknown,Oct 14 06:19:15,Normal
6961,10800775,24473955,Oct,14,06:19:15,combo,sshd(pam_unix),3897.0,check pass; user unknown,Oct 14 06:19:15,Normal
6960,10800775,24473955,Oct,14,06:19:15,combo,sshd(pam_unix),3898.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.23rhodes.net,Oct 14 06:19:15,Anomaly
6966,10800775,24473955,Oct,14,06:19:15,combo,sshd(pam_unix),3896.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.23rhodes.net,Oct 14 06:19:15,Anomaly
6974,10805645,24478825,Oct,14,07:40:25,combo,ftpd,4162.0,connection from 213.54.172.95 (p213.54.172.95.tisdip.tiscali.de) at Fri Oct 14 07:40:25 2005,Oct 14 07:40:25,Normal
6977,10805645,24478825,Oct,14,07:40:25,combo,ftpd,4159.0,connection from 213.54.172.95 (p213.54.172.95.tisdip.tiscali.de) at Fri Oct 14 07:40:25 2005,Oct 14 07:40:25,Normal
6979,10805645,24478825,Oct,14,07:40:25,combo,ftpd,4163.0,connection from 213.54.172.95 (p213.54.172.95.tisdip.tiscali.de) at Fri Oct 14 07:40:25 2005,Oct 14 07:40:25,Normal
6975,10805645,24478825,Oct,14,07:40:25,combo,ftpd,4161.0,connection from 213.54.172.95 (p213.54.172.95.tisdip.tiscali.de) at Fri Oct 14 07:40:25 2005,Oct 14 07:40:25,Normal
6973,10805645,24478825,Oct,14,07:40:25,combo,ftpd,4157.0,connection from 213.54.172.95 (p213.54.172.95.tisdip.tiscali.de) at Fri Oct 14 07:40:25 2005,Oct 14 07:40:25,Normal
6972,10805645,24478825,Oct,14,07:40:25,combo,ftpd,4167.0,connection from 213.54.172.95 (p213.54.172.95.tisdip.tiscali.de) at Fri Oct 14 07:40:25 2005,Oct 14 07:40:25,Normal
6970,10805645,24478825,Oct,14,07:40:25,combo,ftpd,4165.0,connection from 213.54.172.95 (p213.54.172.95.tisdip.tiscali.de) at Fri Oct 14 07:40:25 2005,Oct 14 07:40:25,Normal
6976,10805645,24478825,Oct,14,07:40:25,combo,ftpd,4160.0,connection from 213.54.172.95 (p213.54.172.95.tisdip.tiscali.de) at Fri Oct 14 07:40:25 2005,Oct 14 07:40:25,Normal
6971,10805645,24478825,Oct,14,07:40:25,combo,ftpd,4166.0,connection from 213.54.172.95 (p213.54.172.95.tisdip.tiscali.de) at Fri Oct 14 07:40:25 2005,Oct 14 07:40:25,Normal
6969,10805645,24478825,Oct,14,07:40:25,combo,ftpd,4158.0,connection from 213.54.172.95 (p213.54.172.95.tisdip.tiscali.de) at Fri Oct 14 07:40:25 2005,Oct 14 07:40:25,Normal
6978,10805645,24478825,Oct,14,07:40:25,combo,ftpd,4164.0,connection from 213.54.172.95 (p213.54.172.95.tisdip.tiscali.de) at Fri Oct 14 07:40:25 2005,Oct 14 07:40:25,Normal
6980,10805647,24478827,Oct,14,07:40:27,combo,ftpd,4168.0,connection from 213.54.172.95 (p213.54.172.95.tisdip.tiscali.de) at Fri Oct 14 07:40:27 2005,Oct 14 07:40:27,Normal
6982,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5402.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.82.89.30,Oct 14 13:15:00,Anomaly
6983,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5390.0,check pass; user unknown,Oct 14 13:15:00,Normal
6988,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5388.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.82.89.30,Oct 14 13:15:00,Anomaly
6995,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5393.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.82.89.30,Oct 14 13:15:00,Anomaly
6986,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5400.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.82.89.30,Oct 14 13:15:00,Anomaly
6985,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5400.0,check pass; user unknown,Oct 14 13:15:00,Normal
6984,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5390.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.82.89.30,Oct 14 13:15:00,Anomaly
6990,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5389.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.82.89.30,Oct 14 13:15:00,Anomaly
6989,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5389.0,check pass; user unknown,Oct 14 13:15:00,Normal
6991,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5393.0,check pass; user unknown,Oct 14 13:15:00,Normal
6981,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5402.0,check pass; user unknown,Oct 14 13:15:00,Normal
6987,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5388.0,check pass; user unknown,Oct 14 13:15:00,Normal
6992,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5391.0,check pass; user unknown,Oct 14 13:15:00,Normal
6994,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5392.0,check pass; user unknown,Oct 14 13:15:00,Normal
6993,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5391.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.82.89.30,Oct 14 13:15:00,Anomaly
6997,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5392.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.82.89.30,Oct 14 13:15:00,Anomaly
6999,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5406.0,check pass; user unknown,Oct 14 13:15:00,Normal
6998,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5404.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.82.89.30,Oct 14 13:15:00,Anomaly
6996,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5404.0,check pass; user unknown,Oct 14 13:15:00,Normal
7000,10825720,24498900,Oct,14,13:15:00,combo,sshd(pam_unix),5406.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=65.82.89.30,Oct 14 13:15:00,Anomaly
7006,10878138,24551318,Oct,15,03:48:38,combo,sshd(pam_unix),8213.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.3-plan.ru user=root,Oct 15 03:48:38,Anomaly
7007,10878138,24551318,Oct,15,03:48:38,combo,sshd(pam_unix),8207.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.3-plan.ru user=root,Oct 15 03:48:38,Anomaly
7009,10878138,24551318,Oct,15,03:48:38,combo,sshd(pam_unix),8209.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.3-plan.ru user=root,Oct 15 03:48:38,Anomaly
7002,10878138,24551318,Oct,15,03:48:38,combo,sshd(pam_unix),8208.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.3-plan.ru user=root,Oct 15 03:48:38,Anomaly
7004,10878138,24551318,Oct,15,03:48:38,combo,sshd(pam_unix),8216.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.3-plan.ru user=root,Oct 15 03:48:38,Anomaly
7001,10878138,24551318,Oct,15,03:48:38,combo,sshd(pam_unix),8210.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.3-plan.ru user=root,Oct 15 03:48:38,Anomaly
7003,10878138,24551318,Oct,15,03:48:38,combo,sshd(pam_unix),8214.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.3-plan.ru user=root,Oct 15 03:48:38,Anomaly
7008,10878138,24551318,Oct,15,03:48:38,combo,sshd(pam_unix),8212.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.3-plan.ru user=root,Oct 15 03:48:38,Anomaly
7005,10878138,24551318,Oct,15,03:48:38,combo,sshd(pam_unix),8215.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.3-plan.ru user=root,Oct 15 03:48:38,Anomaly
7010,10878139,24551319,Oct,15,03:48:39,combo,sshd(pam_unix),8211.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.3-plan.ru user=root,Oct 15 03:48:39,Anomaly
7011,10879169,24552349,Oct,15,04:05:49,combo,su(pam_unix),8644.0,session opened for user cyrus by (uid=0),Oct 15 04:05:49,Normal
7012,10879174,24552354,Oct,15,04:05:54,combo,su(pam_unix),8644.0,session closed for user cyrus,Oct 15 04:05:54,Normal
7013,10879176,24552356,Oct,15,04:05:56,combo,logrotate,,ALERT exited abnormally with [1],Oct 15 04:05:56,Normal
7014,10879200,24552380,Oct,15,04:06:20,combo,sshd(pam_unix),8679.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=129.217.168.31 user=postfix,Oct 15 04:06:20,Anomaly
7015,10879200,24552380,Oct,15,04:06:20,combo,sshd(pam_unix),8687.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=129.217.168.31 user=postfix,Oct 15 04:06:20,Anomaly
7018,10879200,24552380,Oct,15,04:06:20,combo,sshd(pam_unix),8680.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=129.217.168.31 user=postfix,Oct 15 04:06:20,Anomaly
7017,10879200,24552380,Oct,15,04:06:20,combo,sshd(pam_unix),8678.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=129.217.168.31 user=postfix,Oct 15 04:06:20,Anomaly
7016,10879200,24552380,Oct,15,04:06:20,combo,sshd(pam_unix),8686.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=129.217.168.31 user=postfix,Oct 15 04:06:20,Anomaly
7019,10881371,24554551,Oct,15,04:42:31,combo,su(pam_unix),10082.0,session opened for user news by (uid=0),Oct 15 04:42:31,Normal
7020,10881372,24554552,Oct,15,04:42:32,combo,su(pam_unix),10082.0,session closed for user news,Oct 15 04:42:32,Normal
7021,10909949,24583129,Oct,15,12:38:49,combo,sshd(pam_unix),11763.0,check pass; user unknown,Oct 15 12:38:49,Normal
7023,10909949,24583129,Oct,15,12:38:49,combo,sshd(pam_unix),11766.0,check pass; user unknown,Oct 15 12:38:49,Normal
7035,10909949,24583129,Oct,15,12:38:49,combo,sshd(pam_unix),11765.0,check pass; user unknown,Oct 15 12:38:49,Normal
7022,10909949,24583129,Oct,15,12:38:49,combo,sshd(pam_unix),11763.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.78.215.9,Oct 15 12:38:49,Anomaly
7026,10909949,24583129,Oct,15,12:38:49,combo,sshd(pam_unix),11775.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.78.215.9,Oct 15 12:38:49,Anomaly
7028,10909949,24583129,Oct,15,12:38:49,combo,sshd(pam_unix),11761.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.78.215.9,Oct 15 12:38:49,Anomaly
7027,10909949,24583129,Oct,15,12:38:49,combo,sshd(pam_unix),11761.0,check pass; user unknown,Oct 15 12:38:49,Normal
7024,10909949,24583129,Oct,15,12:38:49,combo,sshd(pam_unix),11766.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.78.215.9,Oct 15 12:38:49,Anomaly
7025,10909949,24583129,Oct,15,12:38:49,combo,sshd(pam_unix),11775.0,check pass; user unknown,Oct 15 12:38:49,Normal
7031,10909949,24583129,Oct,15,12:38:49,combo,sshd(pam_unix),11764.0,check pass; user unknown,Oct 15 12:38:49,Normal
7030,10909949,24583129,Oct,15,12:38:49,combo,sshd(pam_unix),11774.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.78.215.9,Oct 15 12:38:49,Anomaly
7029,10909949,24583129,Oct,15,12:38:49,combo,sshd(pam_unix),11774.0,check pass; user unknown,Oct 15 12:38:49,Normal
7032,10909949,24583129,Oct,15,12:38:49,combo,sshd(pam_unix),11764.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.78.215.9,Oct 15 12:38:49,Anomaly
7034,10909949,24583129,Oct,15,12:38:49,combo,sshd(pam_unix),11773.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.78.215.9,Oct 15 12:38:49,Anomaly
7033,10909949,24583129,Oct,15,12:38:49,combo,sshd(pam_unix),11773.0,check pass; user unknown,Oct 15 12:38:49,Normal
7038,10909950,24583130,Oct,15,12:38:50,combo,sshd(pam_unix),11762.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.78.215.9,Oct 15 12:38:50,Anomaly
7036,10909950,24583130,Oct,15,12:38:50,combo,sshd(pam_unix),11765.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.78.215.9,Oct 15 12:38:50,Anomaly
7037,10909950,24583130,Oct,15,12:38:50,combo,sshd(pam_unix),11762.0,check pass; user unknown,Oct 15 12:38:50,Normal
7044,10921407,24594587,Oct,15,15:49:47,combo,sshd(pam_unix),12324.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:47,Anomaly
7040,10921407,24594587,Oct,15,15:49:47,combo,sshd(pam_unix),12314.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:47,Anomaly
7041,10921407,24594587,Oct,15,15:49:47,combo,sshd(pam_unix),12319.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:47,Anomaly
7042,10921407,24594587,Oct,15,15:49:47,combo,sshd(pam_unix),12313.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:47,Anomaly
7043,10921407,24594587,Oct,15,15:49:47,combo,sshd(pam_unix),12318.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:47,Anomaly
7039,10921407,24594587,Oct,15,15:49:47,combo,sshd(pam_unix),12322.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:47,Anomaly
7046,10921408,24594588,Oct,15,15:49:48,combo,sshd(pam_unix),12326.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:48,Anomaly
7047,10921408,24594588,Oct,15,15:49:48,combo,sshd(pam_unix),12328.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:48,Anomaly
7048,10921408,24594588,Oct,15,15:49:48,combo,sshd(pam_unix),12332.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:48,Anomaly
7045,10921408,24594588,Oct,15,15:49:48,combo,sshd(pam_unix),12325.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:48,Anomaly
7051,10921419,24594599,Oct,15,15:49:59,combo,sshd(pam_unix),12336.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:59,Anomaly
7053,10921419,24594599,Oct,15,15:49:59,combo,sshd(pam_unix),12341.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:59,Anomaly
7054,10921419,24594599,Oct,15,15:49:59,combo,sshd(pam_unix),12342.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:59,Anomaly
7052,10921419,24594599,Oct,15,15:49:59,combo,sshd(pam_unix),12340.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:59,Anomaly
7055,10921419,24594599,Oct,15,15:49:59,combo,sshd(pam_unix),12344.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:59,Anomaly
7050,10921419,24594599,Oct,15,15:49:59,combo,sshd(pam_unix),12335.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:59,Anomaly
7049,10921419,24594599,Oct,15,15:49:59,combo,sshd(pam_unix),12334.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:49:59,Anomaly
7056,10921420,24594600,Oct,15,15:50:00,combo,sshd(pam_unix),12348.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:00,Anomaly
7060,10921431,24594611,Oct,15,15:50:11,combo,sshd(pam_unix),12364.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:11,Anomaly
7058,10921431,24594611,Oct,15,15:50:11,combo,sshd(pam_unix),12358.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:11,Anomaly
7059,10921431,24594611,Oct,15,15:50:11,combo,sshd(pam_unix),12360.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:11,Anomaly
7063,10921431,24594611,Oct,15,15:50:11,combo,sshd(pam_unix),12368.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:11,Anomaly
7061,10921431,24594611,Oct,15,15:50:11,combo,sshd(pam_unix),12365.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:11,Anomaly
7064,10921431,24594611,Oct,15,15:50:11,combo,sshd(pam_unix),12372.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:11,Anomaly
7062,10921431,24594611,Oct,15,15:50:11,combo,sshd(pam_unix),12366.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:11,Anomaly
7057,10921431,24594611,Oct,15,15:50:11,combo,sshd(pam_unix),12359.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:11,Anomaly
7072,10921443,24594623,Oct,15,15:50:23,combo,sshd(pam_unix),12388.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:23,Anomaly
7065,10921443,24594623,Oct,15,15:50:23,combo,sshd(pam_unix),12375.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:23,Anomaly
7066,10921443,24594623,Oct,15,15:50:23,combo,sshd(pam_unix),12374.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:23,Anomaly
7070,10921443,24594623,Oct,15,15:50:23,combo,sshd(pam_unix),12382.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:23,Anomaly
7068,10921443,24594623,Oct,15,15:50:23,combo,sshd(pam_unix),12380.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:23,Anomaly
7071,10921443,24594623,Oct,15,15:50:23,combo,sshd(pam_unix),12384.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:23,Anomaly
7067,10921443,24594623,Oct,15,15:50:23,combo,sshd(pam_unix),12376.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:23,Anomaly
7069,10921443,24594623,Oct,15,15:50:23,combo,sshd(pam_unix),12381.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:23,Anomaly
7074,10921455,24594635,Oct,15,15:50:35,combo,sshd(pam_unix),12395.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:35,Anomaly
7073,10921455,24594635,Oct,15,15:50:35,combo,sshd(pam_unix),12400.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:35,Anomaly
7076,10921455,24594635,Oct,15,15:50:35,combo,sshd(pam_unix),12392.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:35,Anomaly
7075,10921455,24594635,Oct,15,15:50:35,combo,sshd(pam_unix),12390.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:35,Anomaly
7077,10921455,24594635,Oct,15,15:50:35,combo,sshd(pam_unix),12391.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:35,Anomaly
7080,10921455,24594635,Oct,15,15:50:35,combo,sshd(pam_unix),12404.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:35,Anomaly
7079,10921455,24594635,Oct,15,15:50:35,combo,sshd(pam_unix),12393.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:35,Anomaly
7078,10921455,24594635,Oct,15,15:50:35,combo,sshd(pam_unix),12394.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:35,Anomaly
7081,10921466,24594646,Oct,15,15:50:46,combo,sshd(pam_unix),12407.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:46,Anomaly
7088,10921467,24594647,Oct,15,15:50:47,combo,sshd(pam_unix),12420.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:47,Anomaly
7083,10921467,24594647,Oct,15,15:50:47,combo,sshd(pam_unix),12412.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:47,Anomaly
7082,10921467,24594647,Oct,15,15:50:47,combo,sshd(pam_unix),12409.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:47,Anomaly
7084,10921467,24594647,Oct,15,15:50:47,combo,sshd(pam_unix),12410.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:47,Anomaly
7086,10921467,24594647,Oct,15,15:50:47,combo,sshd(pam_unix),12411.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:47,Anomaly
7087,10921467,24594647,Oct,15,15:50:47,combo,sshd(pam_unix),12406.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:47,Anomaly
7085,10921467,24594647,Oct,15,15:50:47,combo,sshd(pam_unix),12408.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:47,Anomaly
7093,10921478,24594658,Oct,15,15:50:58,combo,sshd(pam_unix),12423.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:58,Anomaly
7095,10921478,24594658,Oct,15,15:50:58,combo,sshd(pam_unix),12424.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:58,Anomaly
7090,10921478,24594658,Oct,15,15:50:58,combo,sshd(pam_unix),12429.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:58,Anomaly
7094,10921478,24594658,Oct,15,15:50:58,combo,sshd(pam_unix),12427.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:58,Anomaly
7092,10921478,24594658,Oct,15,15:50:58,combo,sshd(pam_unix),12426.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:58,Anomaly
7091,10921478,24594658,Oct,15,15:50:58,combo,sshd(pam_unix),12428.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:58,Anomaly
7089,10921478,24594658,Oct,15,15:50:58,combo,sshd(pam_unix),12425.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:50:58,Anomaly
7100,10921490,24594670,Oct,15,15:51:10,combo,sshd(pam_unix),12442.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:51:10,Anomaly
7097,10921490,24594670,Oct,15,15:51:10,combo,sshd(pam_unix),12445.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:51:10,Anomaly
7096,10921490,24594670,Oct,15,15:51:10,combo,sshd(pam_unix),12440.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:51:10,Anomaly
7098,10921490,24594670,Oct,15,15:51:10,combo,sshd(pam_unix),12441.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:51:10,Anomaly
7099,10921490,24594670,Oct,15,15:51:10,combo,sshd(pam_unix),12439.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:51:10,Anomaly
7102,10921492,24594672,Oct,15,15:51:12,combo,sshd(pam_unix),12444.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:51:12,Anomaly
7101,10921492,24594672,Oct,15,15:51:12,combo,sshd(pam_unix),12443.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85.17.1.3 user=root,Oct 15 15:51:12,Anomaly
7103,10965745,24638925,Oct,16,04:08:45,combo,su(pam_unix),15434.0,session opened for user cyrus by (uid=0),Oct 16 04:08:45,Normal
7104,10965753,24638933,Oct,16,04:08:53,combo,su(pam_unix),15434.0,session closed for user cyrus,Oct 16 04:08:53,Normal
7105,10965770,24638950,Oct,16,04:09:10,combo,cups,,cupsd shutdown succeeded,Oct 16 04:09:10,Normal
7106,10965791,24638971,Oct,16,04:09:31,combo,cups,,cupsd startup succeeded,Oct 16 04:09:31,Normal
7108,10965966,24639146,Oct,16,04:12:26,combo,logrotate,,ALERT exited abnormally with [1],Oct 16 04:12:26,Normal
7109,10967516,24640696,Oct,16,04:38:16,combo,su(pam_unix),19376.0,session opened for user news by (uid=0),Oct 16 04:38:16,Normal
7110,10967517,24640697,Oct,16,04:38:17,combo,su(pam_unix),19376.0,session closed for user news,Oct 16 04:38:17,Normal
7116,10973629,24646809,Oct,16,06:20:09,combo,sshd(pam_unix),19776.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.206.193.55 user=root,Oct 16 06:20:09,Anomaly
7117,10973629,24646809,Oct,16,06:20:09,combo,sshd(pam_unix),19775.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.206.193.55 user=root,Oct 16 06:20:09,Anomaly
7114,10973629,24646809,Oct,16,06:20:09,combo,sshd(pam_unix),19773.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.206.193.55 user=root,Oct 16 06:20:09,Anomaly
7112,10973629,24646809,Oct,16,06:20:09,combo,sshd(pam_unix),19770.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.206.193.55 user=root,Oct 16 06:20:09,Anomaly
7115,10973629,24646809,Oct,16,06:20:09,combo,sshd(pam_unix),19772.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.206.193.55 user=root,Oct 16 06:20:09,Anomaly
7113,10973629,24646809,Oct,16,06:20:09,combo,sshd(pam_unix),19774.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.206.193.55 user=root,Oct 16 06:20:09,Anomaly
7111,10973629,24646809,Oct,16,06:20:09,combo,sshd(pam_unix),19771.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.206.193.55 user=root,Oct 16 06:20:09,Anomaly
7122,10995930,24669110,Oct,16,12:31:50,combo,ftpd,21288.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:50 2005,Oct 16 12:31:50,Normal
7131,10995930,24669110,Oct,16,12:31:50,combo,ftpd,21285.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:50 2005,Oct 16 12:31:50,Normal
7130,10995930,24669110,Oct,16,12:31:50,combo,ftpd,21279.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:50 2005,Oct 16 12:31:50,Normal
7123,10995930,24669110,Oct,16,12:31:50,combo,ftpd,21286.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:50 2005,Oct 16 12:31:50,Normal
7121,10995930,24669110,Oct,16,12:31:50,combo,ftpd,21287.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:50 2005,Oct 16 12:31:50,Normal
7124,10995930,24669110,Oct,16,12:31:50,combo,ftpd,21289.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:50 2005,Oct 16 12:31:50,Normal
7119,10995930,24669110,Oct,16,12:31:50,combo,ftpd,21277.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:50 2005,Oct 16 12:31:50,Normal
7127,10995930,24669110,Oct,16,12:31:50,combo,ftpd,21283.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:50 2005,Oct 16 12:31:50,Normal
7120,10995930,24669110,Oct,16,12:31:50,combo,ftpd,21282.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:50 2005,Oct 16 12:31:50,Normal
7126,10995930,24669110,Oct,16,12:31:50,combo,ftpd,21290.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:50 2005,Oct 16 12:31:50,Normal
7118,10995930,24669110,Oct,16,12:31:50,combo,ftpd,21278.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:50 2005,Oct 16 12:31:50,Normal
7129,10995930,24669110,Oct,16,12:31:50,combo,ftpd,21281.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:50 2005,Oct 16 12:31:50,Normal
7128,10995930,24669110,Oct,16,12:31:50,combo,ftpd,21284.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:50 2005,Oct 16 12:31:50,Normal
7125,10995930,24669110,Oct,16,12:31:50,combo,ftpd,21280.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:50 2005,Oct 16 12:31:50,Normal
7139,10995931,24669111,Oct,16,12:31:51,combo,ftpd,21298.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:51 2005,Oct 16 12:31:51,Normal
7132,10995931,24669111,Oct,16,12:31:51,combo,ftpd,21292.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:51 2005,Oct 16 12:31:51,Normal
7133,10995931,24669111,Oct,16,12:31:51,combo,ftpd,21293.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:51 2005,Oct 16 12:31:51,Normal
7134,10995931,24669111,Oct,16,12:31:51,combo,ftpd,21291.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:51 2005,Oct 16 12:31:51,Normal
7137,10995931,24669111,Oct,16,12:31:51,combo,ftpd,21297.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:51 2005,Oct 16 12:31:51,Normal
7140,10995931,24669111,Oct,16,12:31:51,combo,ftpd,21296.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:51 2005,Oct 16 12:31:51,Normal
7136,10995931,24669111,Oct,16,12:31:51,combo,ftpd,21295.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:51 2005,Oct 16 12:31:51,Normal
7135,10995931,24669111,Oct,16,12:31:51,combo,ftpd,21294.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:51 2005,Oct 16 12:31:51,Normal
7138,10995931,24669111,Oct,16,12:31:51,combo,ftpd,21299.0,connection from 211.107.232.1 () at Sun Oct 16 12:31:51 2005,Oct 16 12:31:51,Normal
7141,10997316,24670496,Oct,16,12:54:56,combo,sshd(pam_unix),21389.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.132.75.90 user=root,Oct 16 12:54:56,Anomaly
7143,10997316,24670496,Oct,16,12:54:56,combo,sshd(pam_unix),21393.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.132.75.90 user=root,Oct 16 12:54:56,Anomaly
7142,10997316,24670496,Oct,16,12:54:56,combo,sshd(pam_unix),21391.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.132.75.90 user=root,Oct 16 12:54:56,Anomaly
7146,10997318,24670498,Oct,16,12:54:58,combo,sshd(pam_unix),21397.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.132.75.90 user=root,Oct 16 12:54:58,Anomaly
7145,10997318,24670498,Oct,16,12:54:58,combo,sshd(pam_unix),21398.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.132.75.90 user=root,Oct 16 12:54:58,Anomaly
7144,10997318,24670498,Oct,16,12:54:58,combo,sshd(pam_unix),21395.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.132.75.90 user=root,Oct 16 12:54:58,Anomaly
7147,10997319,24670499,Oct,16,12:54:59,combo,sshd(pam_unix),21399.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.132.75.90 user=root,Oct 16 12:54:59,Anomaly
7148,10997320,24670500,Oct,16,12:55:00,combo,sshd(pam_unix),21403.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.132.75.90 user=root,Oct 16 12:55:00,Anomaly
7149,10997321,24670501,Oct,16,12:55:01,combo,sshd(pam_unix),21405.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.132.75.90 user=root,Oct 16 12:55:01,Anomaly
7150,10997325,24670505,Oct,16,12:55:05,combo,sshd(pam_unix),21408.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.132.75.90 user=root,Oct 16 12:55:05,Anomaly
7166,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23388.0,check pass; user unknown,Oct 16 21:24:07,Normal
7167,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23393.0,check pass; user unknown,Oct 16 21:24:07,Normal
7164,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23391.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85-95-176-2.saransk.ru,Oct 16 21:24:07,Anomaly
7162,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23391.0,check pass; user unknown,Oct 16 21:24:07,Normal
7161,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23399.0,check pass; user unknown,Oct 16 21:24:07,Normal
7160,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23392.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85-95-176-2.saransk.ru,Oct 16 21:24:07,Anomaly
7156,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23403.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85-95-176-2.saransk.ru,Oct 16 21:24:07,Anomaly
7151,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23390.0,check pass; user unknown,Oct 16 21:24:07,Normal
7157,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23394.0,check pass; user unknown,Oct 16 21:24:07,Normal
7152,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23390.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85-95-176-2.saransk.ru,Oct 16 21:24:07,Anomaly
7154,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23404.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85-95-176-2.saransk.ru,Oct 16 21:24:07,Anomaly
7155,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23403.0,check pass; user unknown,Oct 16 21:24:07,Normal
7159,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23392.0,check pass; user unknown,Oct 16 21:24:07,Normal
7165,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23399.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85-95-176-2.saransk.ru,Oct 16 21:24:07,Anomaly
7158,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23394.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85-95-176-2.saransk.ru,Oct 16 21:24:07,Anomaly
7153,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23404.0,check pass; user unknown,Oct 16 21:24:07,Normal
7163,11027867,24701047,Oct,16,21:24:07,combo,sshd(pam_unix),23389.0,check pass; user unknown,Oct 16 21:24:07,Normal
7168,11027868,24701048,Oct,16,21:24:08,combo,sshd(pam_unix),23389.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85-95-176-2.saransk.ru,Oct 16 21:24:08,Anomaly
7170,11027869,24701049,Oct,16,21:24:09,combo,sshd(pam_unix),23393.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85-95-176-2.saransk.ru,Oct 16 21:24:09,Anomaly
7169,11027869,24701049,Oct,16,21:24:09,combo,sshd(pam_unix),23388.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=85-95-176-2.saransk.ru,Oct 16 21:24:09,Anomaly
7171,11051995,24725175,Oct,17,04:06:15,combo,su(pam_unix),25443.0,session opened for user cyrus by (uid=0),Oct 17 04:06:15,Normal
7172,11051996,24725176,Oct,17,04:06:16,combo,su(pam_unix),25443.0,session closed for user cyrus,Oct 17 04:06:16,Normal
7173,11051997,24725177,Oct,17,04:06:17,combo,logrotate,,ALERT exited abnormally with [1],Oct 17 04:06:17,Normal
7174,11052976,24726156,Oct,17,04:22:36,combo,su(pam_unix),30143.0,session opened for user news by (uid=0),Oct 17 04:22:36,Normal
7175,11052977,24726157,Oct,17,04:22:37,combo,su(pam_unix),30143.0,session closed for user news,Oct 17 04:22:37,Normal
7177,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30824.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7178,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30836.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7176,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30837.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7193,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30839.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7192,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30840.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7188,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30830.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7189,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30834.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7196,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30842.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7195,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30843.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7191,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30828.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7194,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30841.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7190,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30831.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7184,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30823.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7186,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30832.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7187,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30833.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7182,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30829.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7183,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30835.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7180,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30826.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7181,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30825.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7185,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30827.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7179,11066252,24739432,Oct,17,08:03:52,combo,ftpd,30838.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:52 2005,Oct 17 08:03:52,Normal
7197,11066253,24739433,Oct,17,08:03:53,combo,ftpd,30844.0,connection from 61.33.224.81 () at Mon Oct 17 08:03:53 2005,Oct 17 08:03:53,Normal
7198,11138270,24811450,Oct,18,04:04:10,combo,su(pam_unix),1265.0,session opened for user cyrus by (uid=0),Oct 18 04:04:10,Normal
7200,11138271,24811451,Oct,18,04:04:11,combo,logrotate,,ALERT exited abnormally with [1],Oct 18 04:04:11,Normal
7199,11138271,24811451,Oct,18,04:04:11,combo,su(pam_unix),1265.0,session closed for user cyrus,Oct 18 04:04:11,Normal
7201,11138592,24811772,Oct,18,04:09:32,combo,su(pam_unix),1641.0,session opened for user news by (uid=0),Oct 18 04:09:32,Normal
7202,11138593,24811773,Oct,18,04:09:33,combo,su(pam_unix),1641.0,session closed for user news,Oct 18 04:09:33,Normal
7203,11224660,24897840,Oct,19,04:04:00,combo,su(pam_unix),4029.0,session opened for user cyrus by (uid=0),Oct 19 04:04:00,Normal
7205,11224661,24897841,Oct,19,04:04:01,combo,logrotate,,ALERT exited abnormally with [1],Oct 19 04:04:01,Normal
7204,11224661,24897841,Oct,19,04:04:01,combo,su(pam_unix),4029.0,session closed for user cyrus,Oct 19 04:04:01,Normal
7206,11225001,24898181,Oct,19,04:09:41,combo,su(pam_unix),5255.0,session opened for user news by (uid=0),Oct 19 04:09:41,Normal
7207,11225002,24898182,Oct,19,04:09:42,combo,su(pam_unix),5255.0,session closed for user news,Oct 19 04:09:42,Normal
7209,11311059,24984239,Oct,20,04:03:59,combo,su(pam_unix),7601.0,session closed for user cyrus,Oct 20 04:03:59,Normal
7208,11311059,24984239,Oct,20,04:03:59,combo,su(pam_unix),7601.0,session opened for user cyrus by (uid=0),Oct 20 04:03:59,Normal
7210,11311060,24984240,Oct,20,04:04:00,combo,logrotate,,ALERT exited abnormally with [1],Oct 20 04:04:00,Normal
7211,11311375,24984555,Oct,20,04:09:15,combo,su(pam_unix),7972.0,session opened for user news by (uid=0),Oct 20 04:09:15,Normal
7212,11311376,24984556,Oct,20,04:09:16,combo,su(pam_unix),7972.0,session closed for user news,Oct 20 04:09:16,Normal
7213,11315592,24988772,Oct,20,05:19:32,combo,telnetd,8116.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Oct 20 05:19:32,Normal
7216,11386167,25059347,Oct,21,00:55:47,combo,ftpd,9761.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:47 2005,Oct 21 00:55:47,Normal
7215,11386167,25059347,Oct,21,00:55:47,combo,ftpd,9763.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:47 2005,Oct 21 00:55:47,Normal
7214,11386167,25059347,Oct,21,00:55:47,combo,ftpd,9762.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:47 2005,Oct 21 00:55:47,Normal
7217,11386169,25059349,Oct,21,00:55:49,combo,ftpd,9764.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:49 2005,Oct 21 00:55:49,Normal
7221,11386169,25059349,Oct,21,00:55:49,combo,ftpd,9768.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:49 2005,Oct 21 00:55:49,Normal
7219,11386169,25059349,Oct,21,00:55:49,combo,ftpd,9765.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:49 2005,Oct 21 00:55:49,Normal
7218,11386169,25059349,Oct,21,00:55:49,combo,ftpd,9766.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:49 2005,Oct 21 00:55:49,Normal
7222,11386169,25059349,Oct,21,00:55:49,combo,ftpd,9769.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:49 2005,Oct 21 00:55:49,Normal
7230,11386169,25059349,Oct,21,00:55:49,combo,ftpd,9777.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:49 2005,Oct 21 00:55:49,Normal
7226,11386169,25059349,Oct,21,00:55:49,combo,ftpd,9771.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:49 2005,Oct 21 00:55:49,Normal
7220,11386169,25059349,Oct,21,00:55:49,combo,ftpd,9767.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:49 2005,Oct 21 00:55:49,Normal
7224,11386169,25059349,Oct,21,00:55:49,combo,ftpd,9774.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:49 2005,Oct 21 00:55:49,Normal
7225,11386169,25059349,Oct,21,00:55:49,combo,ftpd,9772.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:49 2005,Oct 21 00:55:49,Normal
7227,11386169,25059349,Oct,21,00:55:49,combo,ftpd,9775.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:49 2005,Oct 21 00:55:49,Normal
7228,11386169,25059349,Oct,21,00:55:49,combo,ftpd,9776.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:49 2005,Oct 21 00:55:49,Normal
7231,11386169,25059349,Oct,21,00:55:49,combo,ftpd,9778.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:49 2005,Oct 21 00:55:49,Normal
7223,11386169,25059349,Oct,21,00:55:49,combo,ftpd,9770.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:49 2005,Oct 21 00:55:49,Normal
7229,11386169,25059349,Oct,21,00:55:49,combo,ftpd,9773.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:49 2005,Oct 21 00:55:49,Normal
7233,11386170,25059350,Oct,21,00:55:50,combo,ftpd,9781.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:50 2005,Oct 21 00:55:50,Normal
7232,11386170,25059350,Oct,21,00:55:50,combo,ftpd,9779.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:50 2005,Oct 21 00:55:50,Normal
7234,11386170,25059350,Oct,21,00:55:50,combo,ftpd,9780.0,connection from 84.158.123.165 (p549E7BA5.dip.t-dialin.net) at Fri Oct 21 00:55:50 2005,Oct 21 00:55:50,Normal
7235,11388602,25061782,Oct,21,01:36:22,combo,sshd(pam_unix),9850.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=222.171.26.201 user=test,Oct 21 01:36:22,Anomaly
7236,11388602,25061782,Oct,21,01:36:22,combo,sshd(pam_unix),9843.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=222.171.26.201 user=test,Oct 21 01:36:22,Anomaly
7237,11388603,25061783,Oct,21,01:36:23,combo,sshd(pam_unix),9849.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=222.171.26.201 user=test,Oct 21 01:36:23,Anomaly
7238,11388604,25061784,Oct,21,01:36:24,combo,sshd(pam_unix),9857.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=222.171.26.201 user=test,Oct 21 01:36:24,Anomaly
7239,11388604,25061784,Oct,21,01:36:24,combo,sshd(pam_unix),9846.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=222.171.26.201 user=test,Oct 21 01:36:24,Anomaly
7240,11388605,25061785,Oct,21,01:36:25,combo,sshd(pam_unix),9851.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=222.171.26.201 user=test,Oct 21 01:36:25,Anomaly
7241,11388607,25061787,Oct,21,01:36:27,combo,sshd(pam_unix),9860.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=222.171.26.201 user=test,Oct 21 01:36:27,Anomaly
7242,11388607,25061787,Oct,21,01:36:27,combo,sshd(pam_unix),9855.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=222.171.26.201 user=test,Oct 21 01:36:27,Anomaly
7243,11388609,25061789,Oct,21,01:36:29,combo,sshd(pam_unix),9842.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=222.171.26.201 user=test,Oct 21 01:36:29,Anomaly
7244,11397016,25070196,Oct,21,03:56:36,combo,sshd(pam_unix),10084.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=solutions93.cobalt.com user=root,Oct 21 03:56:36,Anomaly
7247,11397016,25070196,Oct,21,03:56:36,combo,sshd(pam_unix),10090.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=solutions93.cobalt.com user=root,Oct 21 03:56:36,Anomaly
7246,11397016,25070196,Oct,21,03:56:36,combo,sshd(pam_unix),10088.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=solutions93.cobalt.com user=root,Oct 21 03:56:36,Anomaly
7245,11397016,25070196,Oct,21,03:56:36,combo,sshd(pam_unix),10085.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=solutions93.cobalt.com user=root,Oct 21 03:56:36,Anomaly
7249,11397016,25070196,Oct,21,03:56:36,combo,sshd(pam_unix),10092.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=solutions93.cobalt.com user=root,Oct 21 03:56:36,Anomaly
7248,11397016,25070196,Oct,21,03:56:36,combo,sshd(pam_unix),10089.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=solutions93.cobalt.com user=root,Oct 21 03:56:36,Anomaly
7250,11397024,25070204,Oct,21,03:56:44,combo,sshd(pam_unix),10076.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=solutions93.cobalt.com user=root,Oct 21 03:56:44,Anomaly
7251,11397024,25070204,Oct,21,03:56:44,combo,sshd(pam_unix),10078.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=solutions93.cobalt.com user=root,Oct 21 03:56:44,Anomaly
7253,11397024,25070204,Oct,21,03:56:44,combo,sshd(pam_unix),10080.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=solutions93.cobalt.com user=root,Oct 21 03:56:44,Anomaly
7252,11397024,25070204,Oct,21,03:56:44,combo,sshd(pam_unix),10079.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=solutions93.cobalt.com user=root,Oct 21 03:56:44,Anomaly
7254,11397443,25070623,Oct,21,04:03:43,combo,su(pam_unix),10454.0,session opened for user cyrus by (uid=0),Oct 21 04:03:43,Normal
7255,11397444,25070624,Oct,21,04:03:44,combo,su(pam_unix),10454.0,session closed for user cyrus,Oct 21 04:03:44,Normal
7256,11397445,25070625,Oct,21,04:03:45,combo,logrotate,,ALERT exited abnormally with [1],Oct 21 04:03:45,Normal
7257,11397789,25070969,Oct,21,04:09:29,combo,su(pam_unix),11680.0,session opened for user news by (uid=0),Oct 21 04:09:29,Normal
7258,11397790,25070970,Oct,21,04:09:30,combo,su(pam_unix),11680.0,session closed for user news,Oct 21 04:09:30,Normal
7271,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12233.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7270,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12222.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7275,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12227.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7276,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12226.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7274,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12231.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7273,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12221.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7269,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12223.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7272,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12230.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7268,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12239.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7267,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12220.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7262,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12225.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7261,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12235.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7263,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12228.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7264,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12237.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7277,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12229.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7278,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12232.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7260,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12224.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7259,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12234.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7265,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12236.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7266,11418357,25091537,Oct,21,09:52:17,combo,ftpd,12238.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:17 2005,Oct 21 09:52:17,Normal
7280,11418366,25091546,Oct,21,09:52:26,combo,ftpd,12242.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:26 2005,Oct 21 09:52:26,Normal
7281,11418366,25091546,Oct,21,09:52:26,combo,ftpd,12241.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:26 2005,Oct 21 09:52:26,Normal
7279,11418366,25091546,Oct,21,09:52:26,combo,ftpd,12240.0,connection from 87.133.253.158 (p5785FD9E.dip0.t-ipconnect.de) at Fri Oct 21 09:52:26 2005,Oct 21 09:52:26,Normal
7282,11478228,25151408,Oct,22,02:30:08,combo,telnetd,13901.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Oct 22 02:30:08,Normal
7283,11483827,25157007,Oct,22,04:03:27,combo,su(pam_unix),14379.0,session opened for user cyrus by (uid=0),Oct 22 04:03:27,Normal
7284,11483828,25157008,Oct,22,04:03:28,combo,su(pam_unix),14379.0,session closed for user cyrus,Oct 22 04:03:28,Normal
7285,11483829,25157009,Oct,22,04:03:29,combo,logrotate,,ALERT exited abnormally with [1],Oct 22 04:03:29,Normal
7286,11484151,25157331,Oct,22,04:08:51,combo,su(pam_unix),14750.0,session opened for user news by (uid=0),Oct 22 04:08:51,Normal
7287,11484152,25157332,Oct,22,04:08:52,combo,su(pam_unix),14750.0,session closed for user news,Oct 22 04:08:52,Normal
7288,11492751,25165931,Oct,22,06:32:11,combo,ftpd,14994.0,connection from 81.181.213.88 (88-213-181-81-cable.canals.ro) at Sat Oct 22 06:32:11 2005,Oct 22 06:32:11,Normal
7291,11512727,25185907,Oct,22,12:05:07,combo,sshd(pam_unix),15462.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.220.149.227 user=test,Oct 22 12:05:07,Anomaly
7294,11512727,25185907,Oct,22,12:05:07,combo,sshd(pam_unix),15468.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.220.149.227 user=test,Oct 22 12:05:07,Anomaly
7290,11512727,25185907,Oct,22,12:05:07,combo,sshd(pam_unix),15461.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.220.149.227 user=test,Oct 22 12:05:07,Anomaly
7292,11512727,25185907,Oct,22,12:05:07,combo,sshd(pam_unix),15460.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.220.149.227 user=test,Oct 22 12:05:07,Anomaly
7289,11512727,25185907,Oct,22,12:05:07,combo,sshd(pam_unix),15463.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.220.149.227 user=test,Oct 22 12:05:07,Anomaly
7293,11512727,25185907,Oct,22,12:05:07,combo,sshd(pam_unix),15466.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.220.149.227 user=test,Oct 22 12:05:07,Anomaly
7297,11512728,25185908,Oct,22,12:05:08,combo,sshd(pam_unix),15477.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.220.149.227 user=test,Oct 22 12:05:08,Anomaly
7295,11512728,25185908,Oct,22,12:05:08,combo,sshd(pam_unix),15471.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.220.149.227 user=test,Oct 22 12:05:08,Anomaly
7296,11512728,25185908,Oct,22,12:05:08,combo,sshd(pam_unix),15473.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.220.149.227 user=test,Oct 22 12:05:08,Anomaly
7298,11512728,25185908,Oct,22,12:05:08,combo,sshd(pam_unix),15475.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.220.149.227 user=test,Oct 22 12:05:08,Anomaly
7302,11560500,25233680,Oct,23,01:21:20,combo,sshd(pam_unix),16619.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=vit94-2-82-66-253-141.fbx.proxad.net,Oct 23 01:21:20,Anomaly
7300,11560500,25233680,Oct,23,01:21:20,combo,sshd(pam_unix),16620.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=vit94-2-82-66-253-141.fbx.proxad.net,Oct 23 01:21:20,Anomaly
7301,11560500,25233680,Oct,23,01:21:20,combo,sshd(pam_unix),16619.0,check pass; user unknown,Oct 23 01:21:20,Normal
7308,11560500,25233680,Oct,23,01:21:20,combo,sshd(pam_unix),16624.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=vit94-2-82-66-253-141.fbx.proxad.net,Oct 23 01:21:20,Anomaly
7304,11560500,25233680,Oct,23,01:21:20,combo,sshd(pam_unix),16622.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=vit94-2-82-66-253-141.fbx.proxad.net,Oct 23 01:21:20,Anomaly
7305,11560500,25233680,Oct,23,01:21:20,combo,sshd(pam_unix),16631.0,check pass; user unknown,Oct 23 01:21:20,Normal
7309,11560500,25233680,Oct,23,01:21:20,combo,sshd(pam_unix),16621.0,check pass; user unknown,Oct 23 01:21:20,Normal
7310,11560500,25233680,Oct,23,01:21:20,combo,sshd(pam_unix),16621.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=vit94-2-82-66-253-141.fbx.proxad.net,Oct 23 01:21:20,Anomaly
7299,11560500,25233680,Oct,23,01:21:20,combo,sshd(pam_unix),16620.0,check pass; user unknown,Oct 23 01:21:20,Normal
7303,11560500,25233680,Oct,23,01:21:20,combo,sshd(pam_unix),16622.0,check pass; user unknown,Oct 23 01:21:20,Normal
7306,11560500,25233680,Oct,23,01:21:20,combo,sshd(pam_unix),16631.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=vit94-2-82-66-253-141.fbx.proxad.net,Oct 23 01:21:20,Anomaly
7307,11560500,25233680,Oct,23,01:21:20,combo,sshd(pam_unix),16624.0,check pass; user unknown,Oct 23 01:21:20,Normal
7312,11560501,25233681,Oct,23,01:21:21,combo,sshd(pam_unix),16630.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=vit94-2-82-66-253-141.fbx.proxad.net,Oct 23 01:21:21,Anomaly
7313,11560501,25233681,Oct,23,01:21:21,combo,sshd(pam_unix),16632.0,check pass; user unknown,Oct 23 01:21:21,Normal
7314,11560501,25233681,Oct,23,01:21:21,combo,sshd(pam_unix),16632.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=vit94-2-82-66-253-141.fbx.proxad.net,Oct 23 01:21:21,Anomaly
7311,11560501,25233681,Oct,23,01:21:21,combo,sshd(pam_unix),16630.0,check pass; user unknown,Oct 23 01:21:21,Normal
7317,11560502,25233682,Oct,23,01:21:22,combo,sshd(pam_unix),16637.0,check pass; user unknown,Oct 23 01:21:22,Normal
7315,11560502,25233682,Oct,23,01:21:22,combo,sshd(pam_unix),16629.0,check pass; user unknown,Oct 23 01:21:22,Normal
7316,11560502,25233682,Oct,23,01:21:22,combo,sshd(pam_unix),16629.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=vit94-2-82-66-253-141.fbx.proxad.net,Oct 23 01:21:22,Anomaly
7318,11560502,25233682,Oct,23,01:21:22,combo,sshd(pam_unix),16637.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=vit94-2-82-66-253-141.fbx.proxad.net,Oct 23 01:21:22,Anomaly
7319,11570231,25243411,Oct,23,04:03:31,combo,su(pam_unix),17202.0,session opened for user cyrus by (uid=0),Oct 23 04:03:31,Normal
7320,11570231,25243411,Oct,23,04:03:31,combo,su(pam_unix),17202.0,session closed for user cyrus,Oct 23 04:03:31,Normal
7321,11570234,25243414,Oct,23,04:03:34,combo,cups,,cupsd shutdown succeeded,Oct 23 04:03:34,Normal
7322,11570240,25243420,Oct,23,04:03:40,combo,cups,,cupsd startup succeeded,Oct 23 04:03:40,Normal
7324,11570244,25243424,Oct,23,04:03:44,combo,logrotate,,ALERT exited abnormally with [1],Oct 23 04:03:44,Normal
7325,11570614,25243794,Oct,23,04:09:54,combo,su(pam_unix),18652.0,session opened for user news by (uid=0),Oct 23 04:09:54,Normal
7326,11570615,25243795,Oct,23,04:09:55,combo,su(pam_unix),18652.0,session closed for user news,Oct 23 04:09:55,Normal
7327,11601200,25274380,Oct,23,12:39:40,combo,fingerd,22508.0,Client hung up - probable port-scan,Oct 23 12:39:40,Normal
7329,11601206,25274386,Oct,23,12:39:46,combo,rsyncd,22517.0,rsync error: error in rsync protocol data stream (code 12) at io.c(342),Oct 23 12:39:46,Anomaly
7328,11601206,25274386,Oct,23,12:39:46,combo,rsyncd,22517.0,rsync: connection unexpectedly closed (0 bytes read so far),Oct 23 12:39:46,Normal
7330,11601209,25274389,Oct,23,12:39:49,combo,telnetd,22510.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Oct 23 12:39:49,Normal
7331,11601209,25274389,Oct,23,12:39:49,combo,cups-lpd,22514.0,Connection from 88-213-181-81-cable.canals.ro (81.181.213.88),Oct 23 12:39:49,Normal
7332,11601210,25274390,Oct,23,12:39:50,combo,in.rexecd,22511.0,connect from 88-213-181-81-cable.canals.ro,Oct 23 12:39:50,Normal
7333,11601217,25274397,Oct,23,12:39:57,combo,ftpd,22509.0,connection from 81.181.213.88 (88-213-181-81-cable.canals.ro) at Sun Oct 23 12:39:57 2005,Oct 23 12:39:57,Normal
7334,11601221,25274401,Oct,23,12:40:01,combo,snmpd,2293.0,[smux_accept] accepted fd 12 from 81.181.213.88:1896,Oct 23 12:40:01,Normal
7336,11601222,25274402,Oct,23,12:40:02,combo,klogind,22519.0,Authentication failed from 81.181.213.88 (88-213-181-81-cable.canals.ro): Software caused connection abort,Oct 23 12:40:02,Anomaly
7335,11601222,25274402,Oct,23,12:40:02,combo,cups-lpd,22514.0,Unable to get command line from client!,Oct 23 12:40:02,Anomaly
7337,11601222,25274402,Oct,23,12:40:02,combo,klogind,22519.0,Kerberos authentication failed,Oct 23 12:40:02,Anomaly
7339,11601230,25274410,Oct,23,12:40:10,combo,klogind,22527.0,Kerberos authentication failed,Oct 23 12:40:10,Anomaly
7338,11601230,25274410,Oct,23,12:40:10,combo,klogind,22527.0,Authentication failed from 81.181.213.88 (88-213-181-81-cable.canals.ro): Software caused connection abort,Oct 23 12:40:10,Anomaly
7340,11601231,25274411,Oct,23,12:40:11,combo,rshd,22513.0,Connection from 81.181.213.88 on illegal port,Oct 23 12:40:11,Anomaly
7341,11601239,25274419,Oct,23,12:40:19,combo,rlogind,22512.0,Connection from 81.181.213.88 on illegal port,Oct 23 12:40:19,Anomaly
7342,11631485,25304665,Oct,23,21:04:25,combo,telnetd,23220.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Oct 23 21:04:25,Normal
7343,11656840,25330020,Oct,24,04:07:00,combo,su(pam_unix),24145.0,session opened for user cyrus by (uid=0),Oct 24 04:07:00,Normal
7344,11656840,25330020,Oct,24,04:07:00,combo,su(pam_unix),24145.0,session closed for user cyrus,Oct 24 04:07:00,Normal
7345,11656841,25330021,Oct,24,04:07:01,combo,logrotate,,ALERT exited abnormally with [1],Oct 24 04:07:01,Normal
7346,11657170,25330350,Oct,24,04:12:30,combo,su(pam_unix),24519.0,session opened for user news by (uid=0),Oct 24 04:12:30,Normal
7347,11657171,25330351,Oct,24,04:12:31,combo,su(pam_unix),24519.0,session closed for user news,Oct 24 04:12:31,Normal
7348,11664021,25337201,Oct,24,06:06:41,combo,sshd(pam_unix),24728.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=88-213-181-81-cable.canals.ro user=root,Oct 24 06:06:41,Anomaly
7349,11664030,25337210,Oct,24,06:06:50,combo,sshd(pam_unix),24728.0,1 more authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=88-213-181-81-cable.canals.ro user=root,Oct 24 06:06:50,Anomaly
7350,11687515,25360695,Oct,24,12:38:15,combo,sshd(pam_unix),25263.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:38:15,Anomaly
7351,11687524,25360704,Oct,24,12:38:24,combo,sshd(pam_unix),25265.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:38:24,Anomaly
7352,11687527,25360707,Oct,24,12:38:27,combo,sshd(pam_unix),25267.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:38:27,Anomaly
7353,11687534,25360714,Oct,24,12:38:34,combo,sshd(pam_unix),25269.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:38:34,Anomaly
7354,11687538,25360718,Oct,24,12:38:38,combo,sshd(pam_unix),25271.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:38:38,Anomaly
7355,11687545,25360725,Oct,24,12:38:45,combo,sshd(pam_unix),25273.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:38:45,Anomaly
7356,11687548,25360728,Oct,24,12:38:48,combo,sshd(pam_unix),25275.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:38:48,Anomaly
7357,11687554,25360734,Oct,24,12:38:54,combo,sshd(pam_unix),25277.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:38:54,Anomaly
7358,11687558,25360738,Oct,24,12:38:58,combo,sshd(pam_unix),25279.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:38:58,Anomaly
7359,11687564,25360744,Oct,24,12:39:04,combo,sshd(pam_unix),25281.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:39:04,Anomaly
7360,11687567,25360747,Oct,24,12:39:07,combo,sshd(pam_unix),25283.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:39:07,Anomaly
7361,11687574,25360754,Oct,24,12:39:14,combo,sshd(pam_unix),25285.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:39:14,Anomaly
7362,11687577,25360757,Oct,24,12:39:17,combo,sshd(pam_unix),25287.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:39:17,Anomaly
7363,11687584,25360764,Oct,24,12:39:24,combo,sshd(pam_unix),25289.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:39:24,Anomaly
7364,11687587,25360767,Oct,24,12:39:27,combo,sshd(pam_unix),25291.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:39:27,Anomaly
7365,11687588,25360768,Oct,24,12:39:28,combo,sshd(pam_unix),25293.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:39:28,Anomaly
7366,11687594,25360774,Oct,24,12:39:34,combo,sshd(pam_unix),25295.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:39:34,Anomaly
7367,11687597,25360777,Oct,24,12:39:37,combo,sshd(pam_unix),25297.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:39:37,Anomaly
7368,11687598,25360778,Oct,24,12:39:38,combo,sshd(pam_unix),25299.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:39:38,Anomaly
7369,11687604,25360784,Oct,24,12:39:44,combo,sshd(pam_unix),25301.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:39:44,Anomaly
7370,11687605,25360785,Oct,24,12:39:45,combo,sshd(pam_unix),25303.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:39:45,Anomaly
7371,11687607,25360787,Oct,24,12:39:47,combo,sshd(pam_unix),25305.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:39:47,Anomaly
7372,11687608,25360788,Oct,24,12:39:48,combo,sshd(pam_unix),25307.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=customer-201-134-69-250.uninet-ide.com.mx user=fax,Oct 24 12:39:48,Anomaly
7374,11743060,25416240,Oct,25,04:04:00,combo,su(pam_unix),26934.0,session closed for user cyrus,Oct 25 04:04:00,Normal
7373,11743060,25416240,Oct,25,04:04:00,combo,su(pam_unix),26934.0,session opened for user cyrus by (uid=0),Oct 25 04:04:00,Normal
7375,11743061,25416241,Oct,25,04:04:01,combo,logrotate,,ALERT exited abnormally with [1],Oct 25 04:04:01,Normal
7376,11743424,25416604,Oct,25,04:10:04,combo,su(pam_unix),28166.0,session opened for user news by (uid=0),Oct 25 04:10:04,Normal
7377,11743426,25416606,Oct,25,04:10:06,combo,su(pam_unix),28166.0,session closed for user news,Oct 25 04:10:06,Normal
7378,11757766,25430946,Oct,25,08:09:06,combo,sshd(pam_unix),28540.0,session opened for user root by (uid=0),Oct 25 08:09:06,Normal
7379,11757927,25431107,Oct,25,08:11:47,combo,su(pam_unix),28595.0,session opened for user test by root(uid=0),Oct 25 08:11:47,Normal
7380,11757957,25431137,Oct,25,08:12:17,combo,su(pam_unix),28595.0,session closed for user test,Oct 25 08:12:17,Normal
7382,11764782,25437962,Oct,25,10:06:02,combo,init,,Switching to runlevel: 6,Oct 25 10:06:02,Normal
7381,11764782,25437962,Oct,25,10:06:02,combo,shutdown,,shutting down for system reboot,Oct 25 10:06:02,Anomaly
7383,11764783,25437963,Oct,25,10:06:03,combo,sshd(pam_unix),28540.0,session closed for user root,Oct 25 10:06:03,Normal
7388,11764784,25437964,Oct,25,10:06:04,combo,udev,28929.0,removing device node '/udev/vcs5',Oct 25 10:06:04,Normal
7393,11764784,25437964,Oct,25,10:06:04,combo,udev,28932.0,removing device node '/udev/vcsa6',Oct 25 10:06:04,Normal
7387,11764784,25437964,Oct,25,10:06:04,combo,udev,28923.0,removing device node '/udev/vcs2',Oct 25 10:06:04,Normal
7384,11764784,25437964,Oct,25,10:06:04,combo,udev,28925.0,removing device node '/udev/vcs3',Oct 25 10:06:04,Normal
7389,11764784,25437964,Oct,25,10:06:04,combo,udev,28928.0,removing device node '/udev/vcsa4',Oct 25 10:06:04,Normal
7391,11764784,25437964,Oct,25,10:06:04,combo,udev,28930.0,removing device node '/udev/vcsa5',Oct 25 10:06:04,Normal
7386,11764784,25437964,Oct,25,10:06:04,combo,udev,28927.0,removing device node '/udev/vcs4',Oct 25 10:06:04,Normal
7392,11764784,25437964,Oct,25,10:06:04,combo,udev,28931.0,removing device node '/udev/vcs6',Oct 25 10:06:04,Normal
7385,11764784,25437964,Oct,25,10:06:04,combo,udev,28926.0,removing device node '/udev/vcsa3',Oct 25 10:06:04,Normal
7390,11764784,25437964,Oct,25,10:06:04,combo,udev,28924.0,removing device node '/udev/vcsa2',Oct 25 10:06:04,Normal
7394,11764788,25437968,Oct,25,10:06:08,combo,udev,28981.0,removing device node '/udev/vcs7',Oct 25 10:06:08,Normal
7395,11764788,25437968,Oct,25,10:06:08,combo,udev,28992.0,removing device node '/udev/vcsa7',Oct 25 10:06:08,Normal
7396,11764789,25437969,Oct,25,10:06:09,combo,messagebus,,messagebus -TERM succeeded,Oct 25 10:06:09,Normal
7398,11764790,25437970,Oct,25,10:06:10,combo,gpm,2071.0,imps2: Auto-detected intellimouse PS/2,Oct 25 10:06:10,Normal
7397,11764790,25437970,Oct,25,10:06:10,combo,gpm,2071.0,*** info [mice.c(1766)]:,Oct 25 10:06:10,Normal
7399,11764791,25437971,Oct,25,10:06:11,combo,atd,,atd shutdown succeeded,Oct 25 10:06:11,Normal
7400,11764792,25437972,Oct,25,10:06:12,combo,privoxy,,privoxy shutdown succeeded,Oct 25 10:06:12,Normal
7401,11764792,25437972,Oct,25,10:06:12,combo,cups,,cupsd shutdown succeeded,Oct 25 10:06:12,Normal
7402,11764793,25437973,Oct,25,10:06:13,combo,xfs,2155.0,terminating,Oct 25 10:06:13,Normal
7405,11764794,25437974,Oct,25,10:06:14,combo,cannaserver,2105.0,irw_killserver:cannaserver end,Oct 25 10:06:14,Normal
7404,11764794,25437974,Oct,25,10:06:14,combo,FreeWnn,,jserver shutdown succeeded,Oct 25 10:06:14,Normal
7406,11764794,25437974,Oct,25,10:06:14,combo,canna,,Stopping Canna server: succeeded,Oct 25 10:06:14,Normal
7403,11764794,25437974,Oct,25,10:06:14,combo,xfs,,xfs shutdown succeeded,Oct 25 10:06:14,Normal
7407,11764795,25437975,Oct,25,10:06:15,combo,mysqld,,Stopping MySQL: succeeded,Oct 25 10:06:15,Normal
7408,11764796,25437976,Oct,25,10:06:16,combo,gpm,,gpm shutdown succeeded,Oct 25 10:06:16,Normal
7409,11764801,25437981,Oct,25,10:06:21,combo,httpd,,httpd shutdown succeeded,Oct 25 10:06:21,Normal
7410,11764802,25437982,Oct,25,10:06:22,combo,squid,,Stopping squid:,Oct 25 10:06:22,Normal
7411,11764804,25437984,Oct,25,10:06:24,combo,squid,,.,Oct 25 10:06:24,Normal
7413,11764833,25438013,Oct,25,10:06:53,combo,squid,2265.0,Squid Parent: child process 2267 exited with status 0,Oct 25 10:06:53,Normal
7418,11764834,25438014,Oct,25,10:06:54,combo,sshd,,sshd -TERM succeeded,Oct 25 10:06:54,Normal
7417,11764834,25438014,Oct,25,10:06:54,combo,rc,,Stopping squid: succeeded,Oct 25 10:06:54,Normal
7414,11764834,25438014,Oct,25,10:06:54,combo,squid,,.,Oct 25 10:06:54,Normal
7415,11764834,25438014,Oct,25,10:06:54,combo,squid,,^[[60G[ ^[[0;32m,Oct 25 10:06:54,Normal
7420,11764835,25438015,Oct,25,10:06:55,combo,sendmail,,sm-client shutdown succeeded,Oct 25 10:06:55,Normal
7419,11764835,25438015,Oct,25,10:06:55,combo,sendmail,,sendmail shutdown succeeded,Oct 25 10:06:55,Normal
7422,11764839,25438019,Oct,25,10:06:59,combo,smartd,1760.0,smartd received signal 15: Terminated,Oct 25 10:06:59,Normal
7421,11764839,25438019,Oct,25,10:06:59,combo,spamassassin,,spamd shutdown succeeded,Oct 25 10:06:59,Normal
7423,11764839,25438019,Oct,25,10:06:59,combo,smartd,1760.0,smartd is exiting (exit status 0),Oct 25 10:06:59,Normal
7424,11764840,25438020,Oct,25,10:07:00,combo,smartd,,smartd shutdown succeeded,Oct 25 10:07:00,Normal
7451,11764845,25438025,Oct,25,10:07:05,combo,named,,named shutdown succeeded,Oct 25 10:07:05,Normal
7452,11764845,25438025,Oct,25,10:07:05,combo,snmpd,2293.0,Received TERM or STOP signal... shutting down...,Oct 25 10:07:05,Anomaly
7453,11764846,25438026,Oct,25,10:07:06,combo,snmpd,,snmpd shutdown succeeded,Oct 25 10:07:06,Normal
7454,11764846,25438026,Oct,25,10:07:06,combo,xinetd,2006.0,Exiting...,Oct 25 10:07:06,Normal
7455,11764847,25438027,Oct,25,10:07:07,combo,xinetd,,xinetd shutdown succeeded,Oct 25 10:07:07,Normal
7457,11764848,25438028,Oct,25,10:07:08,combo,apmd,1720.0,Exiting,Oct 25 10:07:08,Normal
7456,11764848,25438028,Oct,25,10:07:08,combo,crond,,crond shutdown succeeded,Oct 25 10:07:08,Normal
7458,11764849,25438029,Oct,25,10:07:09,combo,apmd,,apmd shutdown succeeded,Oct 25 10:07:09,Normal
7462,11764849,25438029,Oct,25,10:07:09,combo,dd,,1+0 records out,Oct 25 10:07:09,Normal
7461,11764849,25438029,Oct,25,10:07:09,combo,dd,,1+0 records in,Oct 25 10:07:09,Normal
7460,11764849,25438029,Oct,25,10:07:09,combo,ntpd,,ntpd shutdown succeeded,Oct 25 10:07:09,Normal
7463,11764849,25438029,Oct,25,10:07:09,combo,random,,Saving random seed: succeeded,Oct 25 10:07:09,Normal
7459,11764849,25438029,Oct,25,10:07:09,combo,ntpd,2310.0,ntpd exiting on signal 15,Oct 25 10:07:09,Normal
7464,11764850,25438030,Oct,25,10:07:10,combo,rpc.statd,1608.0,"Caught signal 15, un-registering and exiting.",Oct 25 10:07:10,Normal
7465,11764851,25438031,Oct,25,10:07:11,combo,nfslock,,rpc.statd shutdown succeeded,Oct 25 10:07:11,Normal
7467,11764851,25438031,Oct,25,10:07:11,combo,kernel,,Kernel logging (proc) stopped.,Oct 25 10:07:11,Normal
7466,11764851,25438031,Oct,25,10:07:11,combo,portmap,,portmap shutdown succeeded,Oct 25 10:07:11,Normal
7468,11764851,25438031,Oct,25,10:07:11,combo,kernel,,Kernel log daemon terminating.,Oct 25 10:07:11,Normal
7469,11764855,25438035,Oct,25,10:07:15,combo,syslog,,klogd shutdown succeeded,Oct 25 10:07:15,Normal
7541,11764943,25438123,Oct,25,10:08:43,combo,sysctl,,net.ipv4.conf.default.rp_filter = 1,Oct 25 10:08:43,Normal
7543,11764943,25438123,Oct,25,10:08:43,combo,sysctl,,kernel.sysrq = 0,Oct 25 10:08:43,Normal
7547,11764943,25438123,Oct,25,10:08:43,combo,sysctl,,kernel.core_uses_pid = 1,Oct 25 10:08:43,Normal
7551,11764943,25438123,Oct,25,10:08:43,combo,network,,Setting network parameters: succeeded,Oct 25 10:08:43,Normal
7553,11764943,25438123,Oct,25,10:08:43,combo,network,,Bringing up loopback interface: succeeded,Oct 25 10:08:43,Normal
7481,11764946,25438126,Oct,25,10:08:46,combo,kernel,,BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved),Oct 25 10:08:46,Normal
7484,11764946,25438126,Oct,25,10:08:46,combo,kernel,,zapping low mappings.,Oct 25 10:08:46,Normal
7473,11764946,25438126,Oct,25,10:08:46,combo,syslog,,klogd startup succeeded,Oct 25 10:08:46,Normal
7474,11764946,25438126,Oct,25,10:08:46,combo,kernel,,"klogd 1.4.1, log source = /proc/kmsg started.",Oct 25 10:08:46,Normal
7472,11764946,25438126,Oct,25,10:08:46,combo,syslog,,syslogd startup succeeded,Oct 25 10:08:46,Normal
7475,11764946,25438126,Oct,25,10:08:46,combo,kernel,,Linux version 2.6.5-1.358 (bhcompile@bugs.build.redhat.com) (gcc version 3.3.3 20040412 (Red Hat Linux 3.3.3-7)) #1 Sat May 8 09:04:50 EDT 2004,Oct 25 10:08:46,Anomaly
7486,11764946,25438126,Oct,25,10:08:46,combo,irqbalance,,irqbalance startup succeeded,Oct 25 10:08:46,Normal
7487,11764946,25438126,Oct,25,10:08:46,combo,kernel,,"DMA zone: 4096 pages, LIFO batch:1",Oct 25 10:08:46,Normal
7485,11764946,25438126,Oct,25,10:08:46,combo,kernel,,On node 0 totalpages: 32430,Oct 25 10:08:46,Normal
7483,11764946,25438126,Oct,25,10:08:46,combo,kernel,,126MB LOWMEM available.,Oct 25 10:08:46,Normal
7479,11764946,25438126,Oct,25,10:08:46,combo,kernel,,BIOS-e820: 0000000000100000 - 0000000007eae000 (usable),Oct 25 10:08:46,Normal
7482,11764946,25438126,Oct,25,10:08:46,combo,kernel,,0MB HIGHMEM available.,Oct 25 10:08:46,Normal
7480,11764946,25438126,Oct,25,10:08:46,combo,kernel,,BIOS-e820: 0000000007eae000 - 0000000008000000 (reserved),Oct 25 10:08:46,Normal
7478,11764946,25438126,Oct,25,10:08:46,combo,kernel,,BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved),Oct 25 10:08:46,Normal
7477,11764946,25438126,Oct,25,10:08:46,combo,kernel,,BIOS-e820: 0000000000000000 - 00000000000a0000 (usable),Oct 25 10:08:46,Normal
7476,11764946,25438126,Oct,25,10:08:46,combo,kernel,,BIOS-provided physical RAM map:,Oct 25 10:08:46,Normal
7500,11764947,25438127,Oct,25,10:08:47,combo,rpc.statd,1605.0,Version 1.0.6 Starting,Oct 25 10:08:47,Normal
7493,11764947,25438127,Oct,25,10:08:47,combo,kernel,,You can enable it with acpi=force,Oct 25 10:08:47,Normal
7488,11764947,25438127,Oct,25,10:08:47,combo,kernel,,"Normal zone: 28334 pages, LIFO batch:6",Oct 25 10:08:47,Normal
7489,11764947,25438127,Oct,25,10:08:47,combo,portmap,,portmap startup succeeded,Oct 25 10:08:47,Normal
7490,11764947,25438127,Oct,25,10:08:47,combo,kernel,,"HighMem zone: 0 pages, LIFO batch:1",Oct 25 10:08:47,Normal
7496,11764947,25438127,Oct,25,10:08:47,combo,kernel,,mapped 4G/4G trampoline to ffff3000.,Oct 25 10:08:47,Normal
7492,11764947,25438127,Oct,25,10:08:47,combo,kernel,,ACPI disabled because your bios is from 2000 and too old,Oct 25 10:08:47,Anomaly
7491,11764947,25438127,Oct,25,10:08:47,combo,kernel,,DMI 2.3 present.,Oct 25 10:08:47,Normal
7494,11764947,25438127,Oct,25,10:08:47,combo,kernel,,Built 1 zonelists,Oct 25 10:08:47,Normal
7495,11764947,25438127,Oct,25,10:08:47,combo,kernel,,Kernel command line: ro root=LABEL=/ rhgb quiet,Oct 25 10:08:47,Normal
7511,11764947,25438127,Oct,25,10:08:47,combo,kernel,,Failure registering capabilities with the kernel,Oct 25 10:08:47,Anomaly
7510,11764947,25438127,Oct,25,10:08:47,combo,kernel,,"There is already a security framework initialized, register_security failed.",Oct 25 10:08:47,Normal
7509,11764947,25438127,Oct,25,10:08:47,combo,kernel,,SELinux: Starting in permissive mode,Oct 25 10:08:47,Normal
7508,11764947,25438127,Oct,25,10:08:47,combo,kernel,,SELinux: Initializing.,Oct 25 10:08:47,Normal
7499,11764947,25438127,Oct,25,10:08:47,combo,kernel,,PID hash table entries: 512 (order 9: 4096 bytes),Oct 25 10:08:47,Normal
7501,11764947,25438127,Oct,25,10:08:47,combo,kernel,,Detected 731.217 MHz processor.,Oct 25 10:08:47,Normal
7502,11764947,25438127,Oct,25,10:08:47,combo,nfslock,,rpc.statd startup succeeded,Oct 25 10:08:47,Normal
7503,11764947,25438127,Oct,25,10:08:47,combo,kernel,,Using tsc for high-res timesource,Oct 25 10:08:47,Normal
7504,11764947,25438127,Oct,25,10:08:47,combo,kernel,,Console: colour VGA+ 80x25,Oct 25 10:08:47,Normal
7498,11764947,25438127,Oct,25,10:08:47,combo,kernel,,"CPU 0 irqstacks, hard=02345000 soft=02344000",Oct 25 10:08:47,Normal
7497,11764947,25438127,Oct,25,10:08:47,combo,kernel,,Initializing CPU#0,Oct 25 10:08:47,Normal
7513,11764947,25438127,Oct,25,10:08:47,combo,kernel,,Capability LSM initialized,Oct 25 10:08:47,Normal
7507,11764947,25438127,Oct,25,10:08:47,combo,kernel,,Security Scaffold v1.0.0 initialized,Oct 25 10:08:47,Normal
7506,11764947,25438127,Oct,25,10:08:47,combo,kernel,,Calibrating delay loop... 1441.79 BogoMIPS,Oct 25 10:08:47,Normal
7505,11764947,25438127,Oct,25,10:08:47,combo,kernel,,"Memory: 125312k/129720k available (1540k kernel code, 3860k reserved, 599k data, 144k init, 0k highmem)",Oct 25 10:08:47,Normal
7512,11764947,25438127,Oct,25,10:08:47,combo,kernel,,selinux_register_security: Registering secondary module capability,Oct 25 10:08:47,Normal
7516,11764947,25438127,Oct,25,10:08:47,combo,kernel,,"Mount-cache hash table entries: 512 (order: 0, 4096 bytes)",Oct 25 10:08:47,Normal
7514,11764947,25438127,Oct,25,10:08:47,combo,kernel,,"Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)",Oct 25 10:08:47,Normal
7515,11764947,25438127,Oct,25,10:08:47,combo,kernel,,"Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)",Oct 25 10:08:47,Normal
7544,11764948,25438128,Oct,25,10:08:48,combo,hcid,1677.0,HCI daemon ver 2.4 started,Oct 25 10:08:48,Normal
7545,11764948,25438128,Oct,25,10:08:48,combo,bluetooth,,hcid startup succeeded,Oct 25 10:08:48,Normal
7546,11764948,25438128,Oct,25,10:08:48,combo,kernel,,Transparent bridge - 0000:00:1e.0,Oct 25 10:08:48,Normal
7521,11764948,25438128,Oct,25,10:08:48,combo,kernel,,Intel machine check reporting enabled on CPU#0.,Oct 25 10:08:48,Normal
7520,11764948,25438128,Oct,25,10:08:48,combo,kernel,,Intel machine check architecture supported.,Oct 25 10:08:48,Normal
7524,11764948,25438128,Oct,25,10:08:48,combo,kernel,,Enabling unmasked SIMD FPU exception support... done.,Oct 25 10:08:48,Normal
7523,11764948,25438128,Oct,25,10:08:48,combo,kernel,,Enabling fast FPU save and restore... done.,Oct 25 10:08:48,Normal
7522,11764948,25438128,Oct,25,10:08:48,combo,kernel,,CPU: Intel Pentium III (Coppermine) stepping 06,Oct 25 10:08:48,Normal
7526,11764948,25438128,Oct,25,10:08:48,combo,kernel,,POSIX conformance testing by UNIFIX,Oct 25 10:08:48,Normal
7527,11764948,25438128,Oct,25,10:08:48,combo,kernel,,NET: Registered protocol family 16,Oct 25 10:08:48,Normal
7517,11764948,25438128,Oct,25,10:08:48,combo,rpcidmapd,,rpc.idmapd startup succeeded,Oct 25 10:08:48,Normal
7525,11764948,25438128,Oct,25,10:08:48,combo,kernel,,Checking 'hlt' instruction... OK.,Oct 25 10:08:48,Normal
7518,11764948,25438128,Oct,25,10:08:48,combo,kernel,,"CPU: L1 I cache: 16K, L1 D cache: 16K",Oct 25 10:08:48,Normal
7519,11764948,25438128,Oct,25,10:08:48,combo,kernel,,CPU: L2 cache: 256K,Oct 25 10:08:48,Normal
7535,11764948,25438128,Oct,25,10:08:48,combo,kernel,,Linux Plug and Play Support v0.97 (c) Adam Belay,Oct 25 10:08:48,Normal
7542,11764948,25438128,Oct,25,10:08:48,combo,kernel,,PCI: Probing PCI hardware (bus 00),Oct 25 10:08:48,Normal
7540,11764948,25438128,Oct,25,10:08:48,combo,kernel,,PCI: Probing PCI hardware,Oct 25 10:08:48,Normal
7537,11764948,25438128,Oct,25,10:08:48,combo,kernel,,usbcore: registered new driver hub,Oct 25 10:08:48,Normal
7529,11764948,25438128,Oct,25,10:08:48,combo,kernel,,"PCI: PCI BIOS revision 2.10 entry at 0xfc0ce, last bus=1",Oct 25 10:08:48,Normal
7528,11764948,25438128,Oct,25,10:08:48,combo,random,,Initializing random number generator: succeeded,Oct 25 10:08:48,Normal
7533,11764948,25438128,Oct,25,10:08:48,combo,kernel,,ACPI: Subsystem revision 20040326,Oct 25 10:08:48,Normal
7534,11764948,25438128,Oct,25,10:08:48,combo,kernel,,ACPI: Interpreter disabled.,Oct 25 10:08:48,Anomaly
7532,11764948,25438128,Oct,25,10:08:48,combo,kernel,,mtrr: v2.0 (20020519),Oct 25 10:08:48,Normal
7530,11764948,25438128,Oct,25,10:08:48,combo,kernel,,PCI: Using configuration type 1,Oct 25 10:08:48,Normal
7538,11764948,25438128,Oct,25,10:08:48,combo,kernel,,ACPI: ACPI tables contain no PCI IRQ routing entries,Oct 25 10:08:48,Normal
7539,11764948,25438128,Oct,25,10:08:48,combo,kernel,,PCI: Invalid ACPI-PCI IRQ routing table,Oct 25 10:08:48,Anomaly
7531,11764948,25438128,Oct,25,10:08:48,combo,rc,,Starting pcmcia: succeeded,Oct 25 10:08:48,Normal
7536,11764948,25438128,Oct,25,10:08:48,combo,kernel,,usbcore: registered new driver usbfs,Oct 25 10:08:48,Normal
7550,11764949,25438129,Oct,25,10:08:49,combo,kernel,,PCI: Using IRQ router PIIX/ICH [8086/2410] at 0000:00:1f.0,Oct 25 10:08:49,Normal
7552,11764949,25438129,Oct,25,10:08:49,combo,kernel,,apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac),Oct 25 10:08:49,Normal
7548,11764949,25438129,Oct,25,10:08:49,combo,bluetooth,,sdpd startup succeeded,Oct 25 10:08:49,Normal
7549,11764949,25438129,Oct,25,10:08:49,combo,sdpd,1683.0,sdpd v1.5 started,Oct 25 10:08:49,Normal
7565,11764949,25438129,Oct,25,10:08:49,combo,kernel,,Real Time Clock Driver v1.12,Oct 25 10:08:49,Normal
7566,11764949,25438129,Oct,25,10:08:49,combo,apmd,1717.0,"Version 3.0.2 (APM BIOS 1.2, Linux driver 1.16ac)",Oct 25 10:08:49,Normal
7567,11764949,25438129,Oct,25,10:08:49,combo,apmd,,apmd startup succeeded,Oct 25 10:08:49,Normal
7574,11764949,25438129,Oct,25,10:08:49,combo,kernel,,ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A,Oct 25 10:08:49,Normal
7573,11764949,25438129,Oct,25,10:08:49,combo,kernel,,"Serial: 8250/16550 driver $Revision: 1.90 $ 8 ports, IRQ sharing enabled",Oct 25 10:08:49,Normal
7572,11764949,25438129,Oct,25,10:08:49,combo,kernel,,agpgart: AGP aperture is 64M @ 0xf4000000,Oct 25 10:08:49,Normal
7570,11764949,25438129,Oct,25,10:08:49,combo,kernel,,agpgart: Maximum main memory to use for agp memory: 93M,Oct 25 10:08:49,Normal
7571,11764949,25438129,Oct,25,10:08:49,combo,kernel,,agpgart: detected 4MB dedicated video ram.,Oct 25 10:08:49,Normal
7568,11764949,25438129,Oct,25,10:08:49,combo,kernel,,Linux agpgart interface v0.100 (c) Dave Jones,Oct 25 10:08:49,Normal
7561,11764949,25438129,Oct,25,10:08:49,combo,netfs,,Mounting other filesystems: succeeded,Oct 25 10:08:49,Normal
7576,11764949,25438129,Oct,25,10:08:49,combo,kernel,,RAMDISK driver initialized: 16 RAM disks of 16384K size 1024 blocksize,Oct 25 10:08:49,Normal
7575,11764949,25438129,Oct,25,10:08:49,combo,kernel,,ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A,Oct 25 10:08:49,Normal
7569,11764949,25438129,Oct,25,10:08:49,combo,kernel,,agpgart: Detected an Intel i810 E Chipset.,Oct 25 10:08:49,Normal
7563,11764949,25438129,Oct,25,10:08:49,combo,kernel,,isapnp: Scanning for PnP cards...,Oct 25 10:08:49,Normal
7564,11764949,25438129,Oct,25,10:08:49,combo,kernel,,isapnp: No Plug & Play device found,Oct 25 10:08:49,Normal
7577,11764949,25438129,Oct,25,10:08:49,combo,kernel,,Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2,Oct 25 10:08:49,Normal
7560,11764949,25438129,Oct,25,10:08:49,combo,kernel,,Initializing Cryptographic API,Oct 25 10:08:49,Normal
7562,11764949,25438129,Oct,25,10:08:49,combo,kernel,,pci_hotplug: PCI Hot Plug PCI Core version: 0.5,Oct 25 10:08:49,Normal
7554,11764949,25438129,Oct,25,10:08:49,combo,kernel,,audit: initializing netlink socket (disabled),Oct 25 10:08:49,Anomaly
7555,11764949,25438129,Oct,25,10:08:49,combo,kernel,,audit(1130234885.488:0): initialized,Oct 25 10:08:49,Normal
7556,11764949,25438129,Oct,25,10:08:49,combo,kernel,,"Total HugeTLB memory allocated, 0",Oct 25 10:08:49,Normal
7557,11764949,25438129,Oct,25,10:08:49,combo,kernel,,VFS: Disk quotas dquot_6.5.1,Oct 25 10:08:49,Normal
7558,11764949,25438129,Oct,25,10:08:49,combo,kernel,,"Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)",Oct 25 10:08:49,Normal
7559,11764949,25438129,Oct,25,10:08:49,combo,kernel,,SELinux: Registering netfilter hooks,Oct 25 10:08:49,Normal
7578,11764950,25438130,Oct,25,10:08:50,combo,autofs,,automount startup succeeded,Oct 25 10:08:50,Normal
7591,11764950,25438130,Oct,25,10:08:50,combo,smartd,1755.0,"Device: /dev/hda, found in smartd database.",Oct 25 10:08:50,Normal
7596,11764950,25438130,Oct,25,10:08:50,combo,kernel,,"hdc: SAMSUNG CD-ROM SN-124, ATAPI CD/DVD-ROM drive",Oct 25 10:08:50,Normal
7592,11764950,25438130,Oct,25,10:08:50,combo,kernel,,Using cfq io scheduler,Oct 25 10:08:50,Normal
7579,11764950,25438130,Oct,25,10:08:50,combo,kernel,,ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx,Oct 25 10:08:50,Anomaly
7580,11764950,25438130,Oct,25,10:08:50,combo,kernel,,ICH: IDE controller at PCI slot 0000:00:1f.1,Oct 25 10:08:50,Normal
7588,11764950,25438130,Oct,25,10:08:50,combo,kernel,,"ide1: BM-DMA at 0xffa8-0xffaf, BIOS settings: hdc:DMA, hdd:pio",Oct 25 10:08:50,Normal
7587,11764950,25438130,Oct,25,10:08:50,combo,smartd,1755.0,Configuration file /etc/smartd.conf parsed.,Oct 25 10:08:50,Normal
7597,11764950,25438130,Oct,25,10:08:50,combo,apmd,1717.0,Charge: * * * (-1% unknown),Oct 25 10:08:50,Normal
7598,11764950,25438130,Oct,25,10:08:50,combo,smartd,1757.0,smartd has fork()ed into background mode. New PID=1757.,Oct 25 10:08:50,Normal
7600,11764950,25438130,Oct,25,10:08:50,combo,kernel,,hdc: Disabling (U)DMA for SAMSUNG CD-ROM SN-124 (blacklisted),Oct 25 10:08:50,Normal
7599,11764950,25438130,Oct,25,10:08:50,combo,smartd,,smartd startup succeeded,Oct 25 10:08:50,Normal
7586,11764950,25438130,Oct,25,10:08:50,combo,kernel,,"ide0: BM-DMA at 0xffa0-0xffa7, BIOS settings: hda:DMA, hdb:pio",Oct 25 10:08:50,Normal
7585,11764950,25438130,Oct,25,10:08:50,combo,smartd,1755.0,Opened configuration file /etc/smartd.conf,Oct 25 10:08:50,Normal
7590,11764950,25438130,Oct,25,10:08:50,combo,kernel,,"hda: IBM-DTLA-307015, ATA DISK drive",Oct 25 10:08:50,Normal
7589,11764950,25438130,Oct,25,10:08:50,combo,smartd,1755.0,"Device: /dev/hda, opened",Oct 25 10:08:50,Normal
7583,11764950,25438130,Oct,25,10:08:50,combo,smartd,1755.0,Home page is http://smartmontools.sourceforge.net/,Oct 25 10:08:50,Normal
7584,11764950,25438130,Oct,25,10:08:50,combo,kernel,,ICH: not 100%% native mode: will probe irqs later,Oct 25 10:08:50,Normal
7582,11764950,25438130,Oct,25,10:08:50,combo,kernel,,ICH: chipset revision 2,Oct 25 10:08:50,Normal
7581,11764950,25438130,Oct,25,10:08:50,combo,smartd,1755.0,smartd version 5.21 Copyright (C) 2002-3 Bruce Allen,Oct 25 10:08:50,Normal
7602,11764950,25438130,Oct,25,10:08:50,combo,kernel,,hda: max request size: 128KiB,Oct 25 10:08:50,Normal
7601,11764950,25438130,Oct,25,10:08:50,combo,kernel,,"ide1 at 0x170-0x177,0x376 on irq 15",Oct 25 10:08:50,Normal
7604,11764950,25438130,Oct,25,10:08:50,combo,kernel,,hda: hda1 hda2 hda3,Oct 25 10:08:50,Normal
7603,11764950,25438130,Oct,25,10:08:50,combo,kernel,,"hda: 29336832 sectors (15020 MB) w/1916KiB Cache, CHS=29104/16/63, UDMA(66)",Oct 25 10:08:50,Normal
7594,11764950,25438130,Oct,25,10:08:50,combo,kernel,,"ide0 at 0x1f0-0x1f7,0x3f6 on irq 14",Oct 25 10:08:50,Normal
7593,11764950,25438130,Oct,25,10:08:50,combo,smartd,1755.0,"Device: /dev/hda, is SMART capable. Adding to ""monitor"" list.",Oct 25 10:08:50,Normal
7595,11764950,25438130,Oct,25,10:08:50,combo,smartd,1755.0,Monitoring 1 ATA and 0 SCSI devices,Oct 25 10:08:50,Normal
7608,11764951,25438131,Oct,25,10:08:51,combo,kernel,,usbcore: registered new driver hiddev,Oct 25 10:08:51,Normal
7605,11764951,25438131,Oct,25,10:08:51,combo,kernel,,"hdc: ATAPI 24X CD-ROM drive, 128kB Cache",Oct 25 10:08:51,Normal
7606,11764951,25438131,Oct,25,10:08:51,combo,kernel,,Uniform CD-ROM driver Revision: 3.20,Oct 25 10:08:51,Normal
7610,11764951,25438131,Oct,25,10:08:51,combo,kernel,,drivers/usb/input/hid-core.c: v2.0:USB HID core driver,Oct 25 10:08:51,Normal
7609,11764951,25438131,Oct,25,10:08:51,combo,kernel,,usbcore: registered new driver hid,Oct 25 10:08:51,Normal
7607,11764951,25438131,Oct,25,10:08:51,combo,kernel,,ide-floppy driver 0.99.newide,Oct 25 10:08:51,Normal
7617,11764952,25438132,Oct,25,10:08:52,combo,kernel,,NET: Registered protocol family 2,Oct 25 10:08:52,Normal
7612,11764952,25438132,Oct,25,10:08:52,combo,kernel,,"serio: i8042 AUX port at 0x60,0x64 irq 12",Oct 25 10:08:52,Normal
7611,11764952,25438132,Oct,25,10:08:52,combo,kernel,,mice: PS/2 mouse device common for all mice,Oct 25 10:08:52,Normal
7621,11764952,25438132,Oct,25,10:08:52,combo,kernel,,Initializing IPsec netlink socket,Oct 25 10:08:52,Normal
7622,11764952,25438132,Oct,25,10:08:52,combo,kernel,,NET: Registered protocol family 1,Oct 25 10:08:52,Normal
7619,11764952,25438132,Oct,25,10:08:52,combo,kernel,,"IP: routing cache hash table of 512 buckets, 4Kbytes",Oct 25 10:08:52,Normal
7620,11764952,25438132,Oct,25,10:08:52,combo,kernel,,TCP: Hash tables configured (established 8192 bind 16384),Oct 25 10:08:52,Normal
7613,11764952,25438132,Oct,25,10:08:52,combo,kernel,,input: ImPS/2 Logitech Wheel Mouse on isa0060/serio1,Oct 25 10:08:52,Normal
7618,11764952,25438132,Oct,25,10:08:52,combo,rc,,Starting hpoj: succeeded,Oct 25 10:08:52,Normal
7616,11764952,25438132,Oct,25,10:08:52,combo,kernel,,"md: md driver 0.90.0 MAX_MD_DEVS=256, MD_SB_DISKS=27",Oct 25 10:08:52,Normal
7615,11764952,25438132,Oct,25,10:08:52,combo,kernel,,input: AT Translated Set 2 keyboard on isa0060/serio0,Oct 25 10:08:52,Normal
7614,11764952,25438132,Oct,25,10:08:52,combo,kernel,,"serio: i8042 KBD port at 0x60,0x64 irq 1",Oct 25 10:08:52,Normal
7623,11764953,25438133,Oct,25,10:08:53,combo,kernel,,NET: Registered protocol family 17,Oct 25 10:08:53,Normal
7625,11764953,25438133,Oct,25,10:08:53,combo,kernel,,Freeing initrd memory: 186k freed,Oct 25 10:08:53,Normal
7624,11764953,25438133,Oct,25,10:08:53,combo,kernel,,checking if image is initramfs...it isn't (no cpio magic); looks like an initrd,Oct 25 10:08:53,Normal
7627,11764954,25438134,Oct,25,10:08:54,combo,kernel,,md: autorun ...,Oct 25 10:08:54,Normal
7628,11764954,25438134,Oct,25,10:08:54,combo,kernel,,md: ... autorun DONE.,Oct 25 10:08:54,Normal
7630,11764954,25438134,Oct,25,10:08:54,combo,kernel,,VFS: Mounted root (ext2 filesystem).,Oct 25 10:08:54,Normal
7631,11764954,25438134,Oct,25,10:08:54,combo,kernel,,kjournald starting. Commit interval 5 seconds,Oct 25 10:08:54,Normal
7629,11764954,25438134,Oct,25,10:08:54,combo,kernel,,RAMDISK: Compressed image found at block 0,Oct 25 10:08:54,Normal
7626,11764954,25438134,Oct,25,10:08:54,combo,kernel,,md: Autodetecting RAID arrays.,Oct 25 10:08:54,Normal
7632,11764955,25438135,Oct,25,10:08:55,combo,kernel,,EXT3-fs: mounted filesystem with ordered data mode.,Oct 25 10:08:55,Normal
7635,11764955,25438135,Oct,25,10:08:55,combo,kernel,,SELinux: Unregistering netfilter hooks,Oct 25 10:08:55,Normal
7636,11764955,25438135,Oct,25,10:08:55,combo,kernel,,NET: Registered protocol family 10,Oct 25 10:08:55,Normal
7634,11764955,25438135,Oct,25,10:08:55,combo,kernel,,SELinux: Disabled at runtime.,Oct 25 10:08:55,Anomaly
7633,11764955,25438135,Oct,25,10:08:55,combo,kernel,,Freeing unused kernel memory: 144k freed,Oct 25 10:08:55,Normal
7641,11764956,25438136,Oct,25,10:08:56,combo,kernel,,uhci_hcd 0000:00:1f.2: UHCI Host Controller,Oct 25 10:08:56,Normal
7637,11764956,25438136,Oct,25,10:08:56,combo,kernel,,Disabled Privacy Extensions on device 022db720(lo),Oct 25 10:08:56,Anomaly
7639,11764956,25438136,Oct,25,10:08:56,combo,kernel,,USB Universal Host Controller Interface driver v2.2,Oct 25 10:08:56,Normal
7638,11764956,25438136,Oct,25,10:08:56,combo,kernel,,IPv6 over IPv4 tunneling driver,Oct 25 10:08:56,Normal
7640,11764956,25438136,Oct,25,10:08:56,combo,kernel,,PCI: Found IRQ 11 for device 0000:00:1f.2,Oct 25 10:08:56,Normal
7645,11764957,25438137,Oct,25,10:08:57,combo,kernel,,hub 1-0:1.0: 2 ports detected,Oct 25 10:08:57,Normal
7642,11764957,25438137,Oct,25,10:08:57,combo,kernel,,"uhci_hcd 0000:00:1f.2: irq 11, io base 0000ff80",Oct 25 10:08:57,Normal
7644,11764957,25438137,Oct,25,10:08:57,combo,kernel,,hub 1-0:1.0: USB hub found,Oct 25 10:08:57,Normal
7643,11764957,25438137,Oct,25,10:08:57,combo,kernel,,"uhci_hcd 0000:00:1f.2: new USB bus registered, assigned bus number 1",Oct 25 10:08:57,Normal
7646,11764957,25438137,Oct,25,10:08:57,combo,kernel,,"EXT3 FS on hda2, internal journal",Oct 25 10:08:57,Normal
7651,11764958,25438138,Oct,25,10:08:58,combo,kernel,,"EXT3 FS on hda1, internal journal",Oct 25 10:08:58,Normal
7648,11764958,25438138,Oct,25,10:08:58,combo,kernel,,cdrom: open failed.,Oct 25 10:08:58,Anomaly
7647,11764958,25438138,Oct,25,10:08:58,combo,kernel,,device-mapper: 4.1.0-ioctl (2003-12-10) initialised: dm@uk.sistina.com,Oct 25 10:08:58,Normal
7650,11764958,25438138,Oct,25,10:08:58,combo,kernel,,kjournald starting. Commit interval 5 seconds,Oct 25 10:08:58,Normal
7649,11764958,25438138,Oct,25,10:08:58,combo,kernel,,Adding 262072k swap on /dev/hda3. Priority:-1 extents:1,Oct 25 10:08:58,Normal
7652,11764958,25438138,Oct,25,10:08:58,combo,kernel,,EXT3-fs: mounted filesystem with ordered data mode.,Oct 25 10:08:58,Normal
7653,11764959,25438139,Oct,25,10:08:59,combo,kernel,,IA-32 Microcode Update Driver: v1.13 <tigran@veritas.com>,Oct 25 10:08:59,Normal
7654,11764959,25438139,Oct,25,10:08:59,combo,kernel,,microcode: CPU0 already at revision 0x8 (current=0x8),Oct 25 10:08:59,Normal
7655,11764959,25438139,Oct,25,10:08:59,combo,kernel,,microcode: No suitable data for cpu 0,Oct 25 10:08:59,Normal
7656,11764960,25438140,Oct,25,10:09:00,combo,kernel,,"parport0: PC-style at 0x378 (0x778) [PCSPP,TRISTATE,EPP]",Oct 25 10:09:00,Normal
7658,11764960,25438140,Oct,25,10:09:00,combo,kernel,,SCSI subsystem initialized,Oct 25 10:09:00,Normal
7657,11764960,25438140,Oct,25,10:09:00,combo,kernel,,parport0: irq 7 detected,Oct 25 10:09:00,Normal
7659,11764961,25438141,Oct,25,10:09:01,combo,kernel,,inserting floppy driver for 2.6.5-1.358,Oct 25 10:09:01,Normal
7660,11764961,25438141,Oct,25,10:09:01,combo,kernel,,Floppy drive(s): fd0 is 1.44M,Oct 25 10:09:01,Normal
7664,11764961,25438141,Oct,25,10:09:01,combo,kernel,,0000:01:0c.0: 3Com PCI 3c905C Tornado at 0xec80. Vers LK1.1.19,Oct 25 10:09:01,Normal
7661,11764961,25438141,Oct,25,10:09:01,combo,kernel,,FDC 0 is a National Semiconductor PC87306,Oct 25 10:09:01,Normal
7662,11764961,25438141,Oct,25,10:09:01,combo,kernel,,PCI: Found IRQ 5 for device 0000:01:0c.0,Oct 25 10:09:01,Normal
7663,11764961,25438141,Oct,25,10:09:01,combo,kernel,,3c59x: Donald Becker and others. www.scyld.com/network/vortex.html,Oct 25 10:09:01,Normal
7667,11764961,25438141,Oct,25,10:09:01,combo,kernel,,3c59x: Donald Becker and others. www.scyld.com/network/vortex.html,Oct 25 10:09:01,Normal
7668,11764961,25438141,Oct,25,10:09:01,combo,kernel,,0000:01:0c.0: 3Com PCI 3c905C Tornado at 0xec80. Vers LK1.1.19,Oct 25 10:09:01,Normal
7666,11764961,25438141,Oct,25,10:09:01,combo,kernel,,PCI: Found IRQ 5 for device 0000:01:0c.0,Oct 25 10:09:01,Normal
7665,11764961,25438141,Oct,25,10:09:01,combo,kernel,,ip_tables: (C) 2000-2002 Netfilter core team,Oct 25 10:09:01,Normal
7673,11764962,25438142,Oct,25,10:09:02,combo,kernel,,Bluetooth: HCI device and connection manager initialized,Oct 25 10:09:02,Normal
7674,11764962,25438142,Oct,25,10:09:02,combo,kernel,,Bluetooth: HCI socket layer initialized,Oct 25 10:09:02,Normal
7671,11764962,25438142,Oct,25,10:09:02,combo,kernel,,Bluetooth: Core ver 2.4,Oct 25 10:09:02,Normal
7669,11764962,25438142,Oct,25,10:09:02,combo,kernel,,ip_tables: (C) 2000-2002 Netfilter core team,Oct 25 10:09:02,Normal
7670,11764962,25438142,Oct,25,10:09:02,combo,kernel,,process `syslogd' is using obsolete setsockopt SO_BSDCOMPAT,Oct 25 10:09:02,Normal
7672,11764962,25438142,Oct,25,10:09:02,combo,kernel,,NET: Registered protocol family 31,Oct 25 10:09:02,Normal
7678,11764963,25438143,Oct,25,10:09:03,combo,kernel,,Bluetooth: RFCOMM socket layer initialized,Oct 25 10:09:03,Normal
7675,11764963,25438143,Oct,25,10:09:03,combo,kernel,,Bluetooth: L2CAP ver 2.1,Oct 25 10:09:03,Normal
7676,11764963,25438143,Oct,25,10:09:03,combo,kernel,,Bluetooth: L2CAP socket layer initialized,Oct 25 10:09:03,Normal
7677,11764963,25438143,Oct,25,10:09:03,combo,kernel,,Bluetooth: RFCOMM ver 1.2,Oct 25 10:09:03,Normal
7680,11764963,25438143,Oct,25,10:09:03,combo,kernel,,"parport0: PC-style at 0x378 (0x778) [PCSPP,TRISTATE,EPP]",Oct 25 10:09:03,Normal
7679,11764963,25438143,Oct,25,10:09:03,combo,kernel,,Bluetooth: RFCOMM TTY layer initialized,Oct 25 10:09:03,Normal
7681,11764964,25438144,Oct,25,10:09:04,combo,kernel,,parport0: irq 7 detected,Oct 25 10:09:04,Normal
7682,11764964,25438144,Oct,25,10:09:04,combo,kernel,,lp0: using parport0 (polling).,Oct 25 10:09:04,Normal
7683,11764964,25438144,Oct,25,10:09:04,combo,kernel,,lp0: console ready,Oct 25 10:09:04,Normal
7684,11764966,25438146,Oct,25,10:09:06,combo,cups,,cupsd startup succeeded,Oct 25 10:09:06,Normal
7685,11764966,25438146,Oct,25,10:09:06,combo,sshd,,succeeded,Oct 25 10:09:06,Normal
7686,11764966,25438146,Oct,25,10:09:06,combo,xinetd,,xinetd startup succeeded,Oct 25 10:09:06,Normal
7687,11764969,25438149,Oct,25,10:09:09,combo,xinetd,2003.0,No such internal service: services/stream - DISABLING,Oct 25 10:09:09,Anomaly
7688,11764969,25438149,Oct,25,10:09:09,combo,sendmail,,sendmail startup succeeded,Oct 25 10:09:09,Normal
7691,11764970,25438150,Oct,25,10:09:10,combo,xinetd,2003.0,Service telnet failed to start and is deactivated.,Oct 25 10:09:10,Anomaly
7692,11764970,25438150,Oct,25,10:09:10,combo,xinetd,2003.0,xinetd Version 2.3.13 started with libwrap loadavg options compiled in.,Oct 25 10:09:10,Normal
7690,11764970,25438150,Oct,25,10:09:10,combo,xinetd,2003.0,bind failed (Address already in use (errno = 98)). service = telnet,Oct 25 10:09:10,Normal
7693,11764970,25438150,Oct,25,10:09:10,combo,xinetd,2003.0,Started working: 30 available services,Oct 25 10:09:10,Normal
7689,11764970,25438150,Oct,25,10:09:10,combo,sendmail,,sm-client startup succeeded,Oct 25 10:09:10,Normal
7694,11764972,25438152,Oct,25,10:09:12,combo,udev,2042.0,creating device node '/udev/lp0',Oct 25 10:09:12,Normal
7695,11764976,25438156,Oct,25,10:09:16,combo,spamassassin,,spamd startup succeeded,Oct 25 10:09:16,Normal
7696,11764976,25438156,Oct,25,10:09:16,combo,privoxy,,Oct 25 10:09:16 Privoxy(-150089600) Info: loading configuration file '/etc/privoxy/config':,Oct 25 10:09:16,Normal
7697,11764977,25438157,Oct,25,10:09:17,combo,privoxy,,privoxy startup succeeded,Oct 25 10:09:17,Normal
7698,11764977,25438157,Oct,25,10:09:17,combo,gpm,2068.0,*** info [startup.c(95)]:,Oct 25 10:09:17,Normal
7700,11764977,25438157,Oct,25,10:09:17,combo,gpm,2068.0,*** info [mice.c(1766)]:,Oct 25 10:09:17,Normal
7699,11764977,25438157,Oct,25,10:09:17,combo,gpm,2068.0,Started gpm successfully. Entered daemon mode.,Oct 25 10:09:17,Normal
7701,11764977,25438157,Oct,25,10:09:17,combo,gpm,2068.0,imps2: Auto-detected intellimouse PS/2,Oct 25 10:09:17,Normal
7702,11764978,25438158,Oct,25,10:09:18,combo,gpm,,gpm startup succeeded,Oct 25 10:09:18,Normal
7705,11764978,25438158,Oct,25,10:09:18,combo,IIim,,htt startup succeeded,Oct 25 10:09:18,Normal
7704,11764978,25438158,Oct,25,10:09:18,combo,su(pam_unix),2077.0,session closed for user htt,Oct 25 10:09:18,Normal
7703,11764978,25438158,Oct,25,10:09:18,combo,su(pam_unix),2077.0,session opened for user htt by (uid=0),Oct 25 10:09:18,Normal
7706,11764980,25438160,Oct,25,10:09:20,combo,htt_server,2080.0,started.,Oct 25 10:09:20,Normal
7708,11764981,25438161,Oct,25,10:09:21,combo,crond,,crond startup succeeded,Oct 25 10:09:21,Normal
7707,11764981,25438161,Oct,25,10:09:21,combo,canna,,succeeded,Oct 25 10:09:21,Normal
7709,11764982,25438162,Oct,25,10:09:22,combo,xfs,,xfs startup succeeded,Oct 25 10:09:22,Normal
7710,11764982,25438162,Oct,25,10:09:22,combo,anacron,,anacron startup succeeded,Oct 25 10:09:22,Normal
7711,11764982,25438162,Oct,25,10:09:22,combo,atd,,atd startup succeeded,Oct 25 10:09:22,Normal
7712,11764982,25438162,Oct,25,10:09:22,combo,readahead,,Starting background readahead:,Oct 25 10:09:22,Normal
7713,11764983,25438163,Oct,25,10:09:23,combo,rc,,Starting readahead: succeeded,Oct 25 10:09:23,Normal
7714,11764984,25438164,Oct,25,10:09:24,combo,messagebus,,messagebus startup succeeded,Oct 25 10:09:24,Normal
7715,11764997,25438177,Oct,25,10:09:37,combo,httpd,,httpd startup succeeded,Oct 25 10:09:37,Normal
7716,11764999,25438179,Oct,25,10:09:39,combo,squid,2261.0,Squid Parent: child process 2263 started,Oct 25 10:09:39,Normal
7719,11765007,25438187,Oct,25,10:09:47,combo,named,,named startup succeeded,Oct 25 10:09:47,Normal
7736,11765009,25438189,Oct,25,10:09:49,combo,snmpd,,snmpd startup succeeded,Oct 25 10:09:49,Normal
7741,11765011,25438191,Oct,25,10:09:51,combo,ntpd,,ntpd startup succeeded,Oct 25 10:09:51,Normal
7740,11765011,25438191,Oct,25,10:09:51,combo,ntpd,2304.0,ntpd 4.2.0@1.1161-r Thu Mar 11 11:46:39 EST 2004 (1),Oct 25 10:09:51,Normal
7742,11765011,25438191,Oct,25,10:09:51,combo,snmpd,2287.0,NET-SNMP version 5.1.1,Oct 25 10:09:51,Normal
7745,11765013,25438193,Oct,25,10:09:53,combo,ntpd,2304.0,precision = 1.000 usec,Oct 25 10:09:53,Normal
7747,11765014,25438194,Oct,25,10:09:54,combo,ntpd,2304.0,kernel time sync status 0040,Oct 25 10:09:54,Normal
7749,11765014,25438194,Oct,25,10:09:54,combo,ntpd,2304.0,frequency initialized 0.000 PPM from /var/lib/ntp/drift,Oct 25 10:09:54,Normal
7751,11765015,25438195,Oct,25,10:09:55,combo,ntpd,2304.0,"configure: keyword ""authenticate"" unknown, line ignored",Oct 25 10:09:55,Normal
7756,11765017,25438197,Oct,25,10:09:57,combo,mysqld,,Starting MySQL: succeeded,Oct 25 10:09:57,Normal
7757,11765017,25438197,Oct,25,10:09:57,combo,rsyncd,2360.0,"rsyncd version 2.6.2 starting, listening on port 873",Oct 25 10:09:57,Normal
7758,11765018,25438198,Oct,25,10:09:58,combo,mdmonitor,,mdadm succeeded,Oct 25 10:09:58,Normal
7759,11765018,25438198,Oct,25,10:09:58,combo,mdmpd,,mdmpd failed,Oct 25 10:09:58,Anomaly
7767,11765020,25438200,Oct,25,10:10:00,combo,udev,2525.0,creating device node '/udev/vcsa1',Oct 25 10:10:00,Normal
7765,11765020,25438200,Oct,25,10:10:00,combo,udev,2523.0,creating device node '/udev/vcs1',Oct 25 10:10:00,Normal
7761,11765020,25438200,Oct,25,10:10:00,combo,udev,2524.0,creating device node '/udev/vcs2',Oct 25 10:10:00,Normal
7760,11765020,25438200,Oct,25,10:10:00,combo,udev,2467.0,creating device node '/udev/vcs3',Oct 25 10:10:00,Normal
7779,11765020,25438200,Oct,25,10:10:00,combo,udev,2682.0,removing device node '/udev/vcs2',Oct 25 10:10:00,Normal
7778,11765020,25438200,Oct,25,10:10:00,combo,udev,2693.0,removing device node '/udev/vcs3',Oct 25 10:10:00,Normal
7777,11765020,25438200,Oct,25,10:10:00,combo,udev,2699.0,removing device node '/udev/vcs4',Oct 25 10:10:00,Normal
7769,11765020,25438200,Oct,25,10:10:00,combo,udev,2645.0,creating device node '/udev/vcs6',Oct 25 10:10:00,Normal
7770,11765020,25438200,Oct,25,10:10:00,combo,udev,2646.0,creating device node '/udev/vcsa6',Oct 25 10:10:00,Normal
7768,11765020,25438200,Oct,25,10:10:00,combo,udev,2643.0,creating device node '/udev/vcs5',Oct 25 10:10:00,Normal
7775,11765020,25438200,Oct,25,10:10:00,combo,udev,2704.0,removing device node '/udev/vcsa3',Oct 25 10:10:00,Normal
7772,11765020,25438200,Oct,25,10:10:00,combo,udev,2465.0,removing device node '/udev/vcs8',Oct 25 10:10:00,Normal
7771,11765020,25438200,Oct,25,10:10:00,combo,udev,2644.0,creating device node '/udev/vcsa5',Oct 25 10:10:00,Normal
7776,11765020,25438200,Oct,25,10:10:00,combo,udev,2706.0,removing device node '/udev/vcs1',Oct 25 10:10:00,Normal
7773,11765020,25438200,Oct,25,10:10:00,combo,udev,2466.0,removing device node '/udev/vcsa8',Oct 25 10:10:00,Normal
7774,11765020,25438200,Oct,25,10:10:00,combo,udev,2676.0,removing device node '/udev/vcsa4',Oct 25 10:10:00,Normal
7762,11765020,25438200,Oct,25,10:10:00,combo,udev,2501.0,creating device node '/udev/vcs4',Oct 25 10:10:00,Normal
7763,11765020,25438200,Oct,25,10:10:00,combo,udev,2502.0,creating device node '/udev/vcsa4',Oct 25 10:10:00,Normal
7764,11765020,25438200,Oct,25,10:10:00,combo,udev,2480.0,creating device node '/udev/vcsa3',Oct 25 10:10:00,Normal
7766,11765020,25438200,Oct,25,10:10:00,combo,udev,2554.0,creating device node '/udev/vcsa2',Oct 25 10:10:00,Normal
7780,11765022,25438202,Oct,25,10:10:02,combo,udev,2741.0,removing device node '/udev/vcsa2',Oct 25 10:10:02,Normal
7781,11765023,25438203,Oct,25,10:10:03,combo,udev,2750.0,removing device node '/udev/vcsa1',Oct 25 10:10:03,Normal
7782,11765023,25438203,Oct,25,10:10:03,combo,udev,2759.0,removing device node '/udev/vcs5',Oct 25 10:10:03,Normal
7785,11765024,25438204,Oct,25,10:10:04,combo,udev,2786.0,removing device node '/udev/vcsa5',Oct 25 10:10:04,Normal
7784,11765024,25438204,Oct,25,10:10:04,combo,udev,2777.0,removing device node '/udev/vcsa6',Oct 25 10:10:04,Normal
7783,11765024,25438204,Oct,25,10:10:04,combo,udev,2768.0,removing device node '/udev/vcs6',Oct 25 10:10:04,Normal
7786,11765025,25438205,Oct,25,10:10:05,combo,udev,2791.0,creating device node '/udev/vcsa4',Oct 25 10:10:05,Normal
7788,11765026,25438206,Oct,25,10:10:06,combo,udev,2794.0,creating device node '/udev/vcs1',Oct 25 10:10:06,Normal
7789,11765026,25438206,Oct,25,10:10:06,combo,udev,2795.0,creating device node '/udev/vcs4',Oct 25 10:10:06,Normal
7787,11765026,25438206,Oct,25,10:10:06,combo,udev,2793.0,creating device node '/udev/vcsa3',Oct 25 10:10:06,Normal
7791,11765027,25438207,Oct,25,10:10:07,combo,udev,2797.0,creating device node '/udev/vcs2',Oct 25 10:10:07,Normal
7790,11765027,25438207,Oct,25,10:10:07,combo,udev,2796.0,creating device node '/udev/vcs3',Oct 25 10:10:07,Normal
7794,11765028,25438208,Oct,25,10:10:08,combo,udev,2816.0,creating device node '/udev/vcs5',Oct 25 10:10:08,Normal
7792,11765028,25438208,Oct,25,10:10:08,combo,udev,2799.0,creating device node '/udev/vcsa2',Oct 25 10:10:08,Normal
7793,11765028,25438208,Oct,25,10:10:08,combo,udev,2815.0,creating device node '/udev/vcsa1',Oct 25 10:10:08,Normal
7795,11765029,25438209,Oct,25,10:10:09,combo,udev,2829.0,creating device node '/udev/vcs6',Oct 25 10:10:09,Normal
7797,11765030,25438210,Oct,25,10:10:10,combo,udev,2831.0,creating device node '/udev/vcsa5',Oct 25 10:10:10,Normal
7796,11765030,25438210,Oct,25,10:10:10,combo,udev,2830.0,creating device node '/udev/vcsa6',Oct 25 10:10:10,Normal
7798,11765032,25438212,Oct,25,10:10:12,combo,udev,2806.0,creating device node '/udev/vcs7',Oct 25 10:10:12,Normal
7799,11765032,25438212,Oct,25,10:10:12,combo,udev,2813.0,creating device node '/udev/vcsa7',Oct 25 10:10:12,Normal
7800,11765034,25438214,Oct,25,10:10:14,combo,udev,2896.0,removing device node '/udev/vcs7',Oct 25 10:10:14,Normal
7801,11765034,25438214,Oct,25,10:10:14,combo,udev,2905.0,removing device node '/udev/vcsa7',Oct 25 10:10:14,Normal
7802,11765035,25438215,Oct,25,10:10:15,combo,udev,2910.0,creating device node '/udev/vcs7',Oct 25 10:10:15,Normal
7803,11765036,25438216,Oct,25,10:10:16,combo,udev,2911.0,creating device node '/udev/vcsa7',Oct 25 10:10:16,Normal
7805,11765209,25438389,Oct,25,10:13:09,combo,ntpd,2304.0,kernel time sync disabled 0041,Oct 25 10:13:09,Anomaly
7804,11765209,25438389,Oct,25,10:13:09,combo,ntpd,2304.0,"synchronized to LOCAL(0), stratum=10",Oct 25 10:13:09,Normal
7806,11765275,25438455,Oct,25,10:14:15,combo,ntpd,2304.0,kernel time sync enabled 0001,Oct 25 10:14:15,Normal
|