File size: 172,464 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 | LineNumber,RelativeTime,Timestamp,Month,Day,Time,Hostname,Process,PID,Message,RawDate,Label
24100,-11466787,2206393,Jan,26,12:53:13,combo,kernel,,audit(1138297993.475:1376441): syscall=54 exit=0 a0=7 a1=540e a2=0 a3=fef0c768 items=0 pid=3130 loginuid=-1 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0,Jan 26 12:53:13,Normal
24095,-11466787,2206393,Jan,26,12:53:13,combo,kernel,,audit(1138297993.375:1376285): avc: denied { relabelfrom } for pid=3128 exe=/usr/sbin/sshd name=1 dev= ino=3 scontext=system_u:system_r:kernel_t tcontext=system_u:object_r:devpts_t tclass=chr_file,Jan 26 12:53:13,Anomaly
24099,-11466787,2206393,Jan,26,12:53:13,combo,kernel,,audit(1138297993.475:1376441): avc: denied { ioctl } for pid=3130 exe=/usr/sbin/sshd path=/dev/pts/1 dev= ino=3 scontext=system_u:system_r:kernel_t tcontext=root:object_r:devpts_t tclass=chr_file,Jan 26 12:53:13,Anomaly
24105,-11466787,2206393,Jan,26,12:53:13,combo,kernel,,audit(1138297993.581:1376686): avc: denied { siginh } for pid=3130 exe=/bin/bash scontext=system_u:system_r:kernel_t tcontext=root:sysadm_r:sysadm_t tclass=process,Jan 26 12:53:13,Anomaly
24102,-11466787,2206393,Jan,26,12:53:13,combo,kernel,,audit(1138297993.475:1376452): syscall=5 exit=6 a0=808dd54 a1=8002 a2=0 a3=8002 items=1 pid=3130 loginuid=-1 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0,Jan 26 12:53:13,Normal
24101,-11466787,2206393,Jan,26,12:53:13,combo,kernel,,audit(1138297993.475:1376452): avc: denied { read write } for pid=3130 exe=/usr/sbin/sshd name=1 dev= ino=3 scontext=system_u:system_r:kernel_t tcontext=root:object_r:devpts_t tclass=chr_file,Jan 26 12:53:13,Anomaly
24097,-11466787,2206393,Jan,26,12:53:13,combo,kernel,,audit(1138297993.375:1376285): syscall=226 exit=0 a0=923ca78 a1=dd7095 a2=9234650 a3=17 items=1 pid=3128 loginuid=-1 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0,Jan 26 12:53:13,Normal
24094,-11466787,2206393,Jan,26,12:53:13,combo,kernel,,audit(1138297993.374:1376277): syscall=4 exit=52 a0=8 a1=9245bf8 a2=34 a3=38b272 items=0 pid=3128 loginuid=-1 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0,Jan 26 12:53:13,Normal
24093,-11466787,2206393,Jan,26,12:53:13,combo,kernel,,audit(1138297993.374:1376277): avc: denied { compute_relabel } for pid=3128 exe=/usr/sbin/sshd scontext=system_u:system_r:kernel_t tcontext=system_u:object_r:security_t tclass=security,Jan 26 12:53:13,Anomaly
24092,-11466787,2206393,Jan,26,12:53:13,combo,sshd(pam_unix),3128.0,session opened for user root by (uid=0),Jan 26 12:53:13,Normal
24096,-11466787,2206393,Jan,26,12:53:13,combo,kernel,,audit(1138297993.375:1376285): avc: denied { relabelto } for pid=3128 exe=/usr/sbin/sshd name=1 dev= ino=3 scontext=system_u:system_r:kernel_t tcontext=root:object_r:devpts_t tclass=chr_file,Jan 26 12:53:13,Anomaly
24098,-11466787,2206393,Jan,26,12:53:13,combo,kernel,,audit(1138297993.375:1376285): item=0 name=/dev/pts/1 inode=3 dev=88:01,Jan 26 12:53:13,Normal
24103,-11466787,2206393,Jan,26,12:53:13,combo,kernel,,audit(1138297993.475:1376452): item=0 name=/dev/pts/1 inode=3 dev=88:01,Jan 26 12:53:13,Normal
24104,-11466787,2206393,Jan,26,12:53:13,combo,kernel,,audit(1138297993.581:1376686): avc: denied { transition } for pid=3130 exe=/usr/sbin/sshd path=/bin/bash dev=hda2 ino=1044632 scontext=system_u:system_r:kernel_t tcontext=root:sysadm_r:sysadm_t tclass=process,Jan 26 12:53:13,Anomaly
24106,-11466786,2206394,Jan,26,12:53:14,combo,kernel,,audit(1138297993.581:1376686): avc: denied { rlimitinh } for pid=3130 exe=/bin/bash scontext=system_u:system_r:kernel_t tcontext=root:sysadm_r:sysadm_t tclass=process,Jan 26 12:53:14,Anomaly
24107,-11466786,2206394,Jan,26,12:53:14,combo,kernel,,audit(1138297993.581:1376686): avc: denied { noatsecure } for pid=3130 exe=/bin/bash scontext=system_u:system_r:kernel_t tcontext=root:sysadm_r:sysadm_t tclass=process,Jan 26 12:53:14,Anomaly
24110,-11466786,2206394,Jan,26,12:53:14,combo,kernel,,audit(1138297993.581:1376686): item=1 inode=1170434 dev=00:00,Jan 26 12:53:14,Normal
24109,-11466786,2206394,Jan,26,12:53:14,combo,kernel,,audit(1138297993.581:1376686): item=0 name=/bin/bash inode=1044632 dev=00:00,Jan 26 12:53:14,Normal
24108,-11466786,2206394,Jan,26,12:53:14,combo,kernel,,audit(1138297993.581:1376686): syscall=11 exit=0 a0=9234400 a1=fef0c700 a2=9231e40 a3=9234400 items=2 pid=3130 loginuid=-1 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0,Jan 26 12:53:14,Normal
24111,-11466660,2206520,Jan,26,12:55:20,combo,sendmail,,sendmail shutdown succeeded,Jan 26 12:55:20,Normal
24112,-11466660,2206520,Jan,26,12:55:20,combo,sendmail,,sm-client shutdown succeeded,Jan 26 12:55:20,Normal
24115,-11466630,2206550,Jan,26,12:55:50,combo,kernel,,audit(1138298150.141:1454728): item=0 name=/dev/pts/1 inode=3 dev=88:01,Jan 26 12:55:50,Normal
24113,-11466630,2206550,Jan,26,12:55:50,combo,kernel,,audit(1138298150.141:1454728): avc: denied { setattr } for pid=3128 exe=/usr/sbin/sshd name=1 dev= ino=3 scontext=system_u:system_r:kernel_t tcontext=root:object_r:devpts_t tclass=chr_file,Jan 26 12:55:50,Anomaly
24116,-11466630,2206550,Jan,26,12:55:50,combo,sshd,3128.0,"Warning! Could not relabel with system_u:object_r:devpts_t, not relabeling.",Jan 26 12:55:50,Anomaly
24114,-11466630,2206550,Jan,26,12:55:50,combo,kernel,,audit(1138298150.141:1454728): syscall=212 exit=0 a0=808dd54 a1=0 a2=0 a3=808dd54 items=1 pid=3128 loginuid=-1 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0,Jan 26 12:55:50,Normal
24117,-11466630,2206550,Jan,26,12:55:50,combo,sshd(pam_unix),3128.0,session closed for user root,Jan 26 12:55:50,Normal
24118,-11457224,2215956,Jan,26,15:32:36,combo,sshd(pam_unix),3224.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=196.1.179.102 user=test,Jan 26 15:32:36,Anomaly
24119,-11457224,2215956,Jan,26,15:32:36,combo,sshd(pam_unix),3225.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=196.1.179.102 user=test,Jan 26 15:32:36,Anomaly
24129,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3244.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24136,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3237.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24126,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3240.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24132,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3238.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24131,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3245.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24133,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3233.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24121,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3228.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24120,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3231.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24130,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3234.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24124,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3229.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24125,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3230.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24138,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3236.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24127,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3242.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24122,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3241.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24135,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3246.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24123,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3239.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24137,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3232.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24128,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3243.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24134,-11453768,2219412,Jan,26,16:30:12,combo,ftpd,3235.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:12 2006,Jan 26 16:30:12,Normal
24140,-11453765,2219415,Jan,26,16:30:15,combo,ftpd,3250.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:15 2006,Jan 26 16:30:15,Normal
24139,-11453765,2219415,Jan,26,16:30:15,combo,ftpd,3247.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:15 2006,Jan 26 16:30:15,Normal
24142,-11453765,2219415,Jan,26,16:30:15,combo,ftpd,3248.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:15 2006,Jan 26 16:30:15,Normal
24141,-11453765,2219415,Jan,26,16:30:15,combo,ftpd,3249.0,connection from 216.19.205.44 (216-19-205-44.getnet.net) at Thu Jan 26 16:30:15 2006,Jan 26 16:30:15,Normal
24144,-11453696,2219484,Jan,26,16:31:24,combo,sshd(pam_unix),3251.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=196.1.179.102 user=test,Jan 26 16:31:24,Anomaly
24143,-11453696,2219484,Jan,26,16:31:24,combo,sshd(pam_unix),3252.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=196.1.179.102 user=test,Jan 26 16:31:24,Anomaly
23971,-11450583,2222597,Jan,26,17:23:17,combo,named,2288.0,starting BIND 9.2.3 -u named -t /var/named/chroot,Jan 26 17:23:17,Normal
23972,-11450583,2222597,Jan,26,17:23:17,combo,named,2288.0,using 1 CPU,Jan 26 17:23:17,Normal
23979,-11450582,2222598,Jan,26,17:23:18,combo,named,2288.0,"listening on IPv4 interface eth0:3, 63.126.79.71#53",Jan 26 17:23:18,Normal
23978,-11450582,2222598,Jan,26,17:23:18,combo,named,2288.0,"listening on IPv4 interface eth0:2, 63.126.79.70#53",Jan 26 17:23:18,Normal
23977,-11450582,2222598,Jan,26,17:23:18,combo,named,2288.0,"listening on IPv4 interface eth0:1, 63.126.79.69#53",Jan 26 17:23:18,Normal
23976,-11450582,2222598,Jan,26,17:23:18,combo,named,2288.0,"listening on IPv4 interface eth0, 63.126.79.67#53",Jan 26 17:23:18,Normal
23981,-11450582,2222598,Jan,26,17:23:18,combo,named,2288.0,"listening on IPv4 interface eth0:5, 63.126.79.73#53",Jan 26 17:23:18,Normal
23980,-11450582,2222598,Jan,26,17:23:18,combo,named,2288.0,"listening on IPv4 interface eth0:4, 63.126.79.72#53",Jan 26 17:23:18,Normal
23982,-11450582,2222598,Jan,26,17:23:18,combo,named,2288.0,"listening on IPv4 interface eth0:6, 63.126.79.75#53",Jan 26 17:23:18,Normal
23984,-11450582,2222598,Jan,26,17:23:18,combo,named,2288.0,"listening on IPv4 interface eth0:7, 63.126.79.80#53",Jan 26 17:23:18,Normal
23974,-11450582,2222598,Jan,26,17:23:18,combo,named,2288.0,loading configuration from '/etc/named.conf',Jan 26 17:23:18,Normal
23975,-11450582,2222598,Jan,26,17:23:18,combo,named,2288.0,"listening on IPv4 interface lo, 127.0.0.1#53",Jan 26 17:23:18,Normal
23986,-11450581,2222599,Jan,26,17:23:19,combo,named,2288.0,"listening on IPv4 interface eth0:8, 63.126.79.81#53",Jan 26 17:23:19,Normal
23988,-11450580,2222600,Jan,26,17:23:20,combo,named,2288.0,"listening on IPv4 interface eth0:9, 63.126.79.82#53",Jan 26 17:23:20,Normal
23991,-11450579,2222601,Jan,26,17:23:21,combo,named,2288.0,"listening on IPv4 interface eth0:10, 63.126.79.83#53",Jan 26 17:23:21,Normal
23992,-11450579,2222601,Jan,26,17:23:21,combo,named,2288.0,"listening on IPv4 interface eth0:11, 63.126.79.84#53",Jan 26 17:23:21,Normal
23998,-11450578,2222602,Jan,26,17:23:22,combo,named,2288.0,"listening on IPv4 interface eth0:13, 63.126.79.87#53",Jan 26 17:23:22,Normal
23993,-11450578,2222602,Jan,26,17:23:22,combo,named,2288.0,"listening on IPv4 interface eth0:12, 63.126.79.85#53",Jan 26 17:23:22,Normal
24000,-11450576,2222604,Jan,26,17:23:24,combo,named,2288.0,"listening on IPv4 interface eth0:14, 63.126.79.89#53",Jan 26 17:23:24,Normal
24002,-11450575,2222605,Jan,26,17:23:25,combo,named,2288.0,"listening on IPv4 interface eth0:15, 63.126.79.90#53",Jan 26 17:23:25,Normal
24005,-11450574,2222606,Jan,26,17:23:26,combo,named,2288.0,"listening on IPv4 interface eth0:16, 63.126.79.95#53",Jan 26 17:23:26,Normal
24008,-11450574,2222606,Jan,26,17:23:26,combo,named,2288.0,"listening on IPv4 interface eth0:17, 63.126.79.100#53",Jan 26 17:23:26,Normal
24010,-11450573,2222607,Jan,26,17:23:27,combo,named,2288.0,"listening on IPv4 interface eth0:18, 63.126.79.105#53",Jan 26 17:23:27,Normal
24012,-11450573,2222607,Jan,26,17:23:27,combo,named,2288.0,"listening on IPv4 interface eth0:19, 63.126.79.110#53",Jan 26 17:23:27,Normal
24013,-11450572,2222608,Jan,26,17:23:28,combo,named,2288.0,"listening on IPv4 interface eth0:20, 63.126.79.115#53",Jan 26 17:23:28,Normal
24017,-11450572,2222608,Jan,26,17:23:28,combo,named,2288.0,"listening on IPv4 interface eth0:22, 63.126.79.125#53",Jan 26 17:23:28,Normal
24015,-11450572,2222608,Jan,26,17:23:28,combo,named,2288.0,"listening on IPv4 interface eth0:21, 63.126.79.120#53",Jan 26 17:23:28,Normal
24019,-11450571,2222609,Jan,26,17:23:29,combo,named,2288.0,couldn't add command channel 127.0.0.1#953: not found,Jan 26 17:23:29,Anomaly
24020,-11450571,2222609,Jan,26,17:23:29,combo,named,2288.0,couldn't add command channel ::1#953: not found,Jan 26 17:23:29,Anomaly
24021,-11450570,2222610,Jan,26,17:23:30,combo,named,2288.0,running,Jan 26 17:23:30,Normal
24145,-11363693,2309487,Jan,27,17:31:27,combo,sshd(pam_unix),3310.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:31:27,Anomaly
24146,-11363683,2309497,Jan,27,17:31:37,combo,sshd(pam_unix),3312.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:31:37,Anomaly
24147,-11363673,2309507,Jan,27,17:31:47,combo,sshd(pam_unix),3314.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:31:47,Anomaly
24148,-11363672,2309508,Jan,27,17:31:48,combo,sshd(pam_unix),3316.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:31:48,Anomaly
24149,-11363665,2309515,Jan,27,17:31:55,combo,sshd(pam_unix),3318.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:31:55,Anomaly
24150,-11363663,2309517,Jan,27,17:31:57,combo,sshd(pam_unix),3320.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:31:57,Anomaly
24151,-11363662,2309518,Jan,27,17:31:58,combo,sshd(pam_unix),3322.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:31:58,Anomaly
24152,-11363661,2309519,Jan,27,17:31:59,combo,sshd(pam_unix),3324.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:31:59,Anomaly
24153,-11363655,2309525,Jan,27,17:32:05,combo,sshd(pam_unix),3326.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:32:05,Anomaly
24154,-11363653,2309527,Jan,27,17:32:07,combo,sshd(pam_unix),3328.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:32:07,Anomaly
24155,-11363652,2309528,Jan,27,17:32:08,combo,sshd(pam_unix),3330.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:32:08,Anomaly
24156,-11363651,2309529,Jan,27,17:32:09,combo,sshd(pam_unix),3332.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:32:09,Anomaly
24157,-11363648,2309532,Jan,27,17:32:12,combo,sshd(pam_unix),3334.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:32:12,Anomaly
24158,-11363645,2309535,Jan,27,17:32:15,combo,sshd(pam_unix),3336.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:32:15,Anomaly
24159,-11363643,2309537,Jan,27,17:32:17,combo,sshd(pam_unix),3338.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:32:17,Anomaly
24160,-11363642,2309538,Jan,27,17:32:18,combo,sshd(pam_unix),3340.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:32:18,Anomaly
24162,-11363641,2309539,Jan,27,17:32:19,combo,sshd(pam_unix),3344.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:32:19,Anomaly
24161,-11363641,2309539,Jan,27,17:32:19,combo,sshd(pam_unix),3342.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:32:19,Anomaly
24163,-11363641,2309539,Jan,27,17:32:19,combo,sshd(pam_unix),3346.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:32:19,Anomaly
24164,-11363639,2309541,Jan,27,17:32:21,combo,sshd(pam_unix),3348.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:32:21,Anomaly
24166,-11363635,2309545,Jan,27,17:32:25,combo,sshd(pam_unix),3352.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:32:25,Anomaly
24165,-11363635,2309545,Jan,27,17:32:25,combo,sshd(pam_unix),3350.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.82.188.147 user=nobody,Jan 27 17:32:25,Anomaly
24168,-11322304,2350876,Jan,28,05:01:16,combo,sshd(pam_unix),3365.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h8441253073.dsl.speedlinq.nl user=root,Jan 28 05:01:16,Anomaly
24167,-11322304,2350876,Jan,28,05:01:16,combo,sshd(pam_unix),3363.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h8441253073.dsl.speedlinq.nl user=root,Jan 28 05:01:16,Anomaly
24169,-11322304,2350876,Jan,28,05:01:16,combo,sshd(pam_unix),3367.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h8441253073.dsl.speedlinq.nl user=root,Jan 28 05:01:16,Anomaly
24170,-11322299,2350881,Jan,28,05:01:21,combo,sshd(pam_unix),3369.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=h8441253073.dsl.speedlinq.nl user=root,Jan 28 05:01:21,Anomaly
24171,-11264618,2408562,Jan,28,21:02:42,combo,sshd(pam_unix),3372.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22 user=test,Jan 28 21:02:42,Anomaly
24172,-11264618,2408562,Jan,28,21:02:42,combo,sshd(pam_unix),3371.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22 user=test,Jan 28 21:02:42,Anomaly
24173,-11264617,2408563,Jan,28,21:02:43,combo,sshd(pam_unix),3375.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22 user=test,Jan 28 21:02:43,Anomaly
24174,-11264616,2408564,Jan,28,21:02:44,combo,sshd(pam_unix),3376.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22 user=test,Jan 28 21:02:44,Anomaly
24175,-11264616,2408564,Jan,28,21:02:44,combo,sshd(pam_unix),3378.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22 user=test,Jan 28 21:02:44,Anomaly
24176,-11264616,2408564,Jan,28,21:02:44,combo,sshd(pam_unix),3380.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22 user=test,Jan 28 21:02:44,Anomaly
24177,-11264615,2408565,Jan,28,21:02:45,combo,sshd(pam_unix),3381.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22 user=test,Jan 28 21:02:45,Anomaly
24178,-11219913,2453267,Jan,29,09:27:47,combo,unix_chkpwd,3396.0,check pass; user unknown,Jan 29 09:27:47,Normal
24179,-11219913,2453267,Jan,29,09:27:47,combo,sshd(pam_unix),3394.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=rrcs-24-123-152-137.central.biz.rr.com,Jan 29 09:27:47,Anomaly
24182,-11172513,2500667,Jan,29,22:37:47,combo,sshd(pam_unix),3422.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=julia.arkos.de user=test,Jan 29 22:37:47,Anomaly
24185,-11172513,2500667,Jan,29,22:37:47,combo,sshd(pam_unix),3425.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=julia.arkos.de user=test,Jan 29 22:37:47,Anomaly
24180,-11172513,2500667,Jan,29,22:37:47,combo,sshd(pam_unix),3418.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=julia.arkos.de user=test,Jan 29 22:37:47,Anomaly
24181,-11172513,2500667,Jan,29,22:37:47,combo,sshd(pam_unix),3417.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=julia.arkos.de user=test,Jan 29 22:37:47,Anomaly
24183,-11172513,2500667,Jan,29,22:37:47,combo,sshd(pam_unix),3415.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=julia.arkos.de user=test,Jan 29 22:37:47,Anomaly
24184,-11172513,2500667,Jan,29,22:37:47,combo,sshd(pam_unix),3421.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=julia.arkos.de user=test,Jan 29 22:37:47,Anomaly
24186,-11172512,2500668,Jan,29,22:37:48,combo,sshd(pam_unix),3427.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=julia.arkos.de user=test,Jan 29 22:37:48,Anomaly
24187,-11172512,2500668,Jan,29,22:37:48,combo,sshd(pam_unix),3429.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=julia.arkos.de user=test,Jan 29 22:37:48,Anomaly
24188,-11172511,2500669,Jan,29,22:37:49,combo,sshd(pam_unix),3431.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=julia.arkos.de user=test,Jan 29 22:37:49,Anomaly
24189,-11172507,2500673,Jan,29,22:37:53,combo,sshd(pam_unix),3433.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=julia.arkos.de user=test,Jan 29 22:37:53,Anomaly
24194,-11139440,2533740,Jan,30,07:49:00,combo,sshd(pam_unix),3481.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-67-124-23-108.dsl.lsan03.pacbell.net user=test,Jan 30 07:49:00,Anomaly
24195,-11139440,2533740,Jan,30,07:49:00,combo,sshd(pam_unix),3480.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-67-124-23-108.dsl.lsan03.pacbell.net user=test,Jan 30 07:49:00,Anomaly
24199,-11139440,2533740,Jan,30,07:49:00,combo,sshd(pam_unix),3490.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-67-124-23-108.dsl.lsan03.pacbell.net user=test,Jan 30 07:49:00,Anomaly
24198,-11139440,2533740,Jan,30,07:49:00,combo,sshd(pam_unix),3476.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-67-124-23-108.dsl.lsan03.pacbell.net user=test,Jan 30 07:49:00,Anomaly
24191,-11139440,2533740,Jan,30,07:49:00,combo,sshd(pam_unix),3477.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-67-124-23-108.dsl.lsan03.pacbell.net user=test,Jan 30 07:49:00,Anomaly
24197,-11139440,2533740,Jan,30,07:49:00,combo,sshd(pam_unix),3482.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-67-124-23-108.dsl.lsan03.pacbell.net user=test,Jan 30 07:49:00,Anomaly
24190,-11139440,2533740,Jan,30,07:49:00,combo,sshd(pam_unix),3491.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-67-124-23-108.dsl.lsan03.pacbell.net user=test,Jan 30 07:49:00,Anomaly
24196,-11139440,2533740,Jan,30,07:49:00,combo,sshd(pam_unix),3484.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-67-124-23-108.dsl.lsan03.pacbell.net user=test,Jan 30 07:49:00,Anomaly
24193,-11139440,2533740,Jan,30,07:49:00,combo,sshd(pam_unix),3483.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-67-124-23-108.dsl.lsan03.pacbell.net user=test,Jan 30 07:49:00,Anomaly
24192,-11139440,2533740,Jan,30,07:49:00,combo,sshd(pam_unix),3474.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-67-124-23-108.dsl.lsan03.pacbell.net user=test,Jan 30 07:49:00,Anomaly
24202,-11126425,2546755,Jan,30,11:25:55,combo,sshd(pam_unix),3518.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ftc.fullerproperties.com user=root,Jan 30 11:25:55,Anomaly
24207,-11126425,2546755,Jan,30,11:25:55,combo,sshd(pam_unix),3528.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.fullerproperties.com user=root,Jan 30 11:25:55,Anomaly
24203,-11126425,2546755,Jan,30,11:25:55,combo,sshd(pam_unix),3517.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.fullerproperties.com user=root,Jan 30 11:25:55,Anomaly
24200,-11126425,2546755,Jan,30,11:25:55,combo,sshd(pam_unix),3522.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.fullerproperties.com user=root,Jan 30 11:25:55,Anomaly
24201,-11126425,2546755,Jan,30,11:25:55,combo,sshd(pam_unix),3521.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ftc.fullerproperties.com user=root,Jan 30 11:25:55,Anomaly
24205,-11126425,2546755,Jan,30,11:25:55,combo,sshd(pam_unix),3524.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ftc.fullerproperties.com user=root,Jan 30 11:25:55,Anomaly
24204,-11126425,2546755,Jan,30,11:25:55,combo,sshd(pam_unix),3527.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.fullerproperties.com user=root,Jan 30 11:25:55,Anomaly
24206,-11126425,2546755,Jan,30,11:25:55,combo,sshd(pam_unix),3523.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.fullerproperties.com user=root,Jan 30 11:25:55,Anomaly
24208,-11126423,2546757,Jan,30,11:25:57,combo,sshd(pam_unix),3533.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.fullerproperties.com user=root,Jan 30 11:25:57,Anomaly
24209,-11126423,2546757,Jan,30,11:25:57,combo,sshd(pam_unix),3534.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.fullerproperties.com user=root,Jan 30 11:25:57,Anomaly
24217,-11126125,2547055,Jan,30,11:30:55,combo,sshd(pam_unix),3549.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21,Jan 30 11:30:55,Anomaly
24214,-11126125,2547055,Jan,30,11:30:55,combo,unix_chkpwd,3559.0,check pass; user unknown,Jan 30 11:30:55,Normal
24218,-11126125,2547055,Jan,30,11:30:55,combo,unix_chkpwd,3561.0,check pass; user unknown,Jan 30 11:30:55,Normal
24211,-11126125,2547055,Jan,30,11:30:55,combo,sshd(pam_unix),3539.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21,Jan 30 11:30:55,Anomaly
24210,-11126125,2547055,Jan,30,11:30:55,combo,unix_chkpwd,3558.0,check pass; user unknown,Jan 30 11:30:55,Normal
24213,-11126125,2547055,Jan,30,11:30:55,combo,sshd(pam_unix),3537.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21,Jan 30 11:30:55,Anomaly
24212,-11126125,2547055,Jan,30,11:30:55,combo,unix_chkpwd,3557.0,check pass; user unknown,Jan 30 11:30:55,Normal
24219,-11126125,2547055,Jan,30,11:30:55,combo,sshd(pam_unix),3547.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21,Jan 30 11:30:55,Anomaly
24215,-11126125,2547055,Jan,30,11:30:55,combo,sshd(pam_unix),3538.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21,Jan 30 11:30:55,Anomaly
24216,-11126125,2547055,Jan,30,11:30:55,combo,unix_chkpwd,3560.0,check pass; user unknown,Jan 30 11:30:55,Normal
24220,-11126124,2547056,Jan,30,11:30:56,combo,unix_chkpwd,3562.0,check pass; user unknown,Jan 30 11:30:56,Normal
24221,-11126124,2547056,Jan,30,11:30:56,combo,sshd(pam_unix),3543.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21,Jan 30 11:30:56,Anomaly
24222,-11126124,2547056,Jan,30,11:30:56,combo,unix_chkpwd,3563.0,check pass; user unknown,Jan 30 11:30:56,Normal
24223,-11126124,2547056,Jan,30,11:30:56,combo,sshd(pam_unix),3550.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21,Jan 30 11:30:56,Anomaly
24226,-11126123,2547057,Jan,30,11:30:57,combo,unix_chkpwd,3565.0,check pass; user unknown,Jan 30 11:30:57,Normal
24224,-11126123,2547057,Jan,30,11:30:57,combo,unix_chkpwd,3564.0,check pass; user unknown,Jan 30 11:30:57,Normal
24225,-11126123,2547057,Jan,30,11:30:57,combo,sshd(pam_unix),3553.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21,Jan 30 11:30:57,Anomaly
24228,-11126123,2547057,Jan,30,11:30:57,combo,unix_chkpwd,3566.0,check pass; user unknown,Jan 30 11:30:57,Normal
24227,-11126123,2547057,Jan,30,11:30:57,combo,sshd(pam_unix),3542.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21,Jan 30 11:30:57,Anomaly
24229,-11126123,2547057,Jan,30,11:30:57,combo,sshd(pam_unix),3544.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21,Jan 30 11:30:57,Anomaly
24233,-11124323,2548857,Jan,30,12:00:57,combo,sshd(pam_unix),3570.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=222.117.59.34 user=amanda,Jan 30 12:00:57,Anomaly
24234,-11124323,2548857,Jan,30,12:00:57,combo,sshd(pam_unix),3569.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=222.117.59.34 user=amanda,Jan 30 12:00:57,Anomaly
24231,-11124323,2548857,Jan,30,12:00:57,combo,sshd(pam_unix),3577.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=222.117.59.34 user=amanda,Jan 30 12:00:57,Anomaly
24232,-11124323,2548857,Jan,30,12:00:57,combo,sshd(pam_unix),3571.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=222.117.59.34 user=amanda,Jan 30 12:00:57,Anomaly
24230,-11124323,2548857,Jan,30,12:00:57,combo,sshd(pam_unix),3574.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=222.117.59.34 user=amanda,Jan 30 12:00:57,Anomaly
24235,-11124310,2548870,Jan,30,12:01:10,combo,sshd(pam_unix),3580.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ast198.internetdsl.tpnet.pl user=root,Jan 30 12:01:10,Anomaly
24236,-11124310,2548870,Jan,30,12:01:10,combo,sshd(pam_unix),3579.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=ast198.internetdsl.tpnet.pl user=root,Jan 30 12:01:10,Anomaly
24237,-11083957,2589223,Jan,30,23:13:43,combo,sshd(pam_unix),3593.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=206-248-137-78.dsl.teksavvy.com user=test,Jan 30 23:13:43,Anomaly
24238,-11083957,2589223,Jan,30,23:13:43,combo,sshd(pam_unix),3595.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=206-248-137-78.dsl.teksavvy.com user=test,Jan 30 23:13:43,Anomaly
24240,-11083954,2589226,Jan,30,23:13:46,combo,sshd(pam_unix),3599.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=206-248-137-78.dsl.teksavvy.com user=test,Jan 30 23:13:46,Anomaly
24239,-11083954,2589226,Jan,30,23:13:46,combo,sshd(pam_unix),3597.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=206-248-137-78.dsl.teksavvy.com user=test,Jan 30 23:13:46,Anomaly
24241,-11083953,2589227,Jan,30,23:13:47,combo,sshd(pam_unix),3601.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=206-248-137-78.dsl.teksavvy.com user=test,Jan 30 23:13:47,Anomaly
24242,-11083949,2589231,Jan,30,23:13:51,combo,sshd(pam_unix),3603.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=206-248-137-78.dsl.teksavvy.com user=test,Jan 30 23:13:51,Anomaly
24346,-11078999,2594181,Feb,1,00:36:21,combo,sshd(pam_unix),3826.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=64.77.164.126 user=root,Feb 1 00:36:21,Anomaly
24350,-11078999,2594181,Feb,1,00:36:21,combo,sshd(pam_unix),3828.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=64.77.164.126 user=root,Feb 1 00:36:21,Anomaly
24347,-11078999,2594181,Feb,1,00:36:21,combo,sshd(pam_unix),3827.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=64.77.164.126 user=root,Feb 1 00:36:21,Anomaly
24351,-11078999,2594181,Feb,1,00:36:21,combo,sshd(pam_unix),3833.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=64.77.164.126 user=root,Feb 1 00:36:21,Anomaly
24348,-11078999,2594181,Feb,1,00:36:21,combo,sshd(pam_unix),3831.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=64.77.164.126 user=root,Feb 1 00:36:21,Anomaly
24349,-11078999,2594181,Feb,1,00:36:21,combo,sshd(pam_unix),3832.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=64.77.164.126 user=root,Feb 1 00:36:21,Anomaly
24354,-11078998,2594182,Feb,1,00:36:22,combo,sshd(pam_unix),3830.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=64.77.164.126 user=root,Feb 1 00:36:22,Anomaly
24352,-11078998,2594182,Feb,1,00:36:22,combo,sshd(pam_unix),3829.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=64.77.164.126 user=root,Feb 1 00:36:22,Anomaly
24353,-11078998,2594182,Feb,1,00:36:22,combo,sshd(pam_unix),3835.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=64.77.164.126 user=root,Feb 1 00:36:22,Anomaly
24355,-11078998,2594182,Feb,1,00:36:22,combo,sshd(pam_unix),3834.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=64.77.164.126 user=root,Feb 1 00:36:22,Anomaly
24356,-11073567,2599613,Feb,1,02:06:53,combo,sshd(pam_unix),3846.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=216.120.255.208 user=root,Feb 1 02:06:53,Anomaly
24357,-11073564,2599616,Feb,1,02:06:56,combo,sshd(pam_unix),3848.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=216.120.255.208 user=root,Feb 1 02:06:56,Anomaly
24358,-11073562,2599618,Feb,1,02:06:58,combo,sshd(pam_unix),3850.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=216.120.255.208 user=root,Feb 1 02:06:58,Anomaly
24359,-11073560,2599620,Feb,1,02:07:00,combo,sshd(pam_unix),3852.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=216.120.255.208 user=root,Feb 1 02:07:00,Anomaly
24360,-11073559,2599621,Feb,1,02:07:01,combo,sshd(pam_unix),3854.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=216.120.255.208 user=root,Feb 1 02:07:01,Anomaly
24361,-11073558,2599622,Feb,1,02:07:02,combo,sshd(pam_unix),3856.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=216.120.255.208 user=root,Feb 1 02:07:02,Anomaly
24362,-11073557,2599623,Feb,1,02:07:03,combo,sshd(pam_unix),3858.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=216.120.255.208 user=root,Feb 1 02:07:03,Anomaly
24363,-11073556,2599624,Feb,1,02:07:04,combo,sshd(pam_unix),3860.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=216.120.255.208 user=root,Feb 1 02:07:04,Anomaly
24364,-11073554,2599626,Feb,1,02:07:06,combo,sshd(pam_unix),3862.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=216.120.255.208 user=root,Feb 1 02:07:06,Anomaly
24365,-11073552,2599628,Feb,1,02:07:08,combo,sshd(pam_unix),3864.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=216.120.255.208 user=root,Feb 1 02:07:08,Anomaly
24366,-11072134,2601046,Feb,1,02:30:46,combo,sshd(pam_unix),3866.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:30:46,Anomaly
24367,-11072130,2601050,Feb,1,02:30:50,combo,sshd(pam_unix),3868.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:30:50,Anomaly
24368,-11072127,2601053,Feb,1,02:30:53,combo,sshd(pam_unix),3870.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:30:53,Anomaly
24369,-11072126,2601054,Feb,1,02:30:54,combo,sshd(pam_unix),3872.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:30:54,Anomaly
24370,-11072124,2601056,Feb,1,02:30:56,combo,sshd(pam_unix),3874.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:30:56,Anomaly
24371,-11072120,2601060,Feb,1,02:31:00,combo,sshd(pam_unix),3876.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:00,Anomaly
24372,-11072120,2601060,Feb,1,02:31:00,combo,sshd(pam_unix),3878.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:00,Anomaly
24373,-11072118,2601062,Feb,1,02:31:02,combo,sshd(pam_unix),3880.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:02,Anomaly
24375,-11072117,2601063,Feb,1,02:31:03,combo,sshd(pam_unix),3884.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:03,Anomaly
24374,-11072117,2601063,Feb,1,02:31:03,combo,sshd(pam_unix),3882.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:03,Anomaly
24376,-11072115,2601065,Feb,1,02:31:05,combo,sshd(pam_unix),3886.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:05,Anomaly
24377,-11072110,2601070,Feb,1,02:31:10,combo,sshd(pam_unix),3888.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:10,Anomaly
24378,-11072109,2601071,Feb,1,02:31:11,combo,sshd(pam_unix),3890.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:11,Anomaly
24379,-11072108,2601072,Feb,1,02:31:12,combo,sshd(pam_unix),3892.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:12,Anomaly
24381,-11072107,2601073,Feb,1,02:31:13,combo,sshd(pam_unix),3896.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:13,Anomaly
24380,-11072107,2601073,Feb,1,02:31:13,combo,sshd(pam_unix),3894.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:13,Anomaly
24382,-11072105,2601075,Feb,1,02:31:15,combo,sshd(pam_unix),3898.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:15,Anomaly
24383,-11072100,2601080,Feb,1,02:31:20,combo,sshd(pam_unix),3900.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:20,Anomaly
24384,-11072099,2601081,Feb,1,02:31:21,combo,sshd(pam_unix),3902.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:21,Anomaly
24385,-11072098,2601082,Feb,1,02:31:22,combo,sshd(pam_unix),3904.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:22,Anomaly
24386,-11072097,2601083,Feb,1,02:31:23,combo,sshd(pam_unix),3906.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Feb 1 02:31:23,Anomaly
24245,-11069019,2604161,Jan,31,03:22:41,combo,unix_chkpwd,3622.0,check pass; user unknown,Jan 31 03:22:41,Normal
24244,-11069019,2604161,Jan,31,03:22:41,combo,sshd(pam_unix),3605.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=alf-146.210.71.217.zonepro-serveurs.net,Jan 31 03:22:41,Anomaly
24246,-11069019,2604161,Jan,31,03:22:41,combo,sshd(pam_unix),3607.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=alf-146.210.71.217.zonepro-serveurs.net,Jan 31 03:22:41,Anomaly
24243,-11069019,2604161,Jan,31,03:22:41,combo,unix_chkpwd,3621.0,check pass; user unknown,Jan 31 03:22:41,Normal
24250,-11069018,2604162,Jan,31,03:22:42,combo,sshd(pam_unix),3611.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=alf-146.210.71.217.zonepro-serveurs.net,Jan 31 03:22:42,Anomaly
24249,-11069018,2604162,Jan,31,03:22:42,combo,unix_chkpwd,3624.0,check pass; user unknown,Jan 31 03:22:42,Normal
24247,-11069018,2604162,Jan,31,03:22:42,combo,unix_chkpwd,3623.0,check pass; user unknown,Jan 31 03:22:42,Normal
24248,-11069018,2604162,Jan,31,03:22:42,combo,sshd(pam_unix),3609.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=alf-146.210.71.217.zonepro-serveurs.net,Jan 31 03:22:42,Anomaly
24252,-11069017,2604163,Jan,31,03:22:43,combo,sshd(pam_unix),3613.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=alf-146.210.71.217.zonepro-serveurs.net,Jan 31 03:22:43,Anomaly
24251,-11069017,2604163,Jan,31,03:22:43,combo,unix_chkpwd,3625.0,check pass; user unknown,Jan 31 03:22:43,Normal
24255,-11069016,2604164,Jan,31,03:22:44,combo,unix_chkpwd,3627.0,check pass; user unknown,Jan 31 03:22:44,Normal
24253,-11069016,2604164,Jan,31,03:22:44,combo,unix_chkpwd,3626.0,check pass; user unknown,Jan 31 03:22:44,Normal
24254,-11069016,2604164,Jan,31,03:22:44,combo,sshd(pam_unix),3615.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=alf-146.210.71.217.zonepro-serveurs.net,Jan 31 03:22:44,Anomaly
24256,-11069016,2604164,Jan,31,03:22:44,combo,sshd(pam_unix),3617.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=alf-146.210.71.217.zonepro-serveurs.net,Jan 31 03:22:44,Anomaly
24258,-11069015,2604165,Jan,31,03:22:45,combo,sshd(pam_unix),3619.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=alf-146.210.71.217.zonepro-serveurs.net,Jan 31 03:22:45,Anomaly
24257,-11069015,2604165,Jan,31,03:22:45,combo,unix_chkpwd,3628.0,check pass; user unknown,Jan 31 03:22:45,Normal
24259,-11064682,2608498,Jan,31,04:34:58,combo,sshd(pam_unix),3629.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:34:58,Anomaly
24260,-11064681,2608499,Jan,31,04:34:59,combo,sshd(pam_unix),3631.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:34:59,Anomaly
24261,-11064673,2608507,Jan,31,04:35:07,combo,sshd(pam_unix),3633.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:07,Anomaly
24262,-11064671,2608509,Jan,31,04:35:09,combo,sshd(pam_unix),3635.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:09,Anomaly
24263,-11064663,2608517,Jan,31,04:35:17,combo,sshd(pam_unix),3637.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:17,Anomaly
24264,-11064661,2608519,Jan,31,04:35:19,combo,sshd(pam_unix),3639.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:19,Anomaly
24265,-11064661,2608519,Jan,31,04:35:19,combo,sshd(pam_unix),3641.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:19,Anomaly
24266,-11064654,2608526,Jan,31,04:35:26,combo,sshd(pam_unix),3643.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:26,Anomaly
24267,-11064653,2608527,Jan,31,04:35:27,combo,sshd(pam_unix),3645.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:27,Anomaly
24269,-11064651,2608529,Jan,31,04:35:29,combo,sshd(pam_unix),3649.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:29,Anomaly
24268,-11064651,2608529,Jan,31,04:35:29,combo,sshd(pam_unix),3647.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:29,Anomaly
24270,-11064647,2608533,Jan,31,04:35:33,combo,sshd(pam_unix),3651.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:33,Anomaly
24271,-11064644,2608536,Jan,31,04:35:36,combo,sshd(pam_unix),3653.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:36,Anomaly
24272,-11064643,2608537,Jan,31,04:35:37,combo,sshd(pam_unix),3655.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:37,Anomaly
24274,-11064641,2608539,Jan,31,04:35:39,combo,sshd(pam_unix),3659.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:39,Anomaly
24273,-11064641,2608539,Jan,31,04:35:39,combo,sshd(pam_unix),3657.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:39,Anomaly
24275,-11064637,2608543,Jan,31,04:35:43,combo,sshd(pam_unix),3661.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:43,Anomaly
24276,-11064634,2608546,Jan,31,04:35:46,combo,sshd(pam_unix),3663.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:46,Anomaly
24277,-11064633,2608547,Jan,31,04:35:47,combo,sshd(pam_unix),3665.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:47,Anomaly
24279,-11064631,2608549,Jan,31,04:35:49,combo,sshd(pam_unix),3669.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:49,Anomaly
24278,-11064631,2608549,Jan,31,04:35:49,combo,sshd(pam_unix),3667.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=jwhp5.chem.ncsu.edu user=ftp,Jan 31 04:35:49,Anomaly
24286,-11063119,2610061,Jan,31,05:01:01,combo,unix_chkpwd,3709.0,check pass; user unknown,Jan 31 05:01:01,Normal
24289,-11063119,2610061,Jan,31,05:01:01,combo,sshd(pam_unix),3693.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=dsl092-052-016.phl1.dsl.speakeasy.net,Jan 31 05:01:01,Anomaly
24287,-11063119,2610061,Jan,31,05:01:01,combo,sshd(pam_unix),3691.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=dsl092-052-016.phl1.dsl.speakeasy.net,Jan 31 05:01:01,Anomaly
24281,-11063119,2610061,Jan,31,05:01:01,combo,sshd(pam_unix),3701.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=dsl092-052-016.phl1.dsl.speakeasy.net,Jan 31 05:01:01,Anomaly
24280,-11063119,2610061,Jan,31,05:01:01,combo,unix_chkpwd,3708.0,check pass; user unknown,Jan 31 05:01:01,Normal
24288,-11063119,2610061,Jan,31,05:01:01,combo,unix_chkpwd,3712.0,check pass; user unknown,Jan 31 05:01:01,Normal
24283,-11063119,2610061,Jan,31,05:01:01,combo,sshd(pam_unix),3692.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=dsl092-052-016.phl1.dsl.speakeasy.net,Jan 31 05:01:01,Anomaly
24297,-11063119,2610061,Jan,31,05:01:01,combo,sshd(pam_unix),3703.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=dsl092-052-016.phl1.dsl.speakeasy.net,Jan 31 05:01:01,Anomaly
24296,-11063119,2610061,Jan,31,05:01:01,combo,unix_chkpwd,3715.0,check pass; user unknown,Jan 31 05:01:01,Normal
24282,-11063119,2610061,Jan,31,05:01:01,combo,unix_chkpwd,3710.0,check pass; user unknown,Jan 31 05:01:01,Normal
24293,-11063119,2610061,Jan,31,05:01:01,combo,sshd(pam_unix),3688.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=dsl092-052-016.phl1.dsl.speakeasy.net,Jan 31 05:01:01,Anomaly
24284,-11063119,2610061,Jan,31,05:01:01,combo,unix_chkpwd,3711.0,check pass; user unknown,Jan 31 05:01:01,Normal
24285,-11063119,2610061,Jan,31,05:01:01,combo,sshd(pam_unix),3689.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=dsl092-052-016.phl1.dsl.speakeasy.net,Jan 31 05:01:01,Anomaly
24295,-11063119,2610061,Jan,31,05:01:01,combo,sshd(pam_unix),3687.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=dsl092-052-016.phl1.dsl.speakeasy.net,Jan 31 05:01:01,Anomaly
24294,-11063119,2610061,Jan,31,05:01:01,combo,unix_chkpwd,3714.0,check pass; user unknown,Jan 31 05:01:01,Normal
24290,-11063119,2610061,Jan,31,05:01:01,combo,unix_chkpwd,3713.0,check pass; user unknown,Jan 31 05:01:01,Normal
24291,-11063119,2610061,Jan,31,05:01:01,combo,sshd(pam_unix),3690.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=dsl092-052-016.phl1.dsl.speakeasy.net,Jan 31 05:01:01,Anomaly
24292,-11063119,2610061,Jan,31,05:01:01,combo,unix_chkpwd,3707.0,check pass; user unknown,Jan 31 05:01:01,Normal
24299,-11063118,2610062,Jan,31,05:01:02,combo,sshd(pam_unix),3705.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=dsl092-052-016.phl1.dsl.speakeasy.net,Jan 31 05:01:02,Anomaly
24298,-11063118,2610062,Jan,31,05:01:02,combo,unix_chkpwd,3716.0,check pass; user unknown,Jan 31 05:01:02,Normal
24300,-11055413,2617767,Jan,31,07:09:27,combo,sshd(pam_unix),3717.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=80.96.171.182 user=test,Jan 31 07:09:27,Anomaly
24301,-11055390,2617790,Jan,31,07:09:50,combo,sshd(pam_unix),3717.0,1 more authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=80.96.171.182 user=test,Jan 31 07:09:50,Anomaly
24392,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3911.0,connection from 81.240.142.171 (171-142.240.81.adsl.skynet.be) at Wed Feb 1 09:47:41 2006,Feb 1 09:47:41,Normal
24394,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3914.0,connection from 81.240.142.171 (171-142.240.81.adsl.skynet.be) at Wed Feb 1 09:47:41 2006,Feb 1 09:47:41,Normal
24398,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3909.0,"ANONYMOUS FTP LOGIN FROM 81.240.142.171, 171-142.240.81.adsl.skynet.be (Sgpuser@home.com)",Feb 1 09:47:41,Normal
24400,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3912.0,"ANONYMOUS FTP LOGIN FROM 81.240.142.171, 171-142.240.81.adsl.skynet.be (Sgpuser@home.com)",Feb 1 09:47:41,Normal
24397,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3915.0,"ANONYMOUS FTP LOGIN FROM 81.240.142.171, 171-142.240.81.adsl.skynet.be (Sgpuser@home.com)",Feb 1 09:47:41,Normal
24387,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3916.0,connection from 81.240.142.171 (171-142.240.81.adsl.skynet.be) at Wed Feb 1 09:47:41 2006,Feb 1 09:47:41,Normal
24389,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3909.0,connection from 81.240.142.171 (171-142.240.81.adsl.skynet.be) at Wed Feb 1 09:47:41 2006,Feb 1 09:47:41,Normal
24388,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3915.0,connection from 81.240.142.171 (171-142.240.81.adsl.skynet.be) at Wed Feb 1 09:47:41 2006,Feb 1 09:47:41,Normal
24402,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3911.0,"ANONYMOUS FTP LOGIN FROM 81.240.142.171, 171-142.240.81.adsl.skynet.be (Sgpuser@home.com)",Feb 1 09:47:41,Normal
24395,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3910.0,"ANONYMOUS FTP LOGIN FROM 81.240.142.171, 171-142.240.81.adsl.skynet.be (Sgpuser@home.com)",Feb 1 09:47:41,Normal
24401,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3914.0,"ANONYMOUS FTP LOGIN FROM 81.240.142.171, 171-142.240.81.adsl.skynet.be (Sgpuser@home.com)",Feb 1 09:47:41,Normal
24399,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3913.0,"ANONYMOUS FTP LOGIN FROM 81.240.142.171, 171-142.240.81.adsl.skynet.be (Sgpuser@home.com)",Feb 1 09:47:41,Normal
24393,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3910.0,connection from 81.240.142.171 (171-142.240.81.adsl.skynet.be) at Wed Feb 1 09:47:41 2006,Feb 1 09:47:41,Normal
24396,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3916.0,"ANONYMOUS FTP LOGIN FROM 81.240.142.171, 171-142.240.81.adsl.skynet.be (Sgpuser@home.com)",Feb 1 09:47:41,Normal
24390,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3913.0,connection from 81.240.142.171 (171-142.240.81.adsl.skynet.be) at Wed Feb 1 09:47:41 2006,Feb 1 09:47:41,Normal
24391,-11045919,2627261,Feb,1,09:47:41,combo,ftpd,3912.0,connection from 81.240.142.171 (171-142.240.81.adsl.skynet.be) at Wed Feb 1 09:47:41 2006,Feb 1 09:47:41,Normal
24312,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3734.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24309,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3735.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24316,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3731.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24308,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3732.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24302,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3725.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24315,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3724.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24303,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3723.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24310,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3730.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24311,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3721.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24305,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3728.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24304,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3727.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24313,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3737.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24314,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3720.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24318,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3738.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24306,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3726.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24319,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3729.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24317,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3722.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24307,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3733.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24320,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3736.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24321,-11028104,2645076,Jan,31,14:44:36,combo,ftpd,3719.0,connection from 218.242.202.99 () at Tue Jan 31 14:44:36 2006,Jan 31 14:44:36,Normal
24323,-11025897,2647283,Jan,31,15:21:23,combo,sshd(pam_unix),3746.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Jan 31 15:21:23,Anomaly
24322,-11025897,2647283,Jan,31,15:21:23,combo,sshd(pam_unix),3748.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.137.206.147 user=test,Jan 31 15:21:23,Anomaly
24324,-11020959,2652221,Jan,31,16:43:41,combo,sshd(pam_unix),3760.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.189.192.156 user=nobody,Jan 31 16:43:41,Anomaly
24325,-11020958,2652222,Jan,31,16:43:42,combo,sshd(pam_unix),3767.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.189.192.156 user=nobody,Jan 31 16:43:42,Anomaly
24326,-11020958,2652222,Jan,31,16:43:42,combo,sshd(pam_unix),3763.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.189.192.156 user=nobody,Jan 31 16:43:42,Anomaly
24328,-11020957,2652223,Jan,31,16:43:43,combo,sshd(pam_unix),3771.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.189.192.156 user=nobody,Jan 31 16:43:43,Anomaly
24327,-11020957,2652223,Jan,31,16:43:43,combo,sshd(pam_unix),3768.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.189.192.156 user=nobody,Jan 31 16:43:43,Anomaly
24329,-11020956,2652224,Jan,31,16:43:44,combo,sshd(pam_unix),3773.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.189.192.156 user=nobody,Jan 31 16:43:44,Anomaly
24330,-11020956,2652224,Jan,31,16:43:44,combo,sshd(pam_unix),3759.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.189.192.156 user=nobody,Jan 31 16:43:44,Anomaly
24331,-11020953,2652227,Jan,31,16:43:47,combo,sshd(pam_unix),3764.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.189.192.156 user=nobody,Jan 31 16:43:47,Anomaly
24332,-11020942,2652238,Jan,31,16:43:58,combo,sshd(pam_unix),3774.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.189.192.156 user=nobody,Jan 31 16:43:58,Anomaly
24403,-11019836,2653344,Feb,1,17:02:24,combo,snmpd,2300.0,Received SNMP packet(s) from 208.53.158.10,Feb 1 17:02:24,Normal
24333,-11013695,2659485,Jan,31,18:44:45,combo,sshd(pam_unix),3779.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.100.28.173 user=root,Jan 31 18:44:45,Anomaly
24334,-11013693,2659487,Jan,31,18:44:47,combo,sshd(pam_unix),3781.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.100.28.173 user=root,Jan 31 18:44:47,Anomaly
24336,-11013692,2659488,Jan,31,18:44:48,combo,sshd(pam_unix),3786.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.100.28.173 user=root,Jan 31 18:44:48,Anomaly
24335,-11013692,2659488,Jan,31,18:44:48,combo,sshd(pam_unix),3783.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.100.28.173 user=root,Jan 31 18:44:48,Anomaly
24337,-11013691,2659489,Jan,31,18:44:49,combo,sshd(pam_unix),3787.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.100.28.173 user=root,Jan 31 18:44:49,Anomaly
24338,-11013690,2659490,Jan,31,18:44:50,combo,sshd(pam_unix),3785.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.100.28.173 user=root,Jan 31 18:44:50,Anomaly
24339,-11013688,2659492,Jan,31,18:44:52,combo,sshd(pam_unix),3791.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.100.28.173 user=root,Jan 31 18:44:52,Anomaly
24341,-11013686,2659494,Jan,31,18:44:54,combo,sshd(pam_unix),3795.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.100.28.173 user=root,Jan 31 18:44:54,Anomaly
24340,-11013686,2659494,Jan,31,18:44:54,combo,sshd(pam_unix),3793.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.100.28.173 user=root,Jan 31 18:44:54,Anomaly
24342,-11013683,2659497,Jan,31,18:44:57,combo,sshd(pam_unix),3797.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.100.28.173 user=root,Jan 31 18:44:57,Anomaly
24343,-11013681,2659499,Jan,31,18:44:59,combo,sshd(pam_unix),3799.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.100.28.173 user=root,Jan 31 18:44:59,Anomaly
24344,-11013680,2659500,Jan,31,18:45:00,combo,sshd(pam_unix),3801.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.100.28.173 user=root,Jan 31 18:45:00,Anomaly
24345,-11013679,2659501,Jan,31,18:45:01,combo,sshd(pam_unix),3803.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.100.28.173 user=root,Jan 31 18:45:01,Anomaly
24405,-11003422,2669758,Feb,1,21:35:58,combo,sshd(pam_unix),3940.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21 user=test,Feb 1 21:35:58,Anomaly
24404,-11003422,2669758,Feb,1,21:35:58,combo,sshd(pam_unix),3942.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21 user=test,Feb 1 21:35:58,Anomaly
24406,-11003421,2669759,Feb,1,21:35:59,combo,sshd(pam_unix),3946.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21 user=test,Feb 1 21:35:59,Anomaly
24410,-11003420,2669760,Feb,1,21:36:00,combo,sshd(pam_unix),3953.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21 user=test,Feb 1 21:36:00,Anomaly
24408,-11003420,2669760,Feb,1,21:36:00,combo,sshd(pam_unix),3945.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21 user=test,Feb 1 21:36:00,Anomaly
24407,-11003420,2669760,Feb,1,21:36:00,combo,sshd(pam_unix),3944.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21 user=test,Feb 1 21:36:00,Anomaly
24409,-11003420,2669760,Feb,1,21:36:00,combo,sshd(pam_unix),3943.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21 user=test,Feb 1 21:36:00,Anomaly
24411,-11003419,2669761,Feb,1,21:36:01,combo,sshd(pam_unix),3954.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21 user=test,Feb 1 21:36:01,Anomaly
24412,-11003419,2669761,Feb,1,21:36:01,combo,sshd(pam_unix),3939.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=219.135.191.21 user=test,Feb 1 21:36:01,Anomaly
24418,-10953123,2720057,Feb,2,11:34:17,combo,sshd(pam_unix),3972.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c-69-248-142-135.hsd1.nj.comcast.net,Feb 2 11:34:17,Anomaly
24419,-10953123,2720057,Feb,2,11:34:17,combo,unix_chkpwd,3982.0,check pass; user unknown,Feb 2 11:34:17,Normal
24421,-10953123,2720057,Feb,2,11:34:17,combo,unix_chkpwd,3980.0,check pass; user unknown,Feb 2 11:34:17,Normal
24416,-10953123,2720057,Feb,2,11:34:17,combo,sshd(pam_unix),3966.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c-69-248-142-135.hsd1.nj.comcast.net,Feb 2 11:34:17,Anomaly
24413,-10953123,2720057,Feb,2,11:34:17,combo,unix_chkpwd,3979.0,check pass; user unknown,Feb 2 11:34:17,Normal
24414,-10953123,2720057,Feb,2,11:34:17,combo,sshd(pam_unix),3965.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c-69-248-142-135.hsd1.nj.comcast.net,Feb 2 11:34:17,Anomaly
24420,-10953123,2720057,Feb,2,11:34:17,combo,sshd(pam_unix),3973.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c-69-248-142-135.hsd1.nj.comcast.net,Feb 2 11:34:17,Anomaly
24415,-10953123,2720057,Feb,2,11:34:17,combo,unix_chkpwd,3978.0,check pass; user unknown,Feb 2 11:34:17,Normal
24422,-10953123,2720057,Feb,2,11:34:17,combo,sshd(pam_unix),3967.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c-69-248-142-135.hsd1.nj.comcast.net,Feb 2 11:34:17,Anomaly
24424,-10953123,2720057,Feb,2,11:34:17,combo,sshd(pam_unix),3970.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c-69-248-142-135.hsd1.nj.comcast.net,Feb 2 11:34:17,Anomaly
24423,-10953123,2720057,Feb,2,11:34:17,combo,unix_chkpwd,3981.0,check pass; user unknown,Feb 2 11:34:17,Normal
24417,-10953123,2720057,Feb,2,11:34:17,combo,unix_chkpwd,3977.0,check pass; user unknown,Feb 2 11:34:17,Normal
24426,-10950059,2723121,Feb,2,12:25:21,combo,sshd(pam_unix),3985.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.136.20.50 user=root,Feb 2 12:25:21,Anomaly
24425,-10950059,2723121,Feb,2,12:25:21,combo,sshd(pam_unix),3983.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.136.20.50 user=root,Feb 2 12:25:21,Anomaly
24427,-10950058,2723122,Feb,2,12:25:22,combo,sshd(pam_unix),3989.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.136.20.50 user=root,Feb 2 12:25:22,Anomaly
24428,-10950057,2723123,Feb,2,12:25:23,combo,sshd(pam_unix),3986.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.136.20.50 user=root,Feb 2 12:25:23,Anomaly
24429,-10950056,2723124,Feb,2,12:25:24,combo,sshd(pam_unix),3992.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.136.20.50 user=root,Feb 2 12:25:24,Anomaly
24430,-10950055,2723125,Feb,2,12:25:25,combo,sshd(pam_unix),3991.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.136.20.50 user=root,Feb 2 12:25:25,Anomaly
24431,-10950054,2723126,Feb,2,12:25:26,combo,sshd(pam_unix),3995.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.136.20.50 user=root,Feb 2 12:25:26,Anomaly
24432,-10950052,2723128,Feb,2,12:25:28,combo,sshd(pam_unix),3997.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.136.20.50 user=root,Feb 2 12:25:28,Anomaly
24433,-10950049,2723131,Feb,2,12:25:31,combo,sshd(pam_unix),3999.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.136.20.50 user=root,Feb 2 12:25:31,Anomaly
24434,-10950048,2723132,Feb,2,12:25:32,combo,sshd(pam_unix),4001.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.136.20.50 user=root,Feb 2 12:25:32,Anomaly
24435,-10950047,2723133,Feb,2,12:25:33,combo,sshd(pam_unix),4003.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.136.20.50 user=root,Feb 2 12:25:33,Anomaly
24436,-10914675,2758505,Feb,2,22:15:05,combo,sshd(pam_unix),4005.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22 user=root,Feb 2 22:15:05,Anomaly
24437,-10914675,2758505,Feb,2,22:15:05,combo,sshd(pam_unix),4006.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22 user=root,Feb 2 22:15:05,Anomaly
24438,-10914673,2758507,Feb,2,22:15:07,combo,sshd(pam_unix),4009.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22 user=root,Feb 2 22:15:07,Anomaly
24439,-10914672,2758508,Feb,2,22:15:08,combo,sshd(pam_unix),4011.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22 user=root,Feb 2 22:15:08,Anomaly
24440,-10914667,2758513,Feb,2,22:15:13,combo,sshd(pam_unix),4013.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22 user=root,Feb 2 22:15:13,Anomaly
24441,-10914667,2758513,Feb,2,22:15:13,combo,sshd(pam_unix),4014.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22 user=root,Feb 2 22:15:13,Anomaly
24442,-10914661,2758519,Feb,2,22:15:19,combo,sshd(pam_unix),4017.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22 user=root,Feb 2 22:15:19,Anomaly
24444,-10888925,2784255,Feb,3,05:24:15,combo,sshd(pam_unix),4019.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.138.138.26 user=root,Feb 3 05:24:15,Anomaly
24443,-10888925,2784255,Feb,3,05:24:15,combo,sshd(pam_unix),4021.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.138.138.26 user=root,Feb 3 05:24:15,Anomaly
24448,-10670084,3003096,Feb,5,18:11:36,combo,sshd(pam_unix),4046.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22,Feb 5 18:11:36,Anomaly
24446,-10670084,3003096,Feb,5,18:11:36,combo,unix_chkpwd,4060.0,check pass; user unknown,Feb 5 18:11:36,Normal
24447,-10670084,3003096,Feb,5,18:11:36,combo,sshd(pam_unix),4048.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22,Feb 5 18:11:36,Anomaly
24445,-10670084,3003096,Feb,5,18:11:36,combo,unix_chkpwd,4061.0,check pass; user unknown,Feb 5 18:11:36,Normal
24450,-10670083,3003097,Feb,5,18:11:37,combo,sshd(pam_unix),4050.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22,Feb 5 18:11:37,Anomaly
24449,-10670083,3003097,Feb,5,18:11:37,combo,unix_chkpwd,4062.0,check pass; user unknown,Feb 5 18:11:37,Normal
24451,-10670080,3003100,Feb,5,18:11:40,combo,unix_chkpwd,4063.0,check pass; user unknown,Feb 5 18:11:40,Normal
24452,-10670080,3003100,Feb,5,18:11:40,combo,sshd(pam_unix),4052.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22,Feb 5 18:11:40,Anomaly
24453,-10670078,3003102,Feb,5,18:11:42,combo,unix_chkpwd,4064.0,check pass; user unknown,Feb 5 18:11:42,Normal
24454,-10670078,3003102,Feb,5,18:11:42,combo,sshd(pam_unix),4054.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22,Feb 5 18:11:42,Anomaly
24455,-10670078,3003102,Feb,5,18:11:42,combo,unix_chkpwd,4065.0,check pass; user unknown,Feb 5 18:11:42,Normal
24456,-10670078,3003102,Feb,5,18:11:42,combo,sshd(pam_unix),4055.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22,Feb 5 18:11:42,Anomaly
24458,-10670076,3003104,Feb,5,18:11:44,combo,sshd(pam_unix),4058.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22,Feb 5 18:11:44,Anomaly
24457,-10670076,3003104,Feb,5,18:11:44,combo,unix_chkpwd,4066.0,check pass; user unknown,Feb 5 18:11:44,Normal
24460,-10669734,3003446,Feb,5,18:17:26,combo,sshd(pam_unix),4069.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:26,Anomaly
24459,-10669734,3003446,Feb,5,18:17:26,combo,sshd(pam_unix),4067.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:26,Anomaly
24461,-10669733,3003447,Feb,5,18:17:27,combo,sshd(pam_unix),4071.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:27,Anomaly
24464,-10669724,3003456,Feb,5,18:17:36,combo,sshd(pam_unix),4076.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:36,Anomaly
24462,-10669724,3003456,Feb,5,18:17:36,combo,sshd(pam_unix),4073.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:36,Anomaly
24463,-10669724,3003456,Feb,5,18:17:36,combo,sshd(pam_unix),4075.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:36,Anomaly
24465,-10669723,3003457,Feb,5,18:17:37,combo,sshd(pam_unix),4079.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:37,Anomaly
24466,-10669721,3003459,Feb,5,18:17:39,combo,sshd(pam_unix),4081.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:39,Anomaly
24469,-10669714,3003466,Feb,5,18:17:46,combo,sshd(pam_unix),4086.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:46,Anomaly
24468,-10669714,3003466,Feb,5,18:17:46,combo,sshd(pam_unix),4085.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:46,Anomaly
24467,-10669714,3003466,Feb,5,18:17:46,combo,sshd(pam_unix),4083.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:46,Anomaly
24470,-10669713,3003467,Feb,5,18:17:47,combo,sshd(pam_unix),4089.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:47,Anomaly
24471,-10669711,3003469,Feb,5,18:17:49,combo,sshd(pam_unix),4091.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:49,Anomaly
24472,-10669710,3003470,Feb,5,18:17:50,combo,sshd(pam_unix),4093.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:50,Anomaly
24473,-10669704,3003476,Feb,5,18:17:56,combo,sshd(pam_unix),4095.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:56,Anomaly
24475,-10669704,3003476,Feb,5,18:17:56,combo,sshd(pam_unix),4098.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:56,Anomaly
24474,-10669704,3003476,Feb,5,18:17:56,combo,sshd(pam_unix),4097.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:56,Anomaly
24476,-10669703,3003477,Feb,5,18:17:57,combo,sshd(pam_unix),4101.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:57,Anomaly
24477,-10669701,3003479,Feb,5,18:17:59,combo,sshd(pam_unix),4103.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:59,Anomaly
24478,-10669701,3003479,Feb,5,18:17:59,combo,sshd(pam_unix),4104.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.154.205.252 user=root,Feb 5 18:17:59,Anomaly
24480,-10643054,3030126,Feb,6,01:42:06,combo,sshd(pam_unix),4112.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.86.92.242 user=root,Feb 6 01:42:06,Anomaly
24479,-10643054,3030126,Feb,6,01:42:06,combo,sshd(pam_unix),4109.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.86.92.242 user=root,Feb 6 01:42:06,Anomaly
24481,-10643053,3030127,Feb,6,01:42:07,combo,sshd(pam_unix),4113.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.86.92.242 user=root,Feb 6 01:42:07,Anomaly
24483,-10643053,3030127,Feb,6,01:42:07,combo,sshd(pam_unix),4110.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.86.92.242 user=root,Feb 6 01:42:07,Anomaly
24482,-10643053,3030127,Feb,6,01:42:07,combo,sshd(pam_unix),4118.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.86.92.242 user=root,Feb 6 01:42:07,Anomaly
24485,-10643052,3030128,Feb,6,01:42:08,combo,sshd(pam_unix),4107.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.86.92.242 user=root,Feb 6 01:42:08,Anomaly
24484,-10643052,3030128,Feb,6,01:42:08,combo,sshd(pam_unix),4108.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.86.92.242 user=root,Feb 6 01:42:08,Anomaly
24488,-10643051,3030129,Feb,6,01:42:09,combo,sshd(pam_unix),4111.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.86.92.242 user=root,Feb 6 01:42:09,Anomaly
24486,-10643051,3030129,Feb,6,01:42:09,combo,sshd(pam_unix),4121.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.86.92.242 user=root,Feb 6 01:42:09,Anomaly
24487,-10643051,3030129,Feb,6,01:42:09,combo,sshd(pam_unix),4124.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=211.86.92.242 user=root,Feb 6 01:42:09,Anomaly
24501,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4133.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24498,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4135.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24499,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4131.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24500,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4134.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24494,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4132.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24491,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4129.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24505,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4141.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24504,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4130.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24497,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4136.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24502,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4140.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24503,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4139.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24496,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4137.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24492,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4128.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24490,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4143.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24489,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4142.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24493,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4127.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24495,-10625400,3047780,Feb,6,06:36:20,combo,ftpd,4138.0,getpeername (ftpd): Transport endpoint is not connected,Feb 6 06:36:20,Normal
24507,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4167.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24521,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4181.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24523,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4188.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24522,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4178.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24510,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4171.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24506,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4168.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24526,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4183.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24524,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4184.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24513,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4177.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24518,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4182.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24519,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4180.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24520,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4179.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24509,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4173.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24511,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4169.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24512,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4170.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24508,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4166.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24525,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4185.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24527,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4187.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24528,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4186.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24514,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4175.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24517,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4176.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24516,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4174.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24515,-10605440,3067740,Feb,6,12:09:00,combo,ftpd,4172.0,connection from 84.5.218.32 () at Mon Feb 6 12:09:00 2006,Feb 6 12:09:00,Normal
24542,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4180.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24540,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4176.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24536,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4177.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24534,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4169.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24535,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4170.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24539,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4174.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24538,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4172.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24537,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4175.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24543,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4179.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24530,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4168.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24547,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4184.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24548,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4185.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24549,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4183.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24546,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4188.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24531,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4166.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24532,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4173.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24533,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4171.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24529,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4167.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24551,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4186.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24550,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4187.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24545,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4178.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24544,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4181.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24541,-10604540,3068640,Feb,6,12:24:00,combo,ftpd,4182.0,User unknown timed out after 900 seconds at Mon Feb 6 12:24:00 2006,Feb 6 12:24:00,Normal
24552,-10566270,3106910,Feb,6,23:01:50,combo,sshd(pam_unix),4189.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.228.173.152 user=root,Feb 6 23:01:50,Anomaly
24555,-10566105,3107075,Feb,6,23:04:35,combo,sshd(pam_unix),4195.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.113.24.228 user=root,Feb 6 23:04:35,Anomaly
24553,-10566105,3107075,Feb,6,23:04:35,combo,sshd(pam_unix),4191.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.113.24.228 user=root,Feb 6 23:04:35,Anomaly
24554,-10566105,3107075,Feb,6,23:04:35,combo,sshd(pam_unix),4192.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.113.24.228 user=root,Feb 6 23:04:35,Anomaly
24556,-10566096,3107084,Feb,6,23:04:44,combo,sshd(pam_unix),4199.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.113.24.228 user=root,Feb 6 23:04:44,Anomaly
24557,-10566095,3107085,Feb,6,23:04:45,combo,sshd(pam_unix),4197.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.113.24.228 user=root,Feb 6 23:04:45,Anomaly
24558,-10566094,3107086,Feb,6,23:04:46,combo,sshd(pam_unix),4201.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.113.24.228 user=root,Feb 6 23:04:46,Anomaly
24559,-10566094,3107086,Feb,6,23:04:46,combo,sshd(pam_unix),4202.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.113.24.228 user=root,Feb 6 23:04:46,Anomaly
24560,-10566092,3107088,Feb,6,23:04:48,combo,sshd(pam_unix),4205.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.113.24.228 user=root,Feb 6 23:04:48,Anomaly
24561,-10566090,3107090,Feb,6,23:04:50,combo,sshd(pam_unix),4207.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.113.24.228 user=root,Feb 6 23:04:50,Anomaly
24562,-10566090,3107090,Feb,6,23:04:50,combo,sshd(pam_unix),4208.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.113.24.228 user=root,Feb 6 23:04:50,Anomaly
24563,-10566089,3107091,Feb,6,23:04:51,combo,sshd(pam_unix),4211.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.113.24.228 user=root,Feb 6 23:04:51,Anomaly
24564,-10566089,3107091,Feb,6,23:04:51,combo,sshd(pam_unix),4212.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.113.24.228 user=root,Feb 6 23:04:51,Anomaly
24565,-10566086,3107094,Feb,6,23:04:54,combo,sshd(pam_unix),4215.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=220.113.24.228 user=root,Feb 6 23:04:54,Anomaly
24569,-10541949,3131231,Feb,7,05:47:11,combo,sshd(pam_unix),4248.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61-219-105-155.hinet-ip.hinet.net user=root,Feb 7 05:47:11,Anomaly
24570,-10541949,3131231,Feb,7,05:47:11,combo,sshd(pam_unix),4246.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61-219-105-155.hinet-ip.hinet.net user=root,Feb 7 05:47:11,Anomaly
24574,-10541949,3131231,Feb,7,05:47:11,combo,sshd(pam_unix),4239.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61-219-105-155.hinet-ip.hinet.net user=root,Feb 7 05:47:11,Anomaly
24571,-10541949,3131231,Feb,7,05:47:11,combo,sshd(pam_unix),4238.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61-219-105-155.hinet-ip.hinet.net user=root,Feb 7 05:47:11,Anomaly
24572,-10541949,3131231,Feb,7,05:47:11,combo,sshd(pam_unix),4237.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61-219-105-155.hinet-ip.hinet.net user=root,Feb 7 05:47:11,Anomaly
24573,-10541949,3131231,Feb,7,05:47:11,combo,sshd(pam_unix),4245.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61-219-105-155.hinet-ip.hinet.net user=root,Feb 7 05:47:11,Anomaly
24575,-10541949,3131231,Feb,7,05:47:11,combo,sshd(pam_unix),4247.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61-219-105-155.hinet-ip.hinet.net user=root,Feb 7 05:47:11,Anomaly
24568,-10541949,3131231,Feb,7,05:47:11,combo,sshd(pam_unix),4236.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61-219-105-155.hinet-ip.hinet.net user=root,Feb 7 05:47:11,Anomaly
24567,-10541949,3131231,Feb,7,05:47:11,combo,sshd(pam_unix),4240.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61-219-105-155.hinet-ip.hinet.net user=root,Feb 7 05:47:11,Anomaly
24566,-10541949,3131231,Feb,7,05:47:11,combo,sshd(pam_unix),4250.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61-219-105-155.hinet-ip.hinet.net user=root,Feb 7 05:47:11,Anomaly
24577,-10540005,3133175,Feb,7,06:19:35,combo,ftpd,4264.0,connection from 216.123.77.195 () at Tue Feb 7 06:19:35 2006,Feb 7 06:19:35,Normal
24581,-10540005,3133175,Feb,7,06:19:35,combo,ftpd,4258.0,connection from 216.123.77.195 () at Tue Feb 7 06:19:35 2006,Feb 7 06:19:35,Normal
24578,-10540005,3133175,Feb,7,06:19:35,combo,ftpd,4261.0,connection from 216.123.77.195 () at Tue Feb 7 06:19:35 2006,Feb 7 06:19:35,Normal
24582,-10540005,3133175,Feb,7,06:19:35,combo,ftpd,4265.0,connection from 216.123.77.195 () at Tue Feb 7 06:19:35 2006,Feb 7 06:19:35,Normal
24583,-10540005,3133175,Feb,7,06:19:35,combo,ftpd,4260.0,connection from 216.123.77.195 () at Tue Feb 7 06:19:35 2006,Feb 7 06:19:35,Normal
24584,-10540005,3133175,Feb,7,06:19:35,combo,ftpd,4257.0,connection from 216.123.77.195 () at Tue Feb 7 06:19:35 2006,Feb 7 06:19:35,Normal
24579,-10540005,3133175,Feb,7,06:19:35,combo,ftpd,4259.0,connection from 216.123.77.195 () at Tue Feb 7 06:19:35 2006,Feb 7 06:19:35,Normal
24580,-10540005,3133175,Feb,7,06:19:35,combo,ftpd,4263.0,connection from 216.123.77.195 () at Tue Feb 7 06:19:35 2006,Feb 7 06:19:35,Normal
24576,-10540005,3133175,Feb,7,06:19:35,combo,ftpd,4262.0,connection from 216.123.77.195 () at Tue Feb 7 06:19:35 2006,Feb 7 06:19:35,Normal
24585,-10537824,3135356,Feb,7,06:55:56,combo,sshd(pam_unix),4266.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=80.96.171.173 user=test,Feb 7 06:55:56,Anomaly
24587,-10491036,3182144,Feb,7,19:55:44,combo,sshd(pam_unix),4274.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22,Feb 7 19:55:44,Anomaly
24586,-10491036,3182144,Feb,7,19:55:44,combo,unix_chkpwd,4280.0,check pass; user unknown,Feb 7 19:55:44,Normal
24589,-10491035,3182145,Feb,7,19:55:45,combo,sshd(pam_unix),4276.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22,Feb 7 19:55:45,Anomaly
24588,-10491035,3182145,Feb,7,19:55:45,combo,unix_chkpwd,4283.0,check pass; user unknown,Feb 7 19:55:45,Normal
24591,-10491032,3182148,Feb,7,19:55:48,combo,sshd(pam_unix),4270.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22,Feb 7 19:55:48,Anomaly
24590,-10491032,3182148,Feb,7,19:55:48,combo,unix_chkpwd,4284.0,check pass; user unknown,Feb 7 19:55:48,Normal
24593,-10491031,3182149,Feb,7,19:55:49,combo,sshd(pam_unix),4272.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22,Feb 7 19:55:49,Anomaly
24592,-10491031,3182149,Feb,7,19:55:49,combo,unix_chkpwd,4286.0,check pass; user unknown,Feb 7 19:55:49,Normal
24595,-10491026,3182154,Feb,7,19:55:54,combo,sshd(pam_unix),4278.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22,Feb 7 19:55:54,Anomaly
24594,-10491026,3182154,Feb,7,19:55:54,combo,unix_chkpwd,4288.0,check pass; user unknown,Feb 7 19:55:54,Normal
24596,-10491025,3182155,Feb,7,19:55:55,combo,unix_chkpwd,4289.0,check pass; user unknown,Feb 7 19:55:55,Normal
24597,-10491025,3182155,Feb,7,19:55:55,combo,sshd(pam_unix),4281.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22,Feb 7 19:55:55,Anomaly
24599,-10491021,3182159,Feb,7,19:55:59,combo,sshd(pam_unix),4285.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.162.81.22,Feb 7 19:55:59,Anomaly
24598,-10491021,3182159,Feb,7,19:55:59,combo,unix_chkpwd,4290.0,check pass; user unknown,Feb 7 19:55:59,Normal
24607,-10442430,3230750,Feb,8,09:25:50,combo,sshd(pam_unix),4296.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:25:50,Anomaly
24604,-10442430,3230750,Feb,8,09:25:50,combo,unix_chkpwd,4311.0,check pass; user unknown,Feb 8 09:25:50,Normal
24606,-10442430,3230750,Feb,8,09:25:50,combo,unix_chkpwd,4313.0,check pass; user unknown,Feb 8 09:25:50,Normal
24601,-10442430,3230750,Feb,8,09:25:50,combo,unix_chkpwd,4309.0,check pass; user unknown,Feb 8 09:25:50,Normal
24602,-10442430,3230750,Feb,8,09:25:50,combo,sshd(pam_unix),4292.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:25:50,Anomaly
24600,-10442430,3230750,Feb,8,09:25:50,combo,unix_chkpwd,4310.0,check pass; user unknown,Feb 8 09:25:50,Normal
24603,-10442430,3230750,Feb,8,09:25:50,combo,sshd(pam_unix),4291.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:25:50,Anomaly
24605,-10442430,3230750,Feb,8,09:25:50,combo,sshd(pam_unix),4295.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:25:50,Anomaly
24609,-10442425,3230755,Feb,8,09:25:55,combo,sshd(pam_unix),4299.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:25:55,Anomaly
24608,-10442425,3230755,Feb,8,09:25:55,combo,unix_chkpwd,4320.0,check pass; user unknown,Feb 8 09:25:55,Normal
24610,-10442422,3230758,Feb,8,09:25:58,combo,unix_chkpwd,4325.0,check pass; user unknown,Feb 8 09:25:58,Normal
24611,-10442422,3230758,Feb,8,09:25:58,combo,sshd(pam_unix),4301.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:25:58,Anomaly
24612,-10442422,3230758,Feb,8,09:25:58,combo,unix_chkpwd,4326.0,check pass; user unknown,Feb 8 09:25:58,Normal
24613,-10442422,3230758,Feb,8,09:25:58,combo,sshd(pam_unix),4302.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:25:58,Anomaly
24614,-10442421,3230759,Feb,8,09:25:59,combo,unix_chkpwd,4328.0,check pass; user unknown,Feb 8 09:25:59,Normal
24615,-10442421,3230759,Feb,8,09:25:59,combo,sshd(pam_unix),4305.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:25:59,Anomaly
24616,-10442420,3230760,Feb,8,09:26:00,combo,unix_chkpwd,4329.0,check pass; user unknown,Feb 8 09:26:00,Normal
24617,-10442420,3230760,Feb,8,09:26:00,combo,sshd(pam_unix),4306.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:26:00,Anomaly
24618,-10442417,3230763,Feb,8,09:26:03,combo,unix_chkpwd,4332.0,check pass; user unknown,Feb 8 09:26:03,Normal
24619,-10442417,3230763,Feb,8,09:26:03,combo,sshd(pam_unix),4312.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:26:03,Anomaly
24620,-10442414,3230766,Feb,8,09:26:06,combo,unix_chkpwd,4333.0,check pass; user unknown,Feb 8 09:26:06,Normal
24621,-10442414,3230766,Feb,8,09:26:06,combo,sshd(pam_unix),4315.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:26:06,Anomaly
24623,-10442414,3230766,Feb,8,09:26:06,combo,sshd(pam_unix),4316.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:26:06,Anomaly
24622,-10442414,3230766,Feb,8,09:26:06,combo,unix_chkpwd,4334.0,check pass; user unknown,Feb 8 09:26:06,Normal
24626,-10442412,3230768,Feb,8,09:26:08,combo,unix_chkpwd,4336.0,check pass; user unknown,Feb 8 09:26:08,Normal
24627,-10442412,3230768,Feb,8,09:26:08,combo,sshd(pam_unix),4321.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:26:08,Anomaly
24625,-10442412,3230768,Feb,8,09:26:08,combo,sshd(pam_unix),4319.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:26:08,Anomaly
24624,-10442412,3230768,Feb,8,09:26:08,combo,unix_chkpwd,4335.0,check pass; user unknown,Feb 8 09:26:08,Normal
24629,-10442409,3230771,Feb,8,09:26:11,combo,sshd(pam_unix),4324.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:26:11,Anomaly
24628,-10442409,3230771,Feb,8,09:26:11,combo,unix_chkpwd,4337.0,check pass; user unknown,Feb 8 09:26:11,Normal
24631,-10442405,3230775,Feb,8,09:26:15,combo,sshd(pam_unix),4330.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=relic.centrodedatos.com,Feb 8 09:26:15,Anomaly
24630,-10442405,3230775,Feb,8,09:26:15,combo,unix_chkpwd,4338.0,check pass; user unknown,Feb 8 09:26:15,Normal
24633,-10409190,3263990,Feb,8,18:39:50,combo,sshd(pam_unix),4339.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.166.155.143 user=root,Feb 8 18:39:50,Anomaly
24632,-10409190,3263990,Feb,8,18:39:50,combo,sshd(pam_unix),4340.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.166.155.143 user=root,Feb 8 18:39:50,Anomaly
24634,-10409188,3263992,Feb,8,18:39:52,combo,sshd(pam_unix),4347.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.166.155.143 user=root,Feb 8 18:39:52,Anomaly
24635,-10409187,3263993,Feb,8,18:39:53,combo,sshd(pam_unix),4345.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.166.155.143 user=root,Feb 8 18:39:53,Anomaly
24636,-10409186,3263994,Feb,8,18:39:54,combo,sshd(pam_unix),4343.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.166.155.143 user=root,Feb 8 18:39:54,Anomaly
24637,-10409185,3263995,Feb,8,18:39:55,combo,sshd(pam_unix),4349.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.166.155.143 user=root,Feb 8 18:39:55,Anomaly
24640,-10409181,3263999,Feb,8,18:39:59,combo,sshd(pam_unix),4355.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.166.155.143 user=root,Feb 8 18:39:59,Anomaly
24639,-10409181,3263999,Feb,8,18:39:59,combo,sshd(pam_unix),4351.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.166.155.143 user=root,Feb 8 18:39:59,Anomaly
24638,-10409181,3263999,Feb,8,18:39:59,combo,sshd(pam_unix),4352.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.166.155.143 user=root,Feb 8 18:39:59,Anomaly
24641,-10409180,3264000,Feb,8,18:40:00,combo,sshd(pam_unix),4356.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.166.155.143 user=root,Feb 8 18:40:00,Anomaly
24642,-10409177,3264003,Feb,8,18:40:03,combo,sshd(pam_unix),4359.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.166.155.143 user=root,Feb 8 18:40:03,Anomaly
24644,-10394651,3278529,Feb,8,22:42:09,combo,sshd(pam_unix),4370.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=200.30.175.22 user=root,Feb 8 22:42:09,Anomaly
24643,-10394651,3278529,Feb,8,22:42:09,combo,sshd(pam_unix),4372.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=200.30.175.22 user=root,Feb 8 22:42:09,Anomaly
24645,-10389726,3283454,Feb,9,00:04:14,combo,sshd(pam_unix),4374.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=200.30.175.22 user=root,Feb 9 00:04:14,Anomaly
24649,-10386521,3286659,Feb,9,00:57:39,combo,sshd(pam_unix),4406.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202-145-62-59.adsl.ttn.net user=test,Feb 9 00:57:39,Anomaly
24648,-10386521,3286659,Feb,9,00:57:39,combo,sshd(pam_unix),4398.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202-145-62-59.adsl.ttn.net user=test,Feb 9 00:57:39,Anomaly
24646,-10386521,3286659,Feb,9,00:57:39,combo,sshd(pam_unix),4404.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202-145-62-59.adsl.ttn.net user=test,Feb 9 00:57:39,Anomaly
24647,-10386521,3286659,Feb,9,00:57:39,combo,sshd(pam_unix),4405.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202-145-62-59.adsl.ttn.net user=test,Feb 9 00:57:39,Anomaly
24653,-10386519,3286661,Feb,9,00:57:41,combo,sshd(pam_unix),4403.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202-145-62-59.adsl.ttn.net user=test,Feb 9 00:57:41,Anomaly
24652,-10386519,3286661,Feb,9,00:57:41,combo,sshd(pam_unix),4399.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202-145-62-59.adsl.ttn.net user=test,Feb 9 00:57:41,Anomaly
24651,-10386519,3286661,Feb,9,00:57:41,combo,sshd(pam_unix),4401.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202-145-62-59.adsl.ttn.net user=test,Feb 9 00:57:41,Anomaly
24650,-10386519,3286661,Feb,9,00:57:41,combo,sshd(pam_unix),4400.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202-145-62-59.adsl.ttn.net user=test,Feb 9 00:57:41,Anomaly
24654,-10386519,3286661,Feb,9,00:57:41,combo,sshd(pam_unix),4407.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202-145-62-59.adsl.ttn.net user=test,Feb 9 00:57:41,Anomaly
24655,-10386516,3286664,Feb,9,00:57:44,combo,sshd(pam_unix),4402.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=202-145-62-59.adsl.ttn.net user=test,Feb 9 00:57:44,Anomaly
24661,-10327872,3345308,Feb,9,17:15:08,combo,sshd(pam_unix),4427.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-68-120-97-218.dsl.sntc01.sbcglobal.net user=test,Feb 9 17:15:08,Anomaly
24660,-10327872,3345308,Feb,9,17:15:08,combo,sshd(pam_unix),4432.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-68-120-97-218.dsl.sntc01.sbcglobal.net user=test,Feb 9 17:15:08,Anomaly
24659,-10327872,3345308,Feb,9,17:15:08,combo,sshd(pam_unix),4434.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-68-120-97-218.dsl.sntc01.sbcglobal.net user=test,Feb 9 17:15:08,Anomaly
24662,-10327872,3345308,Feb,9,17:15:08,combo,sshd(pam_unix),4429.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-68-120-97-218.dsl.sntc01.sbcglobal.net user=test,Feb 9 17:15:08,Anomaly
24663,-10327872,3345308,Feb,9,17:15:08,combo,sshd(pam_unix),4428.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-68-120-97-218.dsl.sntc01.sbcglobal.net user=test,Feb 9 17:15:08,Anomaly
24656,-10327872,3345308,Feb,9,17:15:08,combo,sshd(pam_unix),4431.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-68-120-97-218.dsl.sntc01.sbcglobal.net user=test,Feb 9 17:15:08,Anomaly
24657,-10327872,3345308,Feb,9,17:15:08,combo,sshd(pam_unix),4433.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-68-120-97-218.dsl.sntc01.sbcglobal.net user=test,Feb 9 17:15:08,Anomaly
24658,-10327872,3345308,Feb,9,17:15:08,combo,sshd(pam_unix),4430.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=adsl-68-120-97-218.dsl.sntc01.sbcglobal.net user=test,Feb 9 17:15:08,Anomaly
24670,-10302885,3370295,Feb,10,00:11:35,combo,sshd(pam_unix),4474.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217-159-208-230-dsl.est.estpak.ee user=root,Feb 10 00:11:35,Anomaly
24669,-10302885,3370295,Feb,10,00:11:35,combo,sshd(pam_unix),4463.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217-159-208-230-dsl.est.estpak.ee user=root,Feb 10 00:11:35,Anomaly
24666,-10302885,3370295,Feb,10,00:11:35,combo,sshd(pam_unix),4467.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217-159-208-230-dsl.est.estpak.ee user=root,Feb 10 00:11:35,Anomaly
24667,-10302885,3370295,Feb,10,00:11:35,combo,sshd(pam_unix),4465.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217-159-208-230-dsl.est.estpak.ee user=root,Feb 10 00:11:35,Anomaly
24668,-10302885,3370295,Feb,10,00:11:35,combo,sshd(pam_unix),4472.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217-159-208-230-dsl.est.estpak.ee user=root,Feb 10 00:11:35,Anomaly
24664,-10302885,3370295,Feb,10,00:11:35,combo,sshd(pam_unix),4462.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217-159-208-230-dsl.est.estpak.ee user=root,Feb 10 00:11:35,Anomaly
24665,-10302885,3370295,Feb,10,00:11:35,combo,sshd(pam_unix),4461.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217-159-208-230-dsl.est.estpak.ee user=root,Feb 10 00:11:35,Anomaly
24671,-10302883,3370297,Feb,10,00:11:37,combo,sshd(pam_unix),4464.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217-159-208-230-dsl.est.estpak.ee user=root,Feb 10 00:11:37,Anomaly
24672,-10302882,3370298,Feb,10,00:11:38,combo,sshd(pam_unix),4477.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217-159-208-230-dsl.est.estpak.ee user=root,Feb 10 00:11:38,Anomaly
24673,-10302882,3370298,Feb,10,00:11:38,combo,sshd(pam_unix),4478.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=217-159-208-230-dsl.est.estpak.ee user=root,Feb 10 00:11:38,Anomaly
24674,-10281858,3391322,Feb,10,06:02:02,combo,sshd(pam_unix),4481.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:02,Anomaly
24675,-10281854,3391326,Feb,10,06:02:06,combo,sshd(pam_unix),4483.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:06,Anomaly
24676,-10281849,3391331,Feb,10,06:02:11,combo,sshd(pam_unix),4485.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:11,Anomaly
24677,-10281848,3391332,Feb,10,06:02:12,combo,sshd(pam_unix),4487.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:12,Anomaly
24679,-10281847,3391333,Feb,10,06:02:13,combo,sshd(pam_unix),4491.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:13,Anomaly
24678,-10281847,3391333,Feb,10,06:02:13,combo,sshd(pam_unix),4489.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:13,Anomaly
24680,-10281844,3391336,Feb,10,06:02:16,combo,sshd(pam_unix),4493.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:16,Anomaly
24681,-10281841,3391339,Feb,10,06:02:19,combo,sshd(pam_unix),4495.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:19,Anomaly
24682,-10281840,3391340,Feb,10,06:02:20,combo,sshd(pam_unix),4497.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:20,Anomaly
24683,-10281839,3391341,Feb,10,06:02:21,combo,sshd(pam_unix),4499.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:21,Anomaly
24686,-10281837,3391343,Feb,10,06:02:23,combo,sshd(pam_unix),4505.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:23,Anomaly
24684,-10281837,3391343,Feb,10,06:02:23,combo,sshd(pam_unix),4501.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:23,Anomaly
24685,-10281837,3391343,Feb,10,06:02:23,combo,sshd(pam_unix),4503.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:23,Anomaly
24687,-10281834,3391346,Feb,10,06:02:26,combo,sshd(pam_unix),4507.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:26,Anomaly
24688,-10281830,3391350,Feb,10,06:02:30,combo,sshd(pam_unix),4509.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:30,Anomaly
24689,-10281830,3391350,Feb,10,06:02:30,combo,sshd(pam_unix),4511.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:30,Anomaly
24690,-10281829,3391351,Feb,10,06:02:31,combo,sshd(pam_unix),4513.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=web003.knoxville.xxpansion.net user=root,Feb 10 06:02:31,Anomaly
24692,-10276378,3396802,Feb,10,07:33:22,combo,sshd(pam_unix),4519.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.varpalota.hu user=root,Feb 10 07:33:22,Anomaly
24691,-10276378,3396802,Feb,10,07:33:22,combo,sshd(pam_unix),4520.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.varpalota.hu user=root,Feb 10 07:33:22,Anomaly
24693,-10276378,3396802,Feb,10,07:33:22,combo,sshd(pam_unix),4518.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=mail.varpalota.hu user=root,Feb 10 07:33:22,Anomaly
24701,-10275779,3397401,Feb,10,07:43:21,combo,sshd(pam_unix),4554.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.0.200.7,Feb 10 07:43:21,Anomaly
24700,-10275779,3397401,Feb,10,07:43:21,combo,unix_chkpwd,4568.0,check pass; user unknown,Feb 10 07:43:21,Normal
24713,-10275779,3397401,Feb,10,07:43:21,combo,sshd(pam_unix),4551.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.0.200.7,Feb 10 07:43:21,Anomaly
24712,-10275779,3397401,Feb,10,07:43:21,combo,sshd(pam_unix),4550.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.0.200.7,Feb 10 07:43:21,Anomaly
24703,-10275779,3397401,Feb,10,07:43:21,combo,unix_chkpwd,4575.0,check pass; user unknown,Feb 10 07:43:21,Normal
24702,-10275779,3397401,Feb,10,07:43:21,combo,unix_chkpwd,4576.0,check pass; user unknown,Feb 10 07:43:21,Normal
24711,-10275779,3397401,Feb,10,07:43:21,combo,sshd(pam_unix),4548.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.0.200.7,Feb 10 07:43:21,Anomaly
24710,-10275779,3397401,Feb,10,07:43:21,combo,sshd(pam_unix),4549.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.0.200.7,Feb 10 07:43:21,Anomaly
24707,-10275779,3397401,Feb,10,07:43:21,combo,unix_chkpwd,4570.0,check pass; user unknown,Feb 10 07:43:21,Normal
24706,-10275779,3397401,Feb,10,07:43:21,combo,unix_chkpwd,4572.0,check pass; user unknown,Feb 10 07:43:21,Normal
24704,-10275779,3397401,Feb,10,07:43:21,combo,unix_chkpwd,4574.0,check pass; user unknown,Feb 10 07:43:21,Normal
24705,-10275779,3397401,Feb,10,07:43:21,combo,unix_chkpwd,4573.0,check pass; user unknown,Feb 10 07:43:21,Normal
24709,-10275779,3397401,Feb,10,07:43:21,combo,sshd(pam_unix),4555.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.0.200.7,Feb 10 07:43:21,Anomaly
24708,-10275779,3397401,Feb,10,07:43:21,combo,sshd(pam_unix),4553.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.0.200.7,Feb 10 07:43:21,Anomaly
24698,-10275779,3397401,Feb,10,07:43:21,combo,unix_chkpwd,4567.0,check pass; user unknown,Feb 10 07:43:21,Normal
24694,-10275779,3397401,Feb,10,07:43:21,combo,unix_chkpwd,4569.0,check pass; user unknown,Feb 10 07:43:21,Normal
24697,-10275779,3397401,Feb,10,07:43:21,combo,sshd(pam_unix),4547.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.0.200.7,Feb 10 07:43:21,Anomaly
24696,-10275779,3397401,Feb,10,07:43:21,combo,unix_chkpwd,4571.0,check pass; user unknown,Feb 10 07:43:21,Normal
24695,-10275779,3397401,Feb,10,07:43:21,combo,sshd(pam_unix),4556.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.0.200.7,Feb 10 07:43:21,Anomaly
24699,-10275779,3397401,Feb,10,07:43:21,combo,sshd(pam_unix),4552.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=210.0.200.7,Feb 10 07:43:21,Anomaly
24728,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4579.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24729,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4578.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24714,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4595.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24715,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4592.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24732,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4584.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24717,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4591.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24733,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4582.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24734,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4596.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24716,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4597.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24722,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4585.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24725,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4581.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24724,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4589.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24723,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4594.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24721,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4593.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24730,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4587.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24731,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4583.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24719,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4590.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24718,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4588.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24727,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4580.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24726,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4577.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24720,-10249126,3424054,Feb,10,15:07:34,combo,ftpd,4586.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:34 2006,Feb 10 15:07:34,Normal
24736,-10249125,3424055,Feb,10,15:07:35,combo,ftpd,4599.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:35 2006,Feb 10 15:07:35,Normal
24735,-10249125,3424055,Feb,10,15:07:35,combo,ftpd,4598.0,connection from 208.34.235.251 (mail.nrms.org) at Fri Feb 10 15:07:35 2006,Feb 10 15:07:35,Normal
24738,-10224841,3448339,Feb,10,21:52:19,combo,ftpd,4600.0,getpeername (ftpd): Transport endpoint is not connected,Feb 10 21:52:19,Normal
24737,-10224841,3448339,Feb,10,21:52:19,combo,xinetd,4600.0,warning: can't get client address: Connection reset by peer,Feb 10 21:52:19,Anomaly
24739,-10224680,3448500,Feb,10,21:55:00,combo,ftpd,4601.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:55:00 2006,Feb 10 21:55:00,Normal
24740,-10224669,3448511,Feb,10,21:55:11,combo,ftpd,4602.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:55:11 2006,Feb 10 21:55:11,Normal
24741,-10224661,3448519,Feb,10,21:55:19,combo,ftpd,4603.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:55:19 2006,Feb 10 21:55:19,Normal
24742,-10224656,3448524,Feb,10,21:55:24,combo,ftpd,4604.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:55:24 2006,Feb 10 21:55:24,Normal
24743,-10224651,3448529,Feb,10,21:55:29,combo,ftpd,4605.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:55:29 2006,Feb 10 21:55:29,Normal
24744,-10224645,3448535,Feb,10,21:55:35,combo,ftpd,4606.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:55:35 2006,Feb 10 21:55:35,Normal
24745,-10224640,3448540,Feb,10,21:55:40,combo,ftpd,4607.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:55:40 2006,Feb 10 21:55:40,Normal
24746,-10224635,3448545,Feb,10,21:55:45,combo,ftpd,4608.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:55:45 2006,Feb 10 21:55:45,Normal
24747,-10224630,3448550,Feb,10,21:55:50,combo,ftpd,4609.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:55:50 2006,Feb 10 21:55:50,Normal
24748,-10224625,3448555,Feb,10,21:55:55,combo,ftpd,4610.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:55:55 2006,Feb 10 21:55:55,Normal
24749,-10224620,3448560,Feb,10,21:56:00,combo,ftpd,4611.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:56:00 2006,Feb 10 21:56:00,Normal
24750,-10224614,3448566,Feb,10,21:56:06,combo,ftpd,4612.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:56:06 2006,Feb 10 21:56:06,Normal
24751,-10224609,3448571,Feb,10,21:56:11,combo,ftpd,4613.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:56:11 2006,Feb 10 21:56:11,Normal
24752,-10224604,3448576,Feb,10,21:56:16,combo,ftpd,4614.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:56:16 2006,Feb 10 21:56:16,Normal
24753,-10224599,3448581,Feb,10,21:56:21,combo,ftpd,4615.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:56:21 2006,Feb 10 21:56:21,Normal
24754,-10224594,3448586,Feb,10,21:56:26,combo,ftpd,4616.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:56:26 2006,Feb 10 21:56:26,Normal
24755,-10224588,3448592,Feb,10,21:56:32,combo,ftpd,4617.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:56:32 2006,Feb 10 21:56:32,Normal
24756,-10224583,3448597,Feb,10,21:56:37,combo,ftpd,4618.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:56:37 2006,Feb 10 21:56:37,Normal
24757,-10224578,3448602,Feb,10,21:56:42,combo,ftpd,4619.0,connection from 85.219.160.32 (host-32-160.users.bzimage.us) at Fri Feb 10 21:56:42 2006,Feb 10 21:56:42,Normal
24765,-10206939,3466241,Feb,11,02:50:41,combo,ftpd,4627.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:41 2006,Feb 11 02:50:41,Normal
24764,-10206939,3466241,Feb,11,02:50:41,combo,ftpd,4626.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:41 2006,Feb 11 02:50:41,Normal
24762,-10206939,3466241,Feb,11,02:50:41,combo,ftpd,4624.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:41 2006,Feb 11 02:50:41,Normal
24763,-10206939,3466241,Feb,11,02:50:41,combo,ftpd,4625.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:41 2006,Feb 11 02:50:41,Normal
24760,-10206939,3466241,Feb,11,02:50:41,combo,ftpd,4623.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:41 2006,Feb 11 02:50:41,Normal
24761,-10206939,3466241,Feb,11,02:50:41,combo,ftpd,4620.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:41 2006,Feb 11 02:50:41,Normal
24759,-10206939,3466241,Feb,11,02:50:41,combo,ftpd,4622.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:41 2006,Feb 11 02:50:41,Normal
24758,-10206939,3466241,Feb,11,02:50:41,combo,ftpd,4621.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:41 2006,Feb 11 02:50:41,Normal
24776,-10206929,3466251,Feb,11,02:50:51,combo,ftpd,4637.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:51 2006,Feb 11 02:50:51,Normal
24766,-10206929,3466251,Feb,11,02:50:51,combo,ftpd,4629.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:51 2006,Feb 11 02:50:51,Normal
24775,-10206929,3466251,Feb,11,02:50:51,combo,ftpd,4638.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:51 2006,Feb 11 02:50:51,Normal
24774,-10206929,3466251,Feb,11,02:50:51,combo,ftpd,4630.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:51 2006,Feb 11 02:50:51,Normal
24773,-10206929,3466251,Feb,11,02:50:51,combo,ftpd,4636.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:51 2006,Feb 11 02:50:51,Normal
24767,-10206929,3466251,Feb,11,02:50:51,combo,ftpd,4632.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:51 2006,Feb 11 02:50:51,Normal
24770,-10206929,3466251,Feb,11,02:50:51,combo,ftpd,4634.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:51 2006,Feb 11 02:50:51,Normal
24771,-10206929,3466251,Feb,11,02:50:51,combo,ftpd,4631.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:51 2006,Feb 11 02:50:51,Normal
24769,-10206929,3466251,Feb,11,02:50:51,combo,ftpd,4633.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:51 2006,Feb 11 02:50:51,Normal
24768,-10206929,3466251,Feb,11,02:50:51,combo,ftpd,4628.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:51 2006,Feb 11 02:50:51,Normal
24772,-10206929,3466251,Feb,11,02:50:51,combo,ftpd,4635.0,connection from 84.184.71.145 (p54B84791.dip0.t-ipconnect.de) at Sat Feb 11 02:50:51 2006,Feb 11 02:50:51,Normal
24778,-10173840,3499340,Feb,11,12:02:20,combo,sshd(pam_unix),4652.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.178.20.170 user=test,Feb 11 12:02:20,Anomaly
24779,-10173840,3499340,Feb,11,12:02:20,combo,sshd(pam_unix),4659.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.178.20.170 user=test,Feb 11 12:02:20,Anomaly
24777,-10173840,3499340,Feb,11,12:02:20,combo,sshd(pam_unix),4650.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.178.20.170 user=test,Feb 11 12:02:20,Anomaly
24780,-10173840,3499340,Feb,11,12:02:20,combo,sshd(pam_unix),4653.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.178.20.170 user=test,Feb 11 12:02:20,Anomaly
24781,-10173839,3499341,Feb,11,12:02:21,combo,sshd(pam_unix),4658.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.178.20.170 user=test,Feb 11 12:02:21,Anomaly
24783,-10173839,3499341,Feb,11,12:02:21,combo,sshd(pam_unix),4654.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.178.20.170 user=test,Feb 11 12:02:21,Anomaly
24782,-10173839,3499341,Feb,11,12:02:21,combo,sshd(pam_unix),4661.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.178.20.170 user=test,Feb 11 12:02:21,Anomaly
24784,-10173838,3499342,Feb,11,12:02:22,combo,sshd(pam_unix),4663.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.178.20.170 user=test,Feb 11 12:02:22,Anomaly
24785,-10173838,3499342,Feb,11,12:02:22,combo,sshd(pam_unix),4666.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.178.20.170 user=test,Feb 11 12:02:22,Anomaly
24786,-10173836,3499344,Feb,11,12:02:24,combo,sshd(pam_unix),4668.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.178.20.170 user=test,Feb 11 12:02:24,Anomaly
24794,-10162833,3510347,Feb,11,15:05:47,combo,ftpd,4676.0,connection from 210.114.223.52 () at Sat Feb 11 15:05:47 2006,Feb 11 15:05:47,Normal
24793,-10162833,3510347,Feb,11,15:05:47,combo,ftpd,4674.0,connection from 210.114.223.52 () at Sat Feb 11 15:05:47 2006,Feb 11 15:05:47,Normal
24792,-10162833,3510347,Feb,11,15:05:47,combo,ftpd,4678.0,connection from 210.114.223.52 () at Sat Feb 11 15:05:47 2006,Feb 11 15:05:47,Normal
24795,-10162833,3510347,Feb,11,15:05:47,combo,ftpd,4671.0,connection from 210.114.223.52 () at Sat Feb 11 15:05:47 2006,Feb 11 15:05:47,Normal
24787,-10162833,3510347,Feb,11,15:05:47,combo,ftpd,4675.0,connection from 210.114.223.52 () at Sat Feb 11 15:05:47 2006,Feb 11 15:05:47,Normal
24789,-10162833,3510347,Feb,11,15:05:47,combo,ftpd,4677.0,connection from 210.114.223.52 () at Sat Feb 11 15:05:47 2006,Feb 11 15:05:47,Normal
24788,-10162833,3510347,Feb,11,15:05:47,combo,ftpd,4670.0,connection from 210.114.223.52 () at Sat Feb 11 15:05:47 2006,Feb 11 15:05:47,Normal
24790,-10162833,3510347,Feb,11,15:05:47,combo,ftpd,4672.0,connection from 210.114.223.52 () at Sat Feb 11 15:05:47 2006,Feb 11 15:05:47,Normal
24791,-10162833,3510347,Feb,11,15:05:47,combo,ftpd,4673.0,connection from 210.114.223.52 () at Sat Feb 11 15:05:47 2006,Feb 11 15:05:47,Normal
24811,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4694.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24810,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4695.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24805,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4690.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24812,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4696.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24800,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4684.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24801,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4685.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24796,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4680.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24797,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4688.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24798,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4681.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24799,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4679.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24806,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4686.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24807,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4691.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24809,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4689.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24808,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4692.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24803,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4682.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24813,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4693.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24814,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4698.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24815,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4697.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24804,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4683.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24802,-10142940,3530240,Feb,11,20:37:20,combo,ftpd,4687.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:20 2006,Feb 11 20:37:20,Normal
24818,-10142938,3530242,Feb,11,20:37:22,combo,ftpd,4701.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:22 2006,Feb 11 20:37:22,Normal
24816,-10142938,3530242,Feb,11,20:37:22,combo,ftpd,4699.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:22 2006,Feb 11 20:37:22,Normal
24817,-10142938,3530242,Feb,11,20:37:22,combo,ftpd,4700.0,connection from 204.92.104.1 (dco001.actionhosting.ca) at Sat Feb 11 20:37:22 2006,Feb 11 20:37:22,Normal
24821,-10107873,3565307,Feb,12,06:21:47,combo,sshd(pam_unix),4703.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=66-195-16-3.dimenoc.com user=root,Feb 12 06:21:47,Anomaly
24820,-10107873,3565307,Feb,12,06:21:47,combo,sshd(pam_unix),4704.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=66-195-16-3.dimenoc.com user=root,Feb 12 06:21:47,Anomaly
24819,-10107873,3565307,Feb,12,06:21:47,combo,sshd(pam_unix),4702.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=66-195-16-3.dimenoc.com user=root,Feb 12 06:21:47,Anomaly
24822,-10107806,3565374,Feb,12,06:22:54,combo,sshd(pam_unix),4710.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=66-195-16-3.dimenoc.com user=root,Feb 12 06:22:54,Anomaly
24823,-10107806,3565374,Feb,12,06:22:54,combo,sshd(pam_unix),4711.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=66-195-16-3.dimenoc.com user=root,Feb 12 06:22:54,Anomaly
24826,-10092284,3580896,Feb,12,10:41:36,combo,sshd(pam_unix),4731.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=165.132.224.7 user=root,Feb 12 10:41:36,Anomaly
24827,-10092284,3580896,Feb,12,10:41:36,combo,sshd(pam_unix),4727.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=165.132.224.7 user=root,Feb 12 10:41:36,Anomaly
24824,-10092284,3580896,Feb,12,10:41:36,combo,sshd(pam_unix),4726.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=165.132.224.7 user=root,Feb 12 10:41:36,Anomaly
24825,-10092284,3580896,Feb,12,10:41:36,combo,sshd(pam_unix),4728.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=165.132.224.7 user=root,Feb 12 10:41:36,Anomaly
24831,-10092284,3580896,Feb,12,10:41:36,combo,sshd(pam_unix),4739.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=165.132.224.7 user=root,Feb 12 10:41:36,Anomaly
24833,-10092284,3580896,Feb,12,10:41:36,combo,sshd(pam_unix),4743.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=165.132.224.7 user=root,Feb 12 10:41:36,Anomaly
24829,-10092284,3580896,Feb,12,10:41:36,combo,sshd(pam_unix),4732.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=165.132.224.7 user=root,Feb 12 10:41:36,Anomaly
24828,-10092284,3580896,Feb,12,10:41:36,combo,sshd(pam_unix),4736.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=165.132.224.7 user=root,Feb 12 10:41:36,Anomaly
24830,-10092284,3580896,Feb,12,10:41:36,combo,sshd(pam_unix),4730.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=165.132.224.7 user=root,Feb 12 10:41:36,Anomaly
24832,-10092284,3580896,Feb,12,10:41:36,combo,sshd(pam_unix),4740.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=165.132.224.7 user=root,Feb 12 10:41:36,Anomaly
24834,-10083306,3589874,Feb,12,13:11:14,combo,xinetd,4760.0,warning: can't get client address: Connection reset by peer,Feb 12 13:11:14,Anomaly
24835,-10083306,3589874,Feb,12,13:11:14,combo,xinetd,4761.0,warning: can't get client address: Connection reset by peer,Feb 12 13:11:14,Anomaly
24847,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4748.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24843,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4754.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24840,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4761.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24841,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4756.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24838,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4760.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24839,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4758.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24859,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4763.0,setsockopt (IP_TOS): Operation not supported,Feb 12 13:11:15,Normal
24858,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4762.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24857,-10083305,3589875,Feb,12,13:11:15,combo,xinetd,4767.0,warning: can't get client address: Connection reset by peer,Feb 12 13:11:15,Anomaly
24856,-10083305,3589875,Feb,12,13:11:15,combo,xinetd,4766.0,warning: can't get client address: Connection reset by peer,Feb 12 13:11:15,Anomaly
24842,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4750.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24864,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4767.0,setsockopt (IP_TOS): Operation not supported,Feb 12 13:11:15,Normal
24865,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4768.0,setsockopt (IP_TOS): Operation not supported,Feb 12 13:11:15,Normal
24836,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4757.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24837,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4759.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24855,-10083305,3589875,Feb,12,13:11:15,combo,xinetd,4765.0,warning: can't get client address: Connection reset by peer,Feb 12 13:11:15,Anomaly
24854,-10083305,3589875,Feb,12,13:11:15,combo,xinetd,4764.0,warning: can't get client address: Connection reset by peer,Feb 12 13:11:15,Anomaly
24862,-10083305,3589875,Feb,12,13:11:15,combo,xinetd,4768.0,warning: can't get client address: Connection reset by peer,Feb 12 13:11:15,Anomaly
24860,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4764.0,setsockopt (IP_TOS): Operation not supported,Feb 12 13:11:15,Normal
24863,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4766.0,setsockopt (IP_TOS): Operation not supported,Feb 12 13:11:15,Normal
24845,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4746.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24846,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4747.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24844,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4753.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24861,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4765.0,setsockopt (IP_TOS): Operation not supported,Feb 12 13:11:15,Normal
24853,-10083305,3589875,Feb,12,13:11:15,combo,xinetd,4763.0,warning: can't get client address: Connection reset by peer,Feb 12 13:11:15,Anomaly
24852,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4752.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24851,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4755.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24850,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4751.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24849,-10083305,3589875,Feb,12,13:11:15,combo,ftpd,4749.0,getpeername (ftpd): Transport endpoint is not connected,Feb 12 13:11:15,Normal
24848,-10083305,3589875,Feb,12,13:11:15,combo,xinetd,4762.0,warning: can't get client address: Connection reset by peer,Feb 12 13:11:15,Anomaly
24868,-10083297,3589883,Feb,12,13:11:23,combo,ftpd,4767.0,connection from 101.118.47.108 () at Sun Feb 12 13:11:23 2006,Feb 12 13:11:23,Normal
24869,-10083297,3589883,Feb,12,13:11:23,combo,ftpd,4763.0,connection from 101.118.47.108 () at Sun Feb 12 13:11:23 2006,Feb 12 13:11:23,Normal
24870,-10083297,3589883,Feb,12,13:11:23,combo,ftpd,4766.0,connection from 101.118.47.108 () at Sun Feb 12 13:11:23 2006,Feb 12 13:11:23,Normal
24871,-10083297,3589883,Feb,12,13:11:23,combo,ftpd,4768.0,connection from 101.118.47.108 () at Sun Feb 12 13:11:23 2006,Feb 12 13:11:23,Normal
24867,-10083297,3589883,Feb,12,13:11:23,combo,ftpd,4765.0,connection from 101.118.47.108 () at Sun Feb 12 13:11:23 2006,Feb 12 13:11:23,Normal
24866,-10083297,3589883,Feb,12,13:11:23,combo,ftpd,4764.0,connection from 101.118.47.108 () at Sun Feb 12 13:11:23 2006,Feb 12 13:11:23,Normal
24877,-10059848,3613332,Feb,12,19:42:12,combo,ftpd,4779.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:12 2006,Feb 12 19:42:12,Normal
24878,-10059848,3613332,Feb,12,19:42:12,combo,ftpd,4780.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:12 2006,Feb 12 19:42:12,Normal
24880,-10059848,3613332,Feb,12,19:42:12,combo,ftpd,4777.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:12 2006,Feb 12 19:42:12,Normal
24872,-10059848,3613332,Feb,12,19:42:12,combo,ftpd,4772.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:12 2006,Feb 12 19:42:12,Normal
24879,-10059848,3613332,Feb,12,19:42:12,combo,ftpd,4782.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:12 2006,Feb 12 19:42:12,Normal
24881,-10059848,3613332,Feb,12,19:42:12,combo,ftpd,4771.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:12 2006,Feb 12 19:42:12,Normal
24885,-10059848,3613332,Feb,12,19:42:12,combo,ftpd,4781.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:12 2006,Feb 12 19:42:12,Normal
24884,-10059848,3613332,Feb,12,19:42:12,combo,ftpd,4773.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:12 2006,Feb 12 19:42:12,Normal
24882,-10059848,3613332,Feb,12,19:42:12,combo,ftpd,4778.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:12 2006,Feb 12 19:42:12,Normal
24883,-10059848,3613332,Feb,12,19:42:12,combo,ftpd,4774.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:12 2006,Feb 12 19:42:12,Normal
24876,-10059848,3613332,Feb,12,19:42:12,combo,ftpd,4769.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:12 2006,Feb 12 19:42:12,Normal
24874,-10059848,3613332,Feb,12,19:42:12,combo,ftpd,4775.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:12 2006,Feb 12 19:42:12,Normal
24875,-10059848,3613332,Feb,12,19:42:12,combo,ftpd,4770.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:12 2006,Feb 12 19:42:12,Normal
24873,-10059848,3613332,Feb,12,19:42:12,combo,ftpd,4776.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:12 2006,Feb 12 19:42:12,Normal
24893,-10059844,3613336,Feb,12,19:42:16,combo,ftpd,4791.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:16 2006,Feb 12 19:42:16,Normal
24892,-10059844,3613336,Feb,12,19:42:16,combo,ftpd,4790.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:16 2006,Feb 12 19:42:16,Normal
24891,-10059844,3613336,Feb,12,19:42:16,combo,ftpd,4787.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:16 2006,Feb 12 19:42:16,Normal
24894,-10059844,3613336,Feb,12,19:42:16,combo,ftpd,4789.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:16 2006,Feb 12 19:42:16,Normal
24887,-10059844,3613336,Feb,12,19:42:16,combo,ftpd,4784.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:16 2006,Feb 12 19:42:16,Normal
24888,-10059844,3613336,Feb,12,19:42:16,combo,ftpd,4783.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:16 2006,Feb 12 19:42:16,Normal
24889,-10059844,3613336,Feb,12,19:42:16,combo,ftpd,4786.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:16 2006,Feb 12 19:42:16,Normal
24886,-10059844,3613336,Feb,12,19:42:16,combo,ftpd,4785.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:16 2006,Feb 12 19:42:16,Normal
24890,-10059844,3613336,Feb,12,19:42:16,combo,ftpd,4788.0,connection from 85.187.145.160 () at Sun Feb 12 19:42:16 2006,Feb 12 19:42:16,Normal
24896,-10030110,3643070,Feb,13,03:57:50,combo,sshd(pam_unix),4792.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=208-151-246-182.dq1sn.easystreet.com,Feb 13 03:57:50,Anomaly
24895,-10030110,3643070,Feb,13,03:57:50,combo,unix_chkpwd,4798.0,check pass; user unknown,Feb 13 03:57:50,Normal
24897,-9995556,3677624,Feb,13,13:33:44,combo,sshd(pam_unix),4801.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.189.216.84 user=test,Feb 13 13:33:44,Anomaly
24898,-9995556,3677624,Feb,13,13:33:44,combo,sshd(pam_unix),4799.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.189.216.84 user=test,Feb 13 13:33:44,Anomaly
24899,-9995555,3677625,Feb,13,13:33:45,combo,sshd(pam_unix),4803.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.189.216.84 user=test,Feb 13 13:33:45,Anomaly
24902,-9995554,3677626,Feb,13,13:33:46,combo,sshd(pam_unix),4805.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.189.216.84 user=test,Feb 13 13:33:46,Anomaly
24903,-9995554,3677626,Feb,13,13:33:46,combo,sshd(pam_unix),4811.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.189.216.84 user=test,Feb 13 13:33:46,Anomaly
24900,-9995554,3677626,Feb,13,13:33:46,combo,sshd(pam_unix),4806.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.189.216.84 user=test,Feb 13 13:33:46,Anomaly
24901,-9995554,3677626,Feb,13,13:33:46,combo,sshd(pam_unix),4807.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.189.216.84 user=test,Feb 13 13:33:46,Anomaly
24906,-9995553,3677627,Feb,13,13:33:47,combo,sshd(pam_unix),4816.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.189.216.84 user=test,Feb 13 13:33:47,Anomaly
24905,-9995553,3677627,Feb,13,13:33:47,combo,sshd(pam_unix),4814.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.189.216.84 user=test,Feb 13 13:33:47,Anomaly
24904,-9995553,3677627,Feb,13,13:33:47,combo,sshd(pam_unix),4812.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=218.189.216.84 user=test,Feb 13 13:33:47,Anomaly
24907,-9987030,3686150,Feb,13,15:55:50,combo,sshd(pam_unix),4819.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.107.1.198 user=root,Feb 13 15:55:50,Anomaly
24908,-9987020,3686160,Feb,13,15:56:00,combo,sshd(pam_unix),4821.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.107.1.198 user=root,Feb 13 15:56:00,Anomaly
24909,-9987010,3686170,Feb,13,15:56:10,combo,sshd(pam_unix),4823.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.107.1.198 user=root,Feb 13 15:56:10,Anomaly
24910,-9987007,3686173,Feb,13,15:56:13,combo,sshd(pam_unix),4825.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.107.1.198 user=root,Feb 13 15:56:13,Anomaly
24911,-9987000,3686180,Feb,13,15:56:20,combo,sshd(pam_unix),4827.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.107.1.198 user=root,Feb 13 15:56:20,Anomaly
24912,-9986997,3686183,Feb,13,15:56:23,combo,sshd(pam_unix),4829.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.107.1.198 user=root,Feb 13 15:56:23,Anomaly
24913,-9986990,3686190,Feb,13,15:56:30,combo,sshd(pam_unix),4831.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.107.1.198 user=root,Feb 13 15:56:30,Anomaly
24914,-9986987,3686193,Feb,13,15:56:33,combo,sshd(pam_unix),4833.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.107.1.198 user=root,Feb 13 15:56:33,Anomaly
24915,-9986980,3686200,Feb,13,15:56:40,combo,sshd(pam_unix),4835.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=61.107.1.198 user=root,Feb 13 15:56:40,Anomaly
24921,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4853.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24933,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4840.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24932,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4838.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24937,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4841.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24918,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4858.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24934,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4842.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24928,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4848.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24929,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4846.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24916,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4857.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24920,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4855.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24919,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4844.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24935,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4856.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24927,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4845.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24936,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4847.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24924,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4849.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24923,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4852.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24922,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4839.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24917,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4851.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24926,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4854.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24925,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4850.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24930,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4837.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24931,-9979689,3693491,Feb,13,17:58:11,combo,ftpd,4843.0,connection from 202.147.190.179 (host202-147-190-179.khi.dancom.net.pk) at Mon Feb 13 17:58:11 2006,Feb 13 17:58:11,Normal
24946,-9951842,3721338,Feb,14,01:42:18,combo,unix_chkpwd,4909.0,check pass; user unknown,Feb 14 01:42:18,Normal
24945,-9951842,3721338,Feb,14,01:42:18,combo,sshd(pam_unix),4894.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=debsnet1.americannetlink.propagation.net,Feb 14 01:42:18,Anomaly
24947,-9951842,3721338,Feb,14,01:42:18,combo,sshd(pam_unix),4886.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=debsnet1.americannetlink.propagation.net,Feb 14 01:42:18,Anomaly
24939,-9951842,3721338,Feb,14,01:42:18,combo,sshd(pam_unix),4885.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=debsnet1.americannetlink.propagation.net,Feb 14 01:42:18,Anomaly
24942,-9951842,3721338,Feb,14,01:42:18,combo,unix_chkpwd,4906.0,check pass; user unknown,Feb 14 01:42:18,Normal
24941,-9951842,3721338,Feb,14,01:42:18,combo,sshd(pam_unix),4889.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=debsnet1.americannetlink.propagation.net,Feb 14 01:42:18,Anomaly
24956,-9951842,3721338,Feb,14,01:42:18,combo,sshd(pam_unix),4893.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=debsnet1.americannetlink.propagation.net,Feb 14 01:42:18,Anomaly
24955,-9951842,3721338,Feb,14,01:42:18,combo,sshd(pam_unix),4892.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=debsnet1.americannetlink.propagation.net,Feb 14 01:42:18,Anomaly
24944,-9951842,3721338,Feb,14,01:42:18,combo,unix_chkpwd,4907.0,check pass; user unknown,Feb 14 01:42:18,Normal
24949,-9951842,3721338,Feb,14,01:42:18,combo,sshd(pam_unix),4887.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=debsnet1.americannetlink.propagation.net,Feb 14 01:42:18,Anomaly
24957,-9951842,3721338,Feb,14,01:42:18,combo,sshd(pam_unix),4890.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=debsnet1.americannetlink.propagation.net,Feb 14 01:42:18,Anomaly
24953,-9951842,3721338,Feb,14,01:42:18,combo,unix_chkpwd,4908.0,check pass; user unknown,Feb 14 01:42:18,Normal
24951,-9951842,3721338,Feb,14,01:42:18,combo,unix_chkpwd,4910.0,check pass; user unknown,Feb 14 01:42:18,Normal
24940,-9951842,3721338,Feb,14,01:42:18,combo,unix_chkpwd,4905.0,check pass; user unknown,Feb 14 01:42:18,Normal
24948,-9951842,3721338,Feb,14,01:42:18,combo,unix_chkpwd,4913.0,check pass; user unknown,Feb 14 01:42:18,Normal
24938,-9951842,3721338,Feb,14,01:42:18,combo,unix_chkpwd,4911.0,check pass; user unknown,Feb 14 01:42:18,Normal
24954,-9951842,3721338,Feb,14,01:42:18,combo,sshd(pam_unix),4888.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=debsnet1.americannetlink.propagation.net,Feb 14 01:42:18,Anomaly
24952,-9951842,3721338,Feb,14,01:42:18,combo,unix_chkpwd,4914.0,check pass; user unknown,Feb 14 01:42:18,Normal
24943,-9951842,3721338,Feb,14,01:42:18,combo,sshd(pam_unix),4891.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=debsnet1.americannetlink.propagation.net,Feb 14 01:42:18,Anomaly
24950,-9951842,3721338,Feb,14,01:42:18,combo,unix_chkpwd,4912.0,check pass; user unknown,Feb 14 01:42:18,Normal
24958,-9820575,3852605,Feb,15,14:10:05,combo,sshd(pam_unix),4973.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:05,Anomaly
24959,-9820571,3852609,Feb,15,14:10:09,combo,sshd(pam_unix),4971.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:09,Anomaly
24960,-9820565,3852615,Feb,15,14:10:15,combo,sshd(pam_unix),4975.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:15,Anomaly
24961,-9820565,3852615,Feb,15,14:10:15,combo,sshd(pam_unix),4977.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:15,Anomaly
24963,-9820555,3852625,Feb,15,14:10:25,combo,sshd(pam_unix),4979.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:25,Anomaly
24962,-9820555,3852625,Feb,15,14:10:25,combo,sshd(pam_unix),4980.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:25,Anomaly
24964,-9820550,3852630,Feb,15,14:10:30,combo,sshd(pam_unix),4983.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:30,Anomaly
24965,-9820547,3852633,Feb,15,14:10:33,combo,sshd(pam_unix),4985.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:33,Anomaly
24966,-9820545,3852635,Feb,15,14:10:35,combo,sshd(pam_unix),4987.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:35,Anomaly
24967,-9820545,3852635,Feb,15,14:10:35,combo,sshd(pam_unix),4989.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:35,Anomaly
24968,-9820544,3852636,Feb,15,14:10:36,combo,sshd(pam_unix),4991.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:36,Anomaly
24969,-9820543,3852637,Feb,15,14:10:37,combo,sshd(pam_unix),4993.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:37,Anomaly
24970,-9820541,3852639,Feb,15,14:10:39,combo,sshd(pam_unix),4995.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:39,Anomaly
24971,-9820537,3852643,Feb,15,14:10:43,combo,sshd(pam_unix),4997.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:43,Anomaly
24972,-9820537,3852643,Feb,15,14:10:43,combo,sshd(pam_unix),4999.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:43,Anomaly
24973,-9820535,3852645,Feb,15,14:10:45,combo,sshd(pam_unix),5001.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:45,Anomaly
24974,-9820535,3852645,Feb,15,14:10:45,combo,sshd(pam_unix),5003.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:45,Anomaly
24975,-9820534,3852646,Feb,15,14:10:46,combo,sshd(pam_unix),5005.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:46,Anomaly
24976,-9820533,3852647,Feb,15,14:10:47,combo,sshd(pam_unix),5007.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:47,Anomaly
24977,-9820531,3852649,Feb,15,14:10:49,combo,sshd(pam_unix),5009.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:49,Anomaly
24978,-9820527,3852653,Feb,15,14:10:53,combo,sshd(pam_unix),5011.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=203.95.1.26 user=root,Feb 15 14:10:53,Anomaly
24980,-9807347,3865833,Feb,15,17:50:33,combo,sshd(pam_unix),5024.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=net2.program.com.tw,Feb 15 17:50:33,Anomaly
24979,-9807347,3865833,Feb,15,17:50:33,combo,unix_chkpwd,5026.0,check pass; user unknown,Feb 15 17:50:33,Normal
24981,-9803529,3869651,Feb,15,18:54:11,combo,sshd(pam_unix),5027.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=xdsl-81-173-145-209.netcologne.de user=test,Feb 15 18:54:11,Anomaly
24982,-9803529,3869651,Feb,15,18:54:11,combo,sshd(pam_unix),5029.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=xdsl-81-173-145-209.netcologne.de user=test,Feb 15 18:54:11,Anomaly
24983,-9803528,3869652,Feb,15,18:54:12,combo,sshd(pam_unix),5028.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=xdsl-81-173-145-209.netcologne.de user=test,Feb 15 18:54:12,Anomaly
24986,-9803526,3869654,Feb,15,18:54:14,combo,sshd(pam_unix),5039.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=xdsl-81-173-145-209.netcologne.de user=test,Feb 15 18:54:14,Anomaly
24985,-9803526,3869654,Feb,15,18:54:14,combo,sshd(pam_unix),5036.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=xdsl-81-173-145-209.netcologne.de user=test,Feb 15 18:54:14,Anomaly
24984,-9803526,3869654,Feb,15,18:54:14,combo,sshd(pam_unix),5035.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=xdsl-81-173-145-209.netcologne.de user=test,Feb 15 18:54:14,Anomaly
24987,-9803525,3869655,Feb,15,18:54:15,combo,sshd(pam_unix),5030.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=xdsl-81-173-145-209.netcologne.de user=test,Feb 15 18:54:15,Anomaly
24988,-9803522,3869658,Feb,15,18:54:18,combo,sshd(pam_unix),5042.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=xdsl-81-173-145-209.netcologne.de user=test,Feb 15 18:54:18,Anomaly
24989,-9803520,3869660,Feb,15,18:54:20,combo,sshd(pam_unix),5041.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=xdsl-81-173-145-209.netcologne.de user=test,Feb 15 18:54:20,Anomaly
24990,-9801327,3871853,Feb,15,19:30:53,combo,sshd(pam_unix),5047.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=xdsl-81-173-145-209.netcologne.de user=test,Feb 15 19:30:53,Anomaly
24992,-9801325,3871855,Feb,15,19:30:55,combo,sshd(pam_unix),5046.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=xdsl-81-173-145-209.netcologne.de user=test,Feb 15 19:30:55,Anomaly
24991,-9801325,3871855,Feb,15,19:30:55,combo,sshd(pam_unix),5045.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=xdsl-81-173-145-209.netcologne.de user=test,Feb 15 19:30:55,Anomaly
24994,-9801324,3871856,Feb,15,19:30:56,combo,sshd(pam_unix),5052.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=xdsl-81-173-145-209.netcologne.de user=test,Feb 15 19:30:56,Anomaly
24993,-9801324,3871856,Feb,15,19:30:56,combo,sshd(pam_unix),5051.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=xdsl-81-173-145-209.netcologne.de user=test,Feb 15 19:30:56,Anomaly
24995,-9801320,3871860,Feb,15,19:31:00,combo,sshd(pam_unix),5055.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=xdsl-81-173-145-209.netcologne.de user=test,Feb 15 19:31:00,Anomaly
24999,-9724985,3948195,Feb,16,16:43:15,combo,sshd(pam_unix),5111.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=wef.hebiace.edu.cn user=test,Feb 16 16:43:15,Anomaly
24998,-9724985,3948195,Feb,16,16:43:15,combo,sshd(pam_unix),5097.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=wef.hebiace.edu.cn user=test,Feb 16 16:43:15,Anomaly
24997,-9724985,3948195,Feb,16,16:43:15,combo,sshd(pam_unix),5107.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=wef.hebiace.edu.cn user=test,Feb 16 16:43:15,Anomaly
24996,-9724985,3948195,Feb,16,16:43:15,combo,sshd(pam_unix),5110.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=wef.hebiace.edu.cn user=test,Feb 16 16:43:15,Anomaly
25000,-9724985,3948195,Feb,16,16:43:15,combo,sshd(pam_unix),5113.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=wef.hebiace.edu.cn user=test,Feb 16 16:43:15,Anomaly
25002,-9724977,3948203,Feb,16,16:43:23,combo,sshd(pam_unix),5101.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=wef.hebiace.edu.cn user=test,Feb 16 16:43:23,Anomaly
25004,-9724977,3948203,Feb,16,16:43:23,combo,sshd(pam_unix),5098.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=wef.hebiace.edu.cn user=test,Feb 16 16:43:23,Anomaly
25001,-9724977,3948203,Feb,16,16:43:23,combo,sshd(pam_unix),5100.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=wef.hebiace.edu.cn user=test,Feb 16 16:43:23,Anomaly
25003,-9724977,3948203,Feb,16,16:43:23,combo,sshd(pam_unix),5099.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=wef.hebiace.edu.cn user=test,Feb 16 16:43:23,Anomaly
25005,-9724976,3948204,Feb,16,16:43:24,combo,sshd(pam_unix),5108.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=wef.hebiace.edu.cn user=test,Feb 16 16:43:24,Anomaly
25006,-9699208,3973972,Feb,16,23:52:52,combo,sshd(pam_unix),5122.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:52:52,Anomaly
25007,-9699198,3973982,Feb,16,23:53:02,combo,sshd(pam_unix),5124.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:02,Anomaly
25008,-9699189,3973991,Feb,16,23:53:11,combo,sshd(pam_unix),5126.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:11,Anomaly
25009,-9699188,3973992,Feb,16,23:53:12,combo,sshd(pam_unix),5128.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:12,Anomaly
25010,-9699185,3973995,Feb,16,23:53:15,combo,sshd(pam_unix),5130.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:15,Anomaly
25011,-9699179,3974001,Feb,16,23:53:21,combo,sshd(pam_unix),5132.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:21,Anomaly
25012,-9699178,3974002,Feb,16,23:53:22,combo,sshd(pam_unix),5134.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:22,Anomaly
25013,-9699175,3974005,Feb,16,23:53:25,combo,sshd(pam_unix),5136.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:25,Anomaly
25014,-9699169,3974011,Feb,16,23:53:31,combo,sshd(pam_unix),5138.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:31,Anomaly
25015,-9699168,3974012,Feb,16,23:53:32,combo,sshd(pam_unix),5140.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:32,Anomaly
25016,-9699165,3974015,Feb,16,23:53:35,combo,sshd(pam_unix),5142.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:35,Anomaly
25017,-9699159,3974021,Feb,16,23:53:41,combo,sshd(pam_unix),5144.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:41,Anomaly
25018,-9699158,3974022,Feb,16,23:53:42,combo,sshd(pam_unix),5146.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:42,Anomaly
25019,-9699155,3974025,Feb,16,23:53:45,combo,sshd(pam_unix),5148.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:45,Anomaly
25020,-9699149,3974031,Feb,16,23:53:51,combo,sshd(pam_unix),5150.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:51,Anomaly
25021,-9699148,3974032,Feb,16,23:53:52,combo,sshd(pam_unix),5152.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:52,Anomaly
25022,-9699145,3974035,Feb,16,23:53:55,combo,sshd(pam_unix),5154.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:53:55,Anomaly
25023,-9699139,3974041,Feb,16,23:54:01,combo,sshd(pam_unix),5156.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:54:01,Anomaly
25024,-9699138,3974042,Feb,16,23:54:02,combo,sshd(pam_unix),5158.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:54:02,Anomaly
25026,-9699135,3974045,Feb,16,23:54:05,combo,sshd(pam_unix),5162.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:54:05,Anomaly
25025,-9699135,3974045,Feb,16,23:54:05,combo,sshd(pam_unix),5160.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:54:05,Anomaly
25027,-9699129,3974051,Feb,16,23:54:11,combo,sshd(pam_unix),5164.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=69.42.162.212 user=root,Feb 16 23:54:11,Anomaly
25032,-9655042,4018138,Feb,17,12:08:58,combo,sshd(pam_unix),5205.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=68.red-217-126-158.staticip.rima-tde.net user=root,Feb 17 12:08:58,Anomaly
25033,-9655042,4018138,Feb,17,12:08:58,combo,sshd(pam_unix),5211.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=68.red-217-126-158.staticip.rima-tde.net user=root,Feb 17 12:08:58,Anomaly
25029,-9655042,4018138,Feb,17,12:08:58,combo,sshd(pam_unix),5208.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=68.red-217-126-158.staticip.rima-tde.net user=root,Feb 17 12:08:58,Anomaly
25028,-9655042,4018138,Feb,17,12:08:58,combo,sshd(pam_unix),5202.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=68.red-217-126-158.staticip.rima-tde.net user=root,Feb 17 12:08:58,Anomaly
25030,-9655042,4018138,Feb,17,12:08:58,combo,sshd(pam_unix),5204.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=68.red-217-126-158.staticip.rima-tde.net user=root,Feb 17 12:08:58,Anomaly
25031,-9655042,4018138,Feb,17,12:08:58,combo,sshd(pam_unix),5201.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=68.red-217-126-158.staticip.rima-tde.net user=root,Feb 17 12:08:58,Anomaly
25034,-9655041,4018139,Feb,17,12:08:59,combo,sshd(pam_unix),5213.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=68.red-217-126-158.staticip.rima-tde.net user=root,Feb 17 12:08:59,Anomaly
25036,-9655041,4018139,Feb,17,12:08:59,combo,sshd(pam_unix),5216.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=68.red-217-126-158.staticip.rima-tde.net user=root,Feb 17 12:08:59,Anomaly
25035,-9655041,4018139,Feb,17,12:08:59,combo,sshd(pam_unix),5214.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=68.red-217-126-158.staticip.rima-tde.net user=root,Feb 17 12:08:59,Anomaly
25037,-9655041,4018139,Feb,17,12:08:59,combo,sshd(pam_unix),5219.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=68.red-217-126-158.staticip.rima-tde.net user=root,Feb 17 12:08:59,Anomaly
25038,-9644567,4028613,Feb,17,15:03:33,combo,sshd(pam_unix),5226.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=data.nhwsh.tp.edu.tw user=root,Feb 17 15:03:33,Anomaly
25046,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5237.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25055,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5239.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25039,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5236.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25054,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5238.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25047,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5234.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25050,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5240.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25049,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5230.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25042,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5244.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25040,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5243.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25041,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5228.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25053,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5232.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25048,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5229.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25043,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5235.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25051,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5233.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25052,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5231.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25045,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5241.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25044,-9643967,4029213,Feb,17,15:13:33,combo,ftpd,5242.0,connection from 211.72.151.162 () at Fri Feb 17 15:13:33 2006,Feb 17 15:13:33,Normal
25060,-9638882,4034298,Feb,17,16:38:18,combo,sshd(pam_unix),5251.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c-24-7-117-28.hsd1.ca.comcast.net user=root,Feb 17 16:38:18,Anomaly
25062,-9638882,4034298,Feb,17,16:38:18,combo,sshd(pam_unix),5246.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c-24-7-117-28.hsd1.ca.comcast.net user=root,Feb 17 16:38:18,Anomaly
25059,-9638882,4034298,Feb,17,16:38:18,combo,sshd(pam_unix),5250.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c-24-7-117-28.hsd1.ca.comcast.net user=root,Feb 17 16:38:18,Anomaly
25058,-9638882,4034298,Feb,17,16:38:18,combo,sshd(pam_unix),5249.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c-24-7-117-28.hsd1.ca.comcast.net user=root,Feb 17 16:38:18,Anomaly
25057,-9638882,4034298,Feb,17,16:38:18,combo,sshd(pam_unix),5247.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c-24-7-117-28.hsd1.ca.comcast.net user=root,Feb 17 16:38:18,Anomaly
25056,-9638882,4034298,Feb,17,16:38:18,combo,sshd(pam_unix),5248.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c-24-7-117-28.hsd1.ca.comcast.net user=root,Feb 17 16:38:18,Anomaly
25061,-9638882,4034298,Feb,17,16:38:18,combo,sshd(pam_unix),5245.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c-24-7-117-28.hsd1.ca.comcast.net user=root,Feb 17 16:38:18,Anomaly
25064,-9638881,4034299,Feb,17,16:38:19,combo,sshd(pam_unix),5252.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c-24-7-117-28.hsd1.ca.comcast.net user=root,Feb 17 16:38:19,Anomaly
25063,-9638881,4034299,Feb,17,16:38:19,combo,sshd(pam_unix),5253.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=c-24-7-117-28.hsd1.ca.comcast.net user=root,Feb 17 16:38:19,Anomaly
|