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
|
<?php
/*
* Analysis Console for Intrusion Databases (ACID)
*
* Author: Roman Danyliw <rdd@cert.org>, <roman@danyliw.com>
*
* Copyright (C) 2000, 2001 Carnegie Mellon University
* (see the file 'acid_main.php' for license details)
*
* Purpose:
*
*/
function GetSensorIDs($db)
{
$result = $db->acidExecute("SELECT sid FROM sensor;");
while( $myrow = $result->acidFetchRow() ) {
$sensor_ids[] = $myrow[0];
}
$result->acidFreeRows();
return $sensor_ids;
}
function GetSensorName($sid, $db)
{
$name = "";
$temp_sql = "SELECT sid, hostname, interface, filter FROM sensor WHERE sid=".$sid;
$tmp_result = $db->acidExecute($temp_sql);
if ( $tmp_result )
{
$myrow = $tmp_result->acidFetchRow();
$name = $myrow[1].':'.$myrow[2];
if ( $myrow[3] != "" )
$name = $name.':'.$myrow[3];
}
$tmp_result->acidFreeRows();
return $name;
}
function InputSafeSQL (&$SQLstr)
/* Removes the escape sequence of \' => ' which arise when a variable containing a '-character is passed
through a POST query. This is needed since otherwise the MySQL parser complains */
{
$SQLstr = str_replace("\'", "'", $SQLstr);
$SQLstr = str_replace("\\\"", "\"", $SQLstr);
}
function PrintProtocolProfileGraphs ($db)
{
$tcp_cnt = TCPPktCnt($db);
$udp_cnt = UDPPktCnt($db);
$icmp_cnt = ICMPPktCnt($db);
$portscan_cnt = PortscanPktCnt($db);
$layer4_cnt = $tcp_cnt + $udp_cnt + $icmp_cnt + $portscan_cnt;
if ( $tcp_cnt > 0 )
{
$tcp_percent = round($tcp_cnt/$layer4_cnt*100);
if ( $tcp_percent == 0 )
$tcp_percent_show = "< 1";
else
$tcp_percent_show = $tcp_percent;
}
else
{
$tcp_percent = 0;
$tcp_percent_show = "0";
}
if ( $udp_cnt > 0 )
{
$udp_percent = round($udp_cnt/$layer4_cnt*100);
if ( $udp_percent == 0 )
$udp_percent_show = "< 1";
else
$udp_percent_show = $udp_percent;
}
else
{
$udp_percent = 0;
$udp_percent_show = "0";
}
if ( $icmp_cnt > 0 )
{
$icmp_percent = round($icmp_cnt/$layer4_cnt*100);
if ( $icmp_percent == 0 )
$icmp_percent_show = "< 1";
else
$icmp_percent_show = $icmp_percent;
}
else
{
$icmp_percent = 0;
$icmp_percent_show = 0;
}
if ( $portscan_cnt > 0 )
{
$portscan_percent = round($portscan_cnt/$layer4_cnt*100);
if ( $portscan_percent == 0 )
$portscan_percent_show = "< 1";
else
$portscan_percent_show = $portscan_percent;
}
else
{
$portscan_percent = 0;
$portscan_percent_show = "0";
}
if ( $tcp_percent > 0 ) $color = "#FF0000"; else $color="#CCCCCC";
$rem_percent=100-$tcp_percent;
echo '<TABLE WIDTH="100%" BORDER=0>
<TR><TD>TCP<A HREF="acid_qry_main.php?new=1'.
'&layer4=TCP&num_result_rows=-1&sort_order=time_d&submit=Query+DB">
('.$tcp_percent_show.'%)</A></TD><TD></TD></TR></TABLE>
<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
<TR><TD ALIGN=CENTER BGCOLOR="'.$color.'" WIDTH="'.$tcp_percent.'%"> </TD>
<TD BGCOLOR="#CCCCCC" WIDTH="'.$rem_percent.'%"> </TD></TR>
</TABLE>';
if ( $udp_percent > 0 ) $color = "#FF0000"; else $color="#CCCCCC";
$rem_percent=100-$udp_percent;
echo '<TABLE WIDTH="100%" BORDER=0>
<TR><TD>UDP<A HREF="acid_qry_main.php?new=1'.
'&layer4=UDP&num_result_rows=-1&sort_order=time_d&submit=Query+DB">
('.$udp_percent_show.'%)</A></TD><TD></TD></TR></TABLE>
<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
<TR><TD ALIGN=CENTER BGCOLOR="'.$color.'" WIDTH="'.$udp_percent.'%"> </TD>
<TD BGCOLOR="#CCCCCC" WIDTH="'.$rem_percent.'%"> </TD></TR>
</TABLE>';
if ( $icmp_percent > 0 ) $color = "#FF0000"; else $color="#CCCCCC";
$rem_percent=100-$icmp_percent;
echo '<TABLE WIDTH="100%" BORDER=0>
<TR><TD>ICMP<A HREF="acid_qry_main.php?new=1'.
'&layer4=ICMP&num_result_rows=-1&sort_order=time_d&submit=Query+DB">
('.$icmp_percent_show.'%)</A></TD><TD></TD></TR></TABLE>
<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
<TR><TD ALIGN=CENTER BGCOLOR="'.$color.'" WIDTH="'.$icmp_percent.'%"> </TD>
<TD BGCOLOR="#CCCCCC" WIDTH="'.$rem_percent.'%"> </TD></TR>
</TABLE>';
echo '<CENTER><HR NOSHADE WIDTH="70%"></CENTER>';
if ( $portscan_percent > 0 ) $color = "#FF0000"; else $color="#CCCCCC";
$rem_percent=100-$portscan_percent;
echo '<TABLE WIDTH="100%" BORDER=0>
<TR><TD>Portscan Traffic
<A HREF="acid_qry_main.php?new=1&sig_type=0&sig%5B0%5D=LIKE&sig%5B1%5D='.
(rawurlencode("spp_portscan")).
'&submit=Query+DB&num_result_rows=-1">('.$portscan_percent_show.'%)</A>
</TD><TD></TD></TR></TABLE>
<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>
<TR><TD ALIGN=CENTER BGCOLOR="'.$color.'" WIDTH="'.$portscan_percent.'%"> </TD>
<TD BGCOLOR="#CCCCCC" WIDTH="'.$rem_percent.'%"> </TD></TR>
</TABLE>';
}
function BuildIPFormVars($ipaddr)
{
return ''.
'&ip_addr%5B0%5D%5B0%5D=+&ip_addr%5B0%5D%5B1%5D=ip_src&ip_addr%5B0%5D%5B2%5D=%3D'.
'&ip_addr%5B0%5D%5B3%5D='.$ipaddr.
'&ip_addr%5B0%5D%5B8%5D=+&ip_addr%5B0%5D%5B9%5D=OR'.
'&ip_addr%5B1%5D%5B0%5D=+&ip_addr%5B1%5D%5B1%5D=ip_dst&ip_addr%5B1%5D%5B2%5D=%3D'.
'&ip_addr%5B1%5D%5B3%5D='.$ipaddr.
'&ip_addr%5B1%5D%5B8%5D=+&ip_addr%5B1%5D%5B9%5D=+';
}
function BuildSrcIPFormVars($ipaddr)
{
return ''.
'&ip_addr%5B0%5D%5B0%5D=+&ip_addr%5B0%5D%5B1%5D=ip_src&ip_addr%5B0%5D%5B2%5D=%3D'.
'&ip_addr%5B0%5D%5B3%5D='.$ipaddr.
'&ip_addr%5B0%5D%5B8%5D=+&ip_addr%5B0%5D%5B9%5D=+';
}
function BuildDstIPFormVars($ipaddr)
{
return ''.
'&ip_addr%5B0%5D%5B0%5D=+&ip_addr%5B0%5D%5B1%5D=ip_dst&ip_addr%5B0%5D%5B2%5D=%3D'.
'&ip_addr%5B0%5D%5B3%5D='.$ipaddr.
'&ip_addr%5B0%5D%5B8%5D=+&ip_addr%5B0%5D%5B9%5D=+';
}
function BuildUniqueAddressLink($addr_type, $raw = "" )
{
return '<A HREF="acid_stat_uaddr.php?addr_type='.$addr_type.$raw.'">';
}
function BuildUniqueAlertLink($raw)
{
return '<A HREF="acid_stat_alerts.php'.$raw.'">';
}
function BuildAddressLink($ipaddr, $netmask)
{
return '<A HREF="acid_stat_ipaddr.php?ip='.rawurlencode($ipaddr).
'&netmask='.$netmask.'">';
}
/* Adds another blank row to a given criteria element */
function AddCriteriaFormRow ( &$submit, $submit_value, &$cnt, &$criteria_array, $max )
{
$submit = $submit_value;
++$cnt;
InitArray($criteria_array[$cnt-1], $max, 0, "");
}
function IPProto2str($ipproto_code)
{
switch($ipproto_code)
{
case 0:
return "IP";
case 1:
return "ICMP";
case 2:
return "IGMP";
case 4:
return "IPIP tunnels";
case 6:
return "TCP";
case 8:
return "EGP";
case 12:
return "PUP";
case 17:
return "UDP";
case 22:
return "XNS UDP";
case 29:
return "SO TP Class 4";
case 41:
return "IPv6 header";
case 43:
return "IPv6 routing header";
case 44:
return "IPv6 fragmentation header";
case 46:
return "RSVP";
case 47:
return "GRE";
case 50:
return "IPSec ESP";
case 51:
return "IPSec AH";
case 58:
return "ICMPv6";
case 59:
return "IPv6 no next header";
case 60:
return "IPv6 destination options";
case 92:
return "MTP";
case 98:
return "Encapsulation header";
case 103:
return "PIM";
case 108:
return "COMP";
case 255:
return "Raw IP";
default:
return $ipproto_code;
}
}
function TCPOption2str($tcpopt_code)
/* per RFC 1072, 1323, 1644 */
{
switch($tcpopt_code)
{
case 2: /* TCPOPT_MAXSEG - maximum segment*/
return "MSS";
case 0: /* TCPOPT_EOL */
return "EOL";
case 1: /* TCPOPT_NOP */
return "NOP";
case 3: /* TCPOPT_WSCALE (rfc1072)- window scale factor */
return "WS";
case 5: /* TCPOPT_SACK (rfc1072)- selective ACK */
return "SACK";
case 4: /* TCPOPT_SACKOK (rfc1072)- selective ACK OK */
return "SACKOK";
case 6: /* TCPOPT_ECHO (rfc1072)- echo */
return "Echo";
case 7: /* TCPOPT_ECHOREPLY (rfc1072)- echo reply */
return "Echo Reply";
case 8: /* TCPOPT_TIMESTAMP (rfc1323)- timestamps */
return "TS";
case 11: /* TCPOPT_CC (rfc1644)- CC options */
return "CC";
case 12: /* TCPOPT_CCNEW (rfc1644)- CC options */
return "CCNEW";
case 13: /* TCPOPT_CCECHO (rfc1644)- CC options */
return "CCECHO";
default:
return $tcpopt_code;
}
}
function IPOption2str($ipopt_code)
{
switch($ipopt_code)
{
case 7: /* IPOPT_RR */
return "RR";
case 0: /* IPOPT_EOL */
return "EOL";
case 1: /* IPOPT_NOP */
return "NOP";
case 0x44: /* IPOPT_TS */
return "TS";
case 0x82: /* IPOPT_SECURITY */
return "SEC";
case 0x83: /* IPOPT_LSRR */
return "LSRR";
case 0x84: /* IPOPT_LSRR_E */
return "LSRR_E";
case 0x88: /* IPOPT_SATID */
return "SID";
case 0x89: /* IPOPT_SSRR */
return "SSRR";
}
}
function ICMPType2str($icmp_type)
{
switch ($icmp_type)
{
case 0: /* ICMP_ECHOREPLY */
return "Echo Reply";
case 3: /* ICMP_DEST_UNREACH */
return "Destination Unreachable";
case 4: /* ICMP_SOURCE_QUENCH */
return "Source Quench";
case 5: /* ICMP_REDIRECT */
return "Redirect";
case 8: /* ICMP_ECHO */
return "Echo Request";
case 9:
return "Router Advertisement";
case 10:
return "Router Solicitation";
case 11: /* ICMP_TIME_EXCEEDED */
return "Time Exceeded";
case 12: /* ICMP_PARAMETERPROB */
return "Parameter Problem";
case 13: /* ICMP_TIMESTAMP */
return "Timestamp Request";
case 14: /* ICMP_TIMESTAMPREPLY */
return "Timestamp Reply";
case 15: /* ICMP_INFO_REQUEST */
return "Information Request";
case 16: /* ICMP_INFO_REPLY */
return "Information Reply";
case 17: /* ICMP_ADDRESS */
return "Address Mask Request";
case 18: /* ICMP_ADDRESSREPLY */
return "Address Mask Reply";
default:
return $icmp_type;
}
}
function ICMPCode2str($icmp_type, $icmp_code)
{
if ( $icmp_type == 3 )
{
switch ($icmp_code)
{
case 0: /* ICMP_NET_UNREACH */
return "Network Unreachable";
case 1: /* ICMP_HOST_UNREACH */
return "Host Unreachable";
case 2: /* ICMP_PROT_UNREACH */
return "Protocol Unreachable";
case 3: /* ICMP_PORT_UNREACH */
return "Port Unreachable";
case 4: /* ICMP_FRAG_NEEDED */
return "Fragmentation Needed/DF set";
case 5: /* ICMP_SR_FAILED */
return "Source Route failed";
case 6: /* ICMP_NET_UNKNOWN */
return "Network Unknown";
case 7: /* ICMP_HOST_UNKNOWN */
return "Host Unknown";
case 8: /* ICMP_HOST_ISOLATED */
return "Host Isolated";
case 9: /* ICMP_NET_ANO */
return "Network ANO";
case 10: /* ICMP_HOST_ANO */
return "Host ANO";
case 11: /* ICMP_NET_UNR_TOS */
return "Network Unreach TOS";
case 12: /* ICMP_HOST_UNR_TOS */
return "Host Unreach TOS";
case 13: /* ICMP_PKT_FILTERED */
return "Packet Filtered";
case 14: /* ICMP_PREC_VIOLATION */
return "Precedence violation";
case 15: /* ICMP_PREC_CUTOFF */
return "Precedence cut off";
default:
return $icmp_code;
}
}
else
return $icmp_code;
}
function PrintPayloadChar( $char, $output_type )
{
if ( $char >= 32 && $char <= 127 )
{
if ( $output_type == 2 )
return chr($char);
else
return htmlspecialchars(chr($char));
}
else
return '.';
}
function PrintBase64PacketPayload ( $encoded_payload, $output_type )
{
/* strip out the <CR> at the end of each block */
$encoded_payload = str_replace("\n", "", $encoded_payload);
//printf(" len = %d\n", strlen($encoded_payload));
//printf("%s \n", $encoded_payload);
$payload = base64_decode($encoded_payload);
$len = strlen($payload);
$s = " length = ".strlen($payload)."\n";
for ($i = 0; $i < strlen($payload); $i++ )
{
if ( $i % 16 == 0 )
{
/* dump the ASCII characters */
if ( $i != 0 )
{
$s = $s.' ';
for ($j = $i-16; $j < $i; $j++ )
$s = $s.PrintPayloadChar($payload[$j], $output_type);
}
$s = $s.sprintf("\n%03x : ", $i);
}
$s = $s.sprintf("%s ", bin2hex($payload[$i]) );
}
/* print the remained of any ASCII chars */
if ( ($i % 16) != 0 )
{
for ( $j = 0; $j < 16 - ($i % 16); $j++)
$s = $s.' ';
$s = $s.' ';
for ( $j = $len - ($i % 16); $j < $len; $j++ )
$s = $s.PrintPayloadChar($payload[$j], $output_type);
}
return $s;
}
function PrintAsciiPacketPayload ( $encoded_payload, $output_type )
{
return wordwrap($encoded_payload, 70);
}
function PrintHexPacketPayload ( $encoded_payload, $output_type )
{
/* strip out the <CR> at the end of each block */
$encoded_payload = str_replace("\n", "", $encoded_payload);
$payload = $encoded_payload;
$len = strlen($payload);
$s = " length = ".(strlen($payload)/2)."\n";
for ($i = 0; $i < strlen($payload); $i += 2 )
{
if ( $i % 32 == 0 )
{
/* dump the ASCII characters */
if ( $i != 0 )
{
$s = $s.' ';
for ($j = $i-32; $j < $i; $j+=2 )
{
$t = hexdec($payload[$j].$payload[$j+1]);
$s = $s.PrintPayloadChar($t, $output_type);
}
}
$s = $s.sprintf("\n%03x : ", $i/2);
}
$s = $s.sprintf("%s%s ", $payload[$i], $payload[$i+1] );
}
/* space through to align end of hex dump */
if ( $i % 32 )
for ( $j = 0; $j < 32 - ($i % 32); $j+=2)
$s = $s.' ';
$s = $s.' ';
/* print the ASCII decode */
if ( $i % 32 )
$start = $len - ($i % 32);
else
$start = $len - 32;
for ( $j = $start; $j < $i; $j+=2 )
{
$t = hexdec($payload[$j].$payload[$j+1]);
$s = $s.PrintPayloadChar($t, $output_type);
}
return $s;
}
function PrintPacketPayload($data, $encode_type, $output_type)
{
if ( $output_type == 1 )
printf("\n<PRE>\n");
/* print the packet based on encoding type */;
if ( $encode_type == "1" )
$payload = PrintBase64PacketPayload($data, $output_type);
else if ($encode_type == "2" )
$payload = PrintAsciiPacketPayload($data, $output_type);
else if ($encode_type == "0" )
$payload = PrintHexPacketPayload($data, $output_type);
if ( $output_type == 1 )
echo "$payload\n</PRE>\n";
return $payload;
}
function GetQueryResultID($submit, &$seq, &$sid, &$cid)
{
/* extract the sid and cid from the $submit variable of the form
#XX-(XX-XX)
| | |
| | |--- cid
| |------ sid
|---------- sequence number of DB lookup
*/
$submit = strstr($submit, "#");
$submit = str_replace("#", "", $submit);
$submit = str_replace("(", "", $submit);
$submit = str_replace(")", "", $submit);
$tmp = explode("-", $submit);
$seq = $tmp[0];
$sid = $tmp[1];
$cid = $tmp[2];
}
function ExportPacket($sid, $cid, $db)
{
GLOBAL $action, $action_arg;
/* Event */
$sql2 = "SELECT signature, timestamp FROM acid_event WHERE sid='".$sid."' AND cid='".$cid."'";
$result2 = $db->acidExecute($sql2);
$myrow2 = $result2->acidFetchRow();
$s = "------------------------------------------------------------------------------\n";
$s = $s."#($sid - $cid) [$myrow2[1]] ".BuildSigByID($myrow2[0], $db, 2)."\r\n";
$sql4 = "SELECT hostname, interface, filter FROM sensor WHERE sid='".$sid."'";
$result4 = $db->acidExecute($sql4);
$myrow4 = $result4->acidFetchRow();
/*
$s = $s."Sensor: $myrow4[0]:$myrow4[1]";
if ( $myrow4[2] != "") $s = $s.$myrow4[2];
$s = $s." \r\n";
*/
$result4->acidFreeRows();
$result2->acidFreeRows();
/* IP */
$sql2 = "SELECT ip_src, ip_dst, ".
"ip_ver, ip_hlen, ip_tos, ip_len, ip_id, ip_flags, ip_off, ip_ttl, ip_csum, ip_proto".
" FROM iphdr WHERE sid='".$sid."' AND cid='".$cid."'";
$result2 = $db->acidExecute($sql2);
$myrow2 = $result2->acidFetchRow();
$layer4_proto = $myrow2[11];
if ( $myrow2[0] != "" )
{
$sql3 = "SELECT * FROM opt WHERE sid='".$sid."' AND cid='".$cid."' AND opt_proto='0'";
$result3 = $db->acidExecute($sql3);
$num_opt = $result3->acidRecordCount();
$s = $s."IPv$myrow2[2]: ".
acidLong2IP($myrow2[0])." -> ".
acidLong2IP($myrow2[1])."\n".
" hlen=$myrow2[3] TOS=$myrow2[4] dlen=$myrow2[5] ID=$myrow2[6]".
" flags=$myrow2[7] offset=$myrow2[8] TTL=$myrow2[9] chksum=$myrow2[10]\n";
if ( $num_opt > 0 )
{
$s = $s." Options\n";
for ( $i = 0; $i < $num_opt; $i++)
{
$myrow3 = $result3->acidFetchRow();
$s = $s." #".($i+1)." - ".IPOption2str($myrow3[4])." len=$myrow3[5]";
if ( $myrow3[5] != 0 )
$s = $s." data=$myrow3[6]";
$s = $s."\n";
}
}
$result3->acidFreeRows();
}
$result2->acidFreeRows();
/* TCP */
if ( $layer4_proto == "6" )
{
$sql2 = "SELECT tcp_sport, tcp_dport, tcp_seq, tcp_ack, tcp_off, tcp_res, tcp_flags, tcp_win, ".
" tcp_csum, tcp_urp FROM tcphdr WHERE sid='".$sid."' AND cid='".$cid."'";
$result2 = $db->acidExecute($sql2);
$myrow2 = $result2->acidFetchRow();
$sql3 = "SELECT * FROM opt WHERE sid='".$sid."' AND cid='".$cid."' AND opt_proto='6'";
$result3 = $db->acidExecute($sql3);
$num_opt = $result3->acidRecordCount();
$s = $s."TCP: port=$myrow2[0] -> dport: $myrow2[1] flags=";
if ( ($myrow2[6] & 128) != 0 ) $s = $s.'2'; else $s = $s.'*';
if ( ($myrow2[6] & 64 ) != 0 ) $s = $s.'1'; else $s = $s.'*';
if ( ($myrow2[6] & 32) != 0 ) $s = $s.'U'; else $s = $s.'*';
if ( ($myrow2[6] & 16 ) != 0 ) $s = $s.'A'; else $s = $s.'*';
if ( ($myrow2[6] & 8) != 0 ) $s = $s.'P'; else $s = $s.'*';
if ( ($myrow2[6] & 4 ) != 0 ) $s = $s.'R'; else $s = $s.'*';
if ( ($myrow2[6] & 2 ) != 0 ) $s = $s.'S'; else $s = $s.'*';
if ( ($myrow2[6] & 1 ) != 0 ) $s = $s.'F'; else $s = $s.'*';
$s = $s." seq=$myrow2[2]\n".
" ack=$myrow2[3] off=$myrow2[4] res=$myrow2[5] win=$myrow2[7] urp=$myrow2[9] ".
"chksum=$myrow2[8]\n";
if ( $num_opt != 0)
{
$s = $s." Options:\n";
for ( $i = 0; $i < $num_opt; $i++)
{
$myrow3 = $result3->acidFetchRow();
$s = $s." #".($i+1)." - ".TCPOption2str($myrow3[4])." len=$myrow3[5]";
if ( $myrow3[5] != 0 )
$s = $s." data=".$myrow3[6];
$s = $s."\n";
}
}
$result2->acidFreeRows();
$result3->acidFreeRows();
}
/* UDP */
if ( $layer4_proto == "17" )
{
$sql2 = "SELECT * FROM udphdr WHERE sid='".$sid."' AND cid='".$cid."'";
$result2 = $db->acidExecute($sql2);
$myrow2 = $result2->acidFetchRow();
$s = $s."UDP: port=$myrow2[2] -> dport: $myrow2[3] len=$myrow2[4]\n";
$result2->acidFreeRows();
}
/* ICMP */
if ( $layer4_proto == "1" )
{
$sql2 = "SELECT icmp_type, icmp_code, icmp_csum, icmp_id, icmp_seq FROM icmphdr ".
"WHERE sid='".$sid."' AND cid='".$cid."'";
$result2 = $db->acidExecute($sql2);
$myrow2 = $result2->acidFetchRow();
$s = $s."ICMP: type=".ICMPType2str($myrow2[0])." code=".ICMPCode2str($myrow2[0],$myrow2[1])."\n".
" checksum=$myrow2[2] id=$myrow2[3] seq=$myrow2[4]\n";
$result2->acidFreeRows();
}
/* Print the Payload */
$sql2 = "SELECT data_payload FROM data WHERE sid='".$sid."' AND cid='".$cid."'";
$result2 = $db->acidExecute($sql2);
/* get encoding information and detail_level on the payload */
$sql3 = 'SELECT encoding, detail FROM sensor WHERE sid='.$sid;
$result3 = $db->acidExecute($sql3);
$myrow3 = $result3->acidFetchRow();
$s = $s."Payload: ";
$myrow2 = $result2->acidFetchRow();
if ( $myrow2 )
{
/* print the packet based on encoding type */
$s = $s.PrintPacketPayload($myrow2[0], $myrow3[0], 2)."\n";
$result3->acidFreeRows();
}
else
{
/* Don't have payload so lets print out why by checking the detail level */
/* if have fast detail level */
if ( $myrow3[1] == "0" )
$s = $s."Fast logging used so payload was discarded\n";
else
$s = $s."none\n";
}
$result2->acidFreeRows();
return $s;
}
function ExportPacket_summary($sid, $cid, $db)
{
GLOBAL $action, $action_arg;
/* Event */
$sql2 = "SELECT signature, timestamp FROM acid_event WHERE sid='".$sid."' AND cid='".$cid."'";
$result2 = $db->acidExecute($sql2);
$myrow2 = $result2->acidFetchRow();
$alert_timestamp = $myrow2[1];
$alert_sig = BuildSigByID($myrow2[0], $db, 2);
$result2->acidFreeRows();
/* IP */
$src_ip = $dst_ip = $src_port = $dst_port = "";
$sql2 = "SELECT ip_src, ip_dst, ip_proto".
" FROM iphdr WHERE sid='".$sid."' AND cid='".$cid."'";
$result2 = $db->acidExecute($sql2);
$myrow2 = $result2->acidFetchRow();
$layer4_proto = "";
if ( $myrow2[0] != "" )
{
$src_ip = acidLong2IP($myrow2[0]);
$dst_ip = acidLong2IP($myrow2[1]);
$layer4_proto = $myrow2[2];
}
$result2->acidFreeRows();
/* TCP */
if ( $layer4_proto == "6" )
{
$sql2 = "SELECT tcp_sport, tcp_dport FROM tcphdr WHERE sid='".$sid."' AND cid='".$cid."'";
$result2 = $db->acidExecute($sql2);
$myrow2 = $result2->acidFetchRow();
$src_port = ":".$myrow2[0]." -> ";
$dst_port = ":".$myrow2[1];
$result2->acidFreeRows();
}
/* UDP */
if ( $layer4_proto == "17" )
{
$sql2 = "SELECT * FROM udphdr WHERE sid='".$sid."' AND cid='".$cid."'";
$result2 = $db->acidExecute($sql2);
$myrow2 = $result2->acidFetchRow();
$src_port = ":".$myrow2[2]." -> ";
$dst_port = ":".$myrow2[3];
$result2->acidFreeRows();
}
/* ICMP */
if ( $layer4_proto == "1" )
{
$src_ip = $src_ip." -> ";
$src_port = $dst_port = "";
}
$s = sprintf("#%d-%d| [%s] %s%s%s%s %s\r\n",
$sid, $cid, $alert_timestamp,
$src_ip, $src_port, $dst_ip, $dst_port,
$alert_sig);
return $s;
}
?>
|