1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778
|
#!/bin/sh
###########################################################################
#
# Shell program to parse firewall logs and analyze them with Analog.
#
# Copyright 2001-2002, Balazs Barany balazs@tud.at
#
# Version 0.6.9
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# Description:
#
#
# NOTE: You must be the superuser to run this script or at least have
# access to the firewall logs. (See README.sudo for a solution.)
#
# Usage:
#
# fwanalog.sh [ -h | --help ] [-c conffile][-r] [-t] [-y] [-a IP-addr] [-p packet]
#
# Options:
#
# -h, --help Display this help message and exit.
# -r Rotate log cache
# -c conffile Use this config file instead of ./fwanalog.opts
# -t Only update statistics for today (for hourly use in crontab)
# The sep_hosts and sep_packets commands in fwanalog.opts
# are ignored.
# -y Like -t, only for yesterday
# -a IP-addr Create a separate report for this host
# -p packet Create a separate report for this packet
# Format: target/protocol/portnumber
# e.g. 192.168.0.1/tcp/21 or firewall/udp/137
#
#
# $Id: fwanalog.sh,v 1.81 2005/02/24 16:59:44 bb Exp $
#
# Revisions:
#
# 2001-04-07 File created
# 2001-04-08 First release 0.1, announced on Freshmeat
# 2001-04-15 Release 0.2: Linux 2.2 ipchains support
# 2001-05-05 Release 0.2.1: Analog 5.0 support, bugfixes
# 2001-06-07 Release 0.2.2: FreeBSD support
# 2001-08-05 Release 0.3: Bugfixes; ICMP support on Linux; onehost=dynip
# 2001-08-18 Version 0.4pre: Speed improvement in the diff phase
# 2001-08-23 Release 0.4: -t option, bugfixes in the pre version
# 2001-11-23 Release 0.4.1: regexp bugfixes in iptables() and ipchains()
# 2001-12-22 Version 0.5pre: OpenBSD 3.0 pf and Solaris support
# 2002-02-19 Version 0.5: iptables log-prefix support, portability fixes
# 2002-02-23 Version 0.5.1: better error handling; analog 5.21 compatible
# 2002-03-03 Version 0.5.2: added ZyNOS parser
# 2002-03-07 Version 0.6pre: optional separate reports for each packet
# and host
# 2002-04-28 Version 0.6: integrated change requests from lots of people
# 2002-04-28 Version 0.6.1: some bugfixes with packet/host report generation
# 2003-01-03 Version 0.6.2pre1: Support for Cisco PIX firewall logs
# 2003-01-08 Version 0.6.2: Released as pix() seems to work and because
# the new analog version requires a new langfile
# 2003-01-14 Version 0.6.3pre1: Support for Watchguard Firebox logs
# 2003-01-18 Version 0.6.3pre2: New -y option for yesterday's logs, smaller
# fixes
# 2003-01-21 Version 0.6.3pre3: Bugfix in watchguard(): allow two-digit dates
# 2003-01-22 Version 0.6.3pre4: pix(): allow [] around the logging host name
# 2003-02-13 Version 0.6.3pre5: pix(): the PIX date seems to be optional with
# some configurations
# 2003-02-13 Version 0.6.3pre6: Added the -c option for using a different
# config file
# 2003-03-11 Version 0.6.3pre7: Added support for Firewall-One
# (written by Jean-Louis Saint-Dizier)
# 2003-03-17 Version 0.6.3: Finally releasing it as stable
# 2003-03-20 Version 0.6.4pre1: Added support for Cisco routers with
# access-lists, further fixes in cisco()
# 2003-06-19 Version 0.6.4pre2: Fixes in many functions, mostly in cisco()
# 2003-11-25 Version 0.6.4pre4: Smaller fixes, mainly for PIX
# 2004-03-18 Version 0.6.4: PIX fixes, released as 0.6.4 on the request of
# the Debian maintainer
# 2005-02-24 Version 0.6.9: PIX fix, added contributed ipfw, sonicwall
# parsers
#
###########################################################################
###########################################################################
# Constants
###########################################################################
# Script options
PROGNAME=$(basename $0)
VERSION="0.6.9"
###########################################################################
# Variables
###########################################################################
#
# Only update today's page - initialize with false
#
today_only=false
#
# Only update yesterday's page - initialize with false
#
yesterday_only=false
###########################################################################
# Commands - Assist in platform portability - with defaults
###########################################################################
sed=${sed:-sed}
perl=${perl:-perl}
grep=${grep:-grep}
egrep=${egrep:-egrep}
zegrep=${zegrep:-zegrep}
analog=${analog:-analog}
date=${date:-date}
###########################################################################
# Functions
###########################################################################
main ()
{
# Function to do everything the script normally does.
# Get today's date for the daily reports.
TODAY=`$date +%y%m%d`
if [ X"$configfile" != X ]; then
# A config file is given
if [ -r "$configfile" ]; then
# use this if it is readable
. "$configfile"
# change into the script's directory because the analog config files are there
cd `dirname $0`
else
# specified config file isn't readable or doesn't exist
echo "fwanalog: couldn't read specified config file '$configfile'" >> /dev/stderr
exit 1
fi
else
# change into the script's directory because all the config files are there
cd `dirname $0`
# Load the user-settable options from the config file
. /etc/fwanalog/fwanalog.opts
fi
if [ -z "$inputfiles" ]; then
echo "fwanalog: No input files in the '$inputfiles_dir' directory " >> /dev/stderr
echo "named $inputfiles_mask and under $inputfiles_mtime days old." >> /dev/stderr
exit 1
fi
# create the output directory if necessary, ignore errors
mkdir -p $outdir
# Check if the lock file is there. If yes, warn and exit.
if [ -e $outdir/fwanalog.lock ]; then
echo "fwanalog: found lockfile '$outdir/fwanalog.lock'. " >> /dev/stderr
echo "This could mean that another instance is running." >> /dev/stderr
echo "If this is not the case, please remove the lock file." >> /dev/stderr
exit 1
fi
# Create lock file
touch $outdir/fwanalog.lock
# Parse the logs into a format Analog understands
$logformat
# make sure the "all logs" file exists
touch $outdir/fwanalog.all.log
# Find the new lines since the last invocation
if [ -s $outdir/fwanalog.all.log ]; then
# there is already an old log - find its last line and use it
# to determine the new contents of the grepped/converted file
$grep . $outdir/fwanalog.all.log \
| tail -n 1 \
| $sed 's/[^a-zA-Z0-9 _-]/./g' \
| $sed 's#^\(.*\)$#0,/^\1$/d#' \
> $outdir/match_last_line.sed
# match_last_line.sed now contains the last line in regexp form, so
# it can be searched in the new file. Most non-alphanumeric chars
# have been replaced with . so they don't act as metacharacters.
$grep . $outdir/fwanalog.all.log \
| tail -n 1 \
| $sed 's/[^a-zA-Z0-9 _-]/./g' \
> $outdir/match_last_line.pattern
# create the regexp for grep
# The two "$grep ."-s are for RedHat 7.1 systems with a broken zegrep
# which appends a blank line at the end of its output
# Check if there is a common part in the old an the new log
if $grep --silent "`cat $outdir/match_last_line.pattern`" $outdir/fwanalog.current.log ; then
# there is a common part
# Delete the common lines in the current log so only the new ones
# stay and write it to the end of the global log
$sed -f $outdir/match_last_line.sed $outdir/fwanalog.current.log \
>> $outdir/fwanalog.all.log
# Save the new lines in current.log.1 and move that over current.log
$sed -f $outdir/match_last_line.sed $outdir/fwanalog.current.log \
> $outdir/fwanalog.current.log.1
mv $outdir/fwanalog.current.log.1 $outdir/fwanalog.current.log
else
# no common part
cat $outdir/fwanalog.current.log >> $outdir/fwanalog.all.log
fi
else
# There is no old log. We can use the entire current log.
cp $outdir/fwanalog.current.log $outdir/fwanalog.all.log
fi
# Create an empty domain cache for analog so it doesn't complain
touch $outdir/analog-domains.tab
# Ask Analog's version number
analogver=`$analog --help 2>&1 \
| $grep "This is analog version" \
| $sed 's!^.*\([0-9]\)\.[0-9]*/.*$!\1!'`
# If the version couldn't be determined, chances are that analog is not
# really executable (misconfiguration!)
if [ "X$analogver" = "X" ]; then
echo "fwanalog: Analog's version could not be determined."
echo " Please check if it is installed, executable and"
echo " correctly given in fwanalog.opts."
echo "exiting."
exit 1
fi
# Command line option for the debugging phase: list corrupt logfile entries
# This is important if bugs appear but doesn't disturb if they don't
analogopts="$analogopts +V+C"
# Version-dependent Analog config file
touch $outdir/fwanalog.analog.conf.ver
# Don't warn in case of empty reports, this is good for daily reports
# in case you're not attacked on this day
noemptyreportwarning=" +q-R"
rm -f "$outdir/analog.err"
# Generate a runtime config file
genconffile="$outdir/fwanalog.analog.conf.gen"
echo "DNSFILE $outdir/analog-domains.tab" > "$genconffile"
echo "DNSLOCKFILE $outdir/analog-domains.lck" >> "$genconffile"
echo "LOGFILE $outdir/fwanalog.all.log*" >> "$genconffile"
#echo "CONFIGFILE ./fwanalog.analog.conf.local" >> "$genconffile"
echo "CONFIGFILE /etc/fwanalog/fwanalog.analog.conf.local" >> "$genconffile"
# Call analog for today with ascii output, suitable for an e-mailed daily report
$yesterday_only || $analog \
-G +g/usr/share/fwanalog/fwanalog.analog.conf $analogopts \
-C"OUTFILE $outdir/today.txt" -C"OUTPUT ASCII" -d -W -m -4 -o -z -f -v \
-C"GOTOS OFF" -C"RUNTIME OFF" -C"LASTSEVEN OFF" \
+F$TODAY $noemptyreportwarning \
+g"$genconffile" \
2>> $outdir/analog.err
# Call analog for yesterday with ascii output, suitable for an e-mailed daily report
$yesterday_only && $analog \
-G +g/usr/share/fwanalog/fwanalog.analog.conf $analogopts \
-C"OUTFILE $outdir/yesterday.txt" -C"OUTPUT ASCII" -d -W -m -4 -o -z -f -v \
-C"GOTOS OFF" -C"RUNTIME OFF" -C"LASTSEVEN OFF" \
+F-00-00-01:0000 +T-00-00-01:2359 $noemptyreportwarning \
+g"$genconffile" \
2>> $outdir/analog.err
#Determine if there is an active date limitation
datelimit=false
$today_only && datelimit=true
$yesterday_only && datelimit=true
# Set special options for Analog version 5 and higher
if [ $analogver -ge 5 ]
then
# Charts go to the output directory, name prefix is "alldates-"
echo "LOCALCHARTDIR $outdir/alldates-" >> "$genconffile"
echo "CHARTDIR alldates-" >> "$genconffile"
fi
# Call analog with all data
$datelimit || $analog \
-G +g/usr/share/fwanalog/fwanalog.analog.conf $analogopts \
-C"OUTFILE $outdir/alldates.html" \
+g"$genconffile" \
2>> $outdir/analog.err
if [ X"$reportmagic" = "Xtrue" ]; then
# Call analog with all data for ReportMagic
$datelimit || $analog \
-G +g/usr/share/fwanalog/fwanalog.analog.conf $analogopts \
-C"OUTFILE $outdir/alldates.dat" -C"OUTPUT COMPUTER" \
+g"$genconffile" \
2>> $outdir/analog.err
fi
# Set special options for Analog version 5 and higher
if [ $analogver -ge 5 ]
then
# Charts go to the output directory, name prefix is "today-"
$perl -pwi -e "s!^LOCALCHARTDIR.+!LOCALCHARTDIR $outdir/today-!" \
"$genconffile"
$perl -pwi -e "s!^CHARTDIR.+!CHARTDIR today-!" \
"$genconffile"
fi
# Call analog for today, with the additional quarter-hour-report
$yesterday_only || $analog \
-G +g/usr/share/fwanalog/fwanalog.analog.conf $analogopts \
-C"OUTFILE $outdir/today.html" -d -W -m \+4 \
+F$TODAY $noemptyreportwarning \
+g"$genconffile" \
2>> $outdir/analog.err
# Call analog for yesterday if -y was specified, with html output
$yesterday_only && $analog \
-G +g/usr/share/fwanalog/fwanalog.analog.conf $analogopts \
-C"OUTFILE $outdir/yesterday.html" -d -W -m \+4 \
-C"LASTSEVEN OFF" \
+F-00-00-01:0000 +T-00-00-01:2359 $noemptyreportwarning \
+g"$genconffile" \
2>> $outdir/analog.err
# Set special options for Analog version 5 and higher
if [ $analogver -ge 5 ]
then
# Charts go to the output directory, name prefix is "lastweek-"
$perl -pwi -e "s!^LOCALCHARTDIR.+!LOCALCHARTDIR $outdir/lastweek-!" "$genconffile"
$perl -pwi -e "s!^CHARTDIR.+!CHARTDIR lastweek-!" "$genconffile"
fi
# Call analog for the last 7 days, with the additional hourly report
$datelimit || $analog \
-G +g/usr/share/fwanalog/fwanalog.analog.conf $analogopts \
-C"OUTFILE $outdir/lastweek.html" +H \
+F-00-00-06 \
+g"$genconffile" \
2>> $outdir/analog.err
# Remove the unnecessary "HTML Conformant" lines from the output
# ignore error messages
$perl -pwi -e 's!^.+(validator\.w3\.org/"|nonehtml2\.(gif|png)|HTML 2\.0 Conformant).+$!!' \
$outdir/alldates.html $outdir/today.html $outdir/lastweek.html \
2> /dev/null
# If only today's or yesterday's report is generated, don't create separate
# host and packet reports unless $host_to_report or $packet_to_report is set
# (checked later)
if $datelimit; then
sep_hosts=false
sep_packets=false
fi
# Check if -a was used: create a separate report.
if [ X"$host_to_report" != X ]; then
sep_hosts=true
# must create the separate host report
fi
# If configured, create separate logs for each host from the current log or
# for the host given with -a
if [ "X$sep_hosts" = "Xtrue" ]; then
# The following characters are allowed in domain names - this is
# important because people could (perhaps) manipulate their reverse DNS
# to point to "../../../etc/passwd>.../something" and we would then,
# as root, overwrite that file with a report.
hostchars='a-zA-Z0-9._-'
if [ X"$host_to_report" = X ]; then
# Create a list of unique IPs in the current log
$sed 's/^\([0-9.]*\) .*$/\1/' $outdir/fwanalog.current.log \
| sort -u \
> $outdir/fwanalog.current.hosts.log
else
# Just use the provided IP address for the report
if $egrep --silent " ([0-9].){4} $host_to_report" $outdir/analog-domains.tab; then
# The address given on the command line is a domain name (not an
# IP), so extract the IP address.
host_to_report=`$egrep "([0-9].){4} $host_to_report" \
$outdir/analog-domains.tab \
| $perl -pwe "s/^\\d+ ([0-9.]+) $host_to_report/\$1/i"`
fi
echo "$host_to_report" > $outdir/fwanalog.current.hosts.log
fi
mkdir -p $outdir/hosts
# Create a separate report for each host
for host in `cat $outdir/fwanalog.current.hosts.log`; do
# Determine the dns name of this host, if existent
hostname=`$egrep "$host [$hostchars]+\$" $outdir/analog-domains.tab \
| $perl -pwe 's/^[0-9]* [0-9.]* (.*)$/\L$1/' `
#hostname can contain only the allowed characters ($hostchars).
#It is lowercased because analog also lowercases the names.
# Use the IP address if the name couldn't be resolved
if [ X"$hostname" = "X" ]; then
hostname=$host
fi
# Set special options for Analog version 5 and higher
if [ $analogver -ge 5 ]
then
# Charts go to the output directory, name prefix is "hosts/NAME-"
$perl -pwi -e "s!^LOCALCHARTDIR.+!LOCALCHARTDIR $outdir/hosts/$hostname-!" "$genconffile"
$perl -pwi -e "s!^CHARTDIR.+!CHARTDIR $hostname-!" "$genconffile"
fi
# Call analog with all data
$analog \
-G +g/usr/share/fwanalog/fwanalog.analog.conf $analogopts \
-C"OUTFILE $outdir/hosts/$hostname.html" \
-C"ORGANISATION OFF" -C"DOMAIN OFF" \
-C"HOSTINCLUDE $hostname" \
+g"$genconffile" \
2>> $outdir/analog.err
# Remove the unnecessary "HTML Conformant" lines from the output
$perl -pwi -e 's!^.+(validator\.w3\.org/"|nonehtml2\.(gif|png)|HTML 2\.0 Conformant).+$!!' \
$outdir/hosts/$hostname.html
done
fi
# Check if -p was used: create a separate packet report.
if [ X"$packet_to_report" != X ]; then
sep_packets=true
# must create the separate packet report
fi
# If configured, create separate logs for each packet from the current log
# or for the packet given with -p
if [ "X$sep_packets" = "Xtrue" ]; then
if [ X"$packet_to_report" = X ]; then
# Create a list of unique packets in the current log, and remove
# slashes from the end (for protocols without a port number)
$sed 's!^.*"GET /\([0-9a-zA-Z./]*\)/ HTTP.*$!\1!' $outdir/fwanalog.current.log \
| sort -u \
| $sed 's!/$!!' \
> $outdir/fwanalog.current.packets.log
else
# Just use the provided packet for the report
echo "$packet_to_report" > $outdir/fwanalog.current.packets.log
fi
mkdir -p $outdir/packets
# Create a separate report for each packet
for packet in `cat $outdir/fwanalog.current.packets.log`; do
# Convert the packet into a matching pattern for analog's FILEINCLUDE
analogmatch=`echo $packet \
| $perl -pwe 's!(firewall|[0-9.]+)/([a-z]+)/([0-9]+)!/$1/$2/*($3)/*!gi'`
# Convert the packet, which contains slashes, into a
# filesystem-friendly form
fsform=`echo $packet | $sed 's!/!-!g'`
# Set special options for Analog version 5 and higher
if [ $analogver -ge 5 ]
then
# Charts go to the output directory, name prefix is "packets/PACKET-"
$perl -pwi -e "s!^LOCALCHARTDIR.+!LOCALCHARTDIR $outdir/packets/$fsform-!" "$genconffile"
$perl -pwi -e "s!^CHARTDIR.+!CHARTDIR $fsform-!" "$genconffile"
fi
# Call analog with all data
$analog \
-G +g/usr/share/fwanalog/fwanalog.analog.conf $analogopts \
-C"OUTFILE $outdir/packets/$fsform.html" \
-C"FILEINCLUDE /$packet/*" \
-C"FILEINCLUDE $analogmatch" \
+g"$genconffile" \
2>> $outdir/analog.err
# Remove the unnecessary "HTML Conformant" lines from the output
$perl -pwi -e 's!^.+(validator\.w3\.org/"|nonehtml2\.(gif|png)|HTML 2\.0 Conformant).+$!!' \
$outdir/packets/$fsform.html
done
fi
# Change hosts in each generated report to point to the page about this host
# Search for host reports in the output directory and edit the output
# files to link to them
for hostlog in $outdir/hosts/*.html; do
# Get the hostname from the filename
hostname=`echo $hostlog | $sed 's/^.*hosts.\(.*\).html/\1/' `
if [ X"$hostname" != "X*" ]; then
# there are files
# Replace all hosts with a URL pointing to the separate report
$perl -pwi -e \
"s!(\\d+): ($hostname)\$!\$1: <a href=\"hosts/\$2.html\">\$2</a>!i" \
$outdir/alldates.html $outdir/lastweek.html $outdir/today.html
# Do the same in each file in the packet directory
for packetlog in `$egrep -l "$hostname" $outdir/packets/*.html 2> /dev/null`; do
if [ -e "$packetlog" ]; then
$perl -pwi -e \
"s!(\\d+): ($hostname)\$!\$1: <a href=\"../hosts/\$2.html\">\$2</a>!i" \
"$packetlog"
fi
done
fi
done
# The same for packets
# Search for packet reports in the output directory and edit the output
# files to link to them
for packetlog in $outdir/packets/*.html; do
# Get the packet from the filename
packet=`echo $packetlog \
| $sed 's!^.*/packets/\(.*\).html$!\1!' \
| $sed 's!-!/!g' `
# Get the relative filename
packetfile=`echo $packetlog \
| $sed 's!^.*/packets/\(.*.html\)$!\1!' `
# Convert the first form into a matching pattern
packetform1=`echo $packet \
| $perl -pwe 's!^(firewall|[0-9.]+)/([a-z0-9]+)/([0-9]*)$!$1:$3/$2!i'`
# Convert the second form into a matching pattern
packetform2=`echo $packet \
| $perl -pwe 's!^(firewall|[0-9.]+)/([a-z0-9]+)/([0-9]*)$!$1:[a-z0-9_*-]+ \\\\($3\\\\)/$2!i'`
if [ X"$packet" != "X*" ]; then
# there are packet logs
# Replace all packets with a URL pointing to the separate report
# - both possible forms
$perl -pwi -e \
"s!(\\d+: +)($packetform1)\$!\$1<a href=\"packets/$packetfile\">\$2</a>!i" \
$outdir/alldates.html $outdir/lastweek.html $outdir/today.html
$perl -pwi -e \
"s!(\\d+: +)($packetform2)\$!\$1<a href=\"packets/$packetfile\">\$2</a>!i" \
$outdir/alldates.html $outdir/lastweek.html $outdir/today.html
# Do the same in each host log
for hostlog in `$egrep -l "$packetform1|$packetform2" $outdir/hosts/*.html 2> /dev/null`; do
if [ -e "$hostlog" ]; then
$perl -pwi -e \
"s!(\\d+: +)($packetform1)\$!\$1<a href=\"../packets/$packetfile\">\$2</a>!i" \
"$hostlog"
$perl -pwi -e \
"s!(\\d+: +)($packetform2)\$!\$1<a href=\"../packets/$packetfile\">\$2</a>!i" \
"$hostlog"
fi
done
fi
done
keeperrfile=false
# check if there were corrupt lines
corruptlines=`$grep "^C: " $outdir/analog.err | wc -l`
if [ $corruptlines -ge 1 ]; then
echo "Analog found $corruptlines corrupt lines. Please consider sending "
echo "$outdir/analog.err to balazs@tud.at "
echo "so the author is able to fix the problem."
keeperrfile=true
fi
# check if Analog complains of an old language file
corruptlines=`$grep -i "error.*language file.*exiting" $outdir/analog.err | wc -l`
if [ $corruptlines -ge 1 ]; then
echo "Analog isn't happy about the language file. Probably you updated"
echo "to a new version. "
echo "Use the mklangfile.*.sh scripts in the fwanalog distribution"
echo "to create a new language file for fwanalog or get the current"
echo "version of fwanalog (or just the language files) from"
echo "http://tud.at/programm/fwanalog/"
keeperrfile=true
fi
# Check if there is an error which wasn't catched
corruptlines=`$grep "." $outdir/analog.err | wc -l`
if [ $corruptlines -ge 1 ]; then
if [ "X$keeperrfile" != 'Xtrue' ]; then
# There was no specific error message
echo "fwanalog: Analog printed the following error messages ($outdir/analog.err):" >> /dev/stderr
cat "$outdir/analog.err" >> /dev/stderr
keeperrfile=true
fi
fi
if [ "X$keeperrfile" != 'Xtrue' ]; then
# no problem, remove the error log
rm $outdir/analog.err
fi
# Clean up old logfiles
rm -f $outdir/fwanalog.curr* $outdir/fwanalog.new*.log $outdir/convdate.sed \
$outdir/fwanalog.analog.conf.ver $outdir/fwanalog.analog.conf.gen $outdir/match_last_line.*
# Delete the lock file
rm -f $outdir/fwanalog.lock
}
iptables ()
{
# Parse iptables logfiles into an analog-compatible "URL log"
$zegrep -h "IN.+OUT.+SRC.+DST.+LEN.+TTL.+PROTO.+" $inputfiles \
| $sed 's/TYPE=\([0-9]\+\)/SPT= DPT=\1/' \
> $outdir/fwanalog.current
mkdateconvscript
# Create script to convert lines without year to fully specified date
$sed -f $outdir/convdate.sed $outdir/fwanalog.current > $outdir/fwanalog.current.withyear
# Use the script on the current logfile
# Example of converted log line:
# 2001 Mar 31 00:58:17 www kernel: packet_explanation IN=eth1 OUT= MAC=00...:00 SRC=131....38 DST=212....31 LEN=44 \
# TOS=0x00 PREC=0x00 TTL=57 ID=58478 PROTO=TCP SPT=61636 DPT=21 WINDOW=16384 RES=0x00 SYN URGP=0
# Example of desired output:
# 131....38 - packet_explanation [31/Mar/2001:00:58:17 +0200] "GET /212....31/TCP/21 HTTP/1.0" 200 \
# 44 "61636" "00....:00" 10 eth1
#
# Which means:
# ip - iptables_log-prefix [date] "GET Desthost/Protocol/Port" 200 PcktLen "http://Sourceport/" "Macadr" 0 interface
# Sourceport is in the referrer field, macadr in the user-agent, interface
# in the VirtualHost. (The interface comes from IN= and/or OUT=)
# There is not always a MAC address, e.g. if the interface is ppp0
# Decide if the source or the destination host is included in the
# Blocked Packet Report (option "onehost" in fwanalog.opts)
if [ $onehost = true ]; then
reqhost="\$9" # The analog "request" contains the source ip
elif [ $onehost = dynip ]; then
reqhost="firewall" # The analog "request" contains this string
else
reqhost="\$10" # The analog "request" contains the destination ip
fi
# 1 2 3 4 5 6 7 8 9 10 11 12 13 14
$perl -pwe "s!^(\d+) +(\w+) +(\d+) ([0-9:]+) [^:]+:? ?([a-zA-Z0-9/.,:_-]*).*IN=(.*) OUT=(\S*) ?M?A?C?=?(.*) SRC=([0-9.]+) DST=([0-9.]+) LEN=(\d+)[^[]+PROTO=([a-zA-Z0-9]+)(?: SPT=)?(\d*)(?: DPT=)?(\d*).*\$!\$9 - \$5 [\$3/\$2/\$1:\$4 $timezone] \"GET /$reqhost/\$12/\$14/ HTTP/1.0\" 200 \$11 \"http://\$13/\" \"\$8\" 0 \$6\$7!" \
$outdir/fwanalog.current.withyear > $outdir/fwanalog.current.log
# $outdir/fwanalog.current.log now contains the data in the Analog URL format.
}
ipf ()
{
openbsd
# For backward compatibility.
# Initially, I thought that each BSD with ipf uses the same format. Wrong.
}
solarisipf ()
{
# Adapted from the openbsd function below
# Parse Solaris ipf syslog files into an analog-compatible "URL log"
# Tested with Solaris 8 INTEL and ipf 3.4.20
${zegrep} -h 'ipmon.+@[0-9:]+ b.+ -> .+ PR.+len' $inputfiles \
> $outdir/fwanalog.current
mkdateconvscript
# Create script to convert lines without year to fully specified date
${sed} -f $outdir/convdate.sed $outdir/fwanalog.current \
> $outdir/fwanalog.current.withyear
# Use the script on the current logfile
# Example of converted log line:
# 2001 Apr 5 16:55:55 fw ipmon[1875]: 16:55:54.150871 xl0 @0:2 b
# 217.....93,3819 -> 195.....201,1080 PR tcp len 20 48 -S IN
# Example of desired output:
# 217....93 - - [5/Apr/2001:16:55:54 +0200] "GET /195.....201/tcp/1080 HTTP/1.0" 200 \
# 20 "3819" "" 0 xl0
#
# Which means:
# ip - - [date] "GET Desthost/Protocol/Port" 200 PcktLen "http://Sourceport/" "Macadr" 0 interface
# Sourceport is in the referrer field, macadr in the user-agent, interface
# in the VirtualHost. There is no macadr in the BSD log.
# Decide if the source or the destination host is included in the
# Blocked Packet Report (option "onehost" in fwanalog.opts)
if [ $onehost = true ]; then
reqhost="\$7" # The analog "request" contains the source ip
elif [ $onehost = dynip ]; then
reqhost="firewall" # The analog "request" contains this string
else
reqhost="\$10" # The analog "request" contains the destination ip
fi
${perl} -pwe \
's!
^ # Begin of line :-)
(\d+)\s+(\w+)\s+(\w+) \s+ # syslog year($1) month($2) day($3)
[0-9:]+ \s+ # syslog time
[a-zA-Z0-9_.]+ \s+ # syslog hostname
ipmon\[\d+\]: \s+ # ipmon process identifier
\[ID\s+\d+\s+\w+\.\w+\] \s+ # logging info
([0-9:]+)\.\d+ \s+ # time($4).hirestime
.*\s*(\w+) \s+ # optional multipler and interface name($5)
\@[0-9:]+ \s+ # ruleset
. \s+ # action
([a-zA-Z0-9-_.]+\[)?([0-9.]+)\]? # optional source name($6), source ip($7)
,?([a-zA-Z0-9\-_]*) \s+ # source port($8) - may be name or number
-\> \s+ # the arrow :-)
([a-zA-Z0-9-_.]+\[)?([0-9.]+)\]? # optional destination name($9), destination ip($10)
,?([a-zA-Z0-9\-_]*) \s+ # destination port($11) - may be name or number
PR\s+(\w+) \s+ # protocol($12)
len\s+(\d+) # length($13)
.+ # ignore the rest
$ # End of line :-)
!$7 - - [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost'/$12/$11/ HTTP/1.0" 200 $13 "http://$10/" "" 0 $5!x' \
$outdir/fwanalog.current.withyear > $outdir/fwanalog.current.log
# $outdir/fwanalog.current.log now contains the data in the Analog URL format.
}
openbsd ()
{
# Parse OpenBSD ipf logfiles into an analog-compatible "URL log"
# Tested with OpenBSD 2.8 ipf.
$zegrep -h "ipmon.+@[0-9:]+ b.+ -> .+ PR.+len" $inputfiles \
> $outdir/fwanalog.current
mkdateconvscript
# Create script to convert lines without year to fully specified date
$sed -f $outdir/convdate.sed $outdir/fwanalog.current > $outdir/fwanalog.current.withyear
# Use the script on the current logfile
# Example of converted log line:
# 2001 Apr 5 16:55:55 fw ipmon[1875]: 16:55:54.150871 xl0 @0:2 b
# 217.....93,3819 -> 195.....201,1080 PR tcp len 20 48 -S IN
# Example of desired output:
# 217....93 - - [5/Apr/2001:16:55:54 +0200] "GET /195.....201/tcp/1080 HTTP/1.0" 200 \
# 20 "3819" "" 0 xl0
#
# Which means:
# ip - - [date] "GET Desthost/Protocol/Port" 200 PcktLen "http://Sourceport/" "Macadr" 0 interface
# Sourceport is in the referrer field, macadr in the user-agent, interface
# in the VirtualHost. There is no macadr in the BSD log.
# Decide if the source or the destination host is included in the
# Blocked Packet Report (option "onehost" in fwanalog.opts)
if [ $onehost = true ]; then
reqhost="\$6" # The analog "request" contains the source ip
elif [ $onehost = dynip ]; then
reqhost="firewall" # The analog "request" contains this string
else
reqhost="\$8" # The analog "request" contains the destination ip
fi
# 1 2 3 4 5 6 7 8 9 10 11
$perl -pwe "s!^(\d+) +(\w+) +(\w+) .+: ([0-9:]+)\.\d+.+ +(\w+) @.+ . ([0-9.]+),?(\d*) -\\> ([0-9.]+),?(\d*) PR (\w+) len (\d+).+\$!\$6 - - [\$3/\$2/\$1:\$4 $timezone] \"GET /$reqhost/\$10/\$9/ HTTP/1.0\" 200 \$11 \"http://\$7/\" \"\" 0 \$5!" \
$outdir/fwanalog.current.withyear > $outdir/fwanalog.current.log
# $outdir/fwanalog.current.log now contains the data in the Analog URL format.
}
pf_30 ()
{
# Parse OpenBSD 3.0 pf logfiles into an analog-compatible "URL log"
# This *must* happen on an OpenBSD 3.0 system as it requires the OpenBSD
# version of tcpdump.
(for log in $inputfiles ; do
$gzcat -f $log \
| $tcpdump -n -e -ttt -q -r -
done) \
| $egrep -h "rule .+: block .+ on .+ [0-9.]{7}" \
> $outdir/fwanalog.current
mkdateconvscript
# Create script to convert lines without year to fully specified date
$sed -f $outdir/convdate.sed $outdir/fwanalog.current > $outdir/fwanalog.current.withyear
# Use the script on the current logfile
# Example of converted log line:
# TCP:
# 2001 Dec 21 17:48:50.760648 rule 12/0(match): block in on ae0:
# 192.168.49.2.2081 > 192.168.49.3.22: S 2901914301:2901914301(0)
# win 5840 <mss 1460,sackOK,timestamp 6674376 0,nop,wscale 0> (DF)
# UDP:
# 2001 Dec 20 20:16:24.674266 rule 2/0(match): block in on ae0:
# 192.168.49.3.137 > 192.168.49.255.137: udp 50 (ttl 64, id 61825)
# ICMP:
# 2001 Dec 20 20:21:00.324025 rule 3/0(match): block in on ae0:
# 192.168.49.1 > 192.168.49.3: icmp: echo reply (id:23464 seq:2) (ttl 255, id 21394)
#
# Example of desired output:
# 192.168.49.2 - - [5/Apr/2001:16:55:54 +0200] "GET /192.168.49.3/tcp/22 HTTP/1.0"
# 200 20 "2081" "" 0 ae0
#
# Which means:
# ip - - [date] "GET Desthost/Protocol/Port" 200 PcktLen "http://Sourceport/" "Macadr" 0 interface
# Sourceport is in the referrer field, macadr in the user-agent, interface
# in the VirtualHost. There is no macadr in the BSD log.
# Decide if the source or the destination host is included in the
# Blocked Packet Report (option "onehost" in fwanalog.opts)
# altreqhost is needed for unknown protocols (e.g. esp, ah)
if [ $onehost = true ]; then
reqhost="\$6" # The analog "request" contains the source ip
altreqhost="\$7"
elif [ $onehost = dynip ]; then
reqhost="firewall" # The analog "request" contains this string
altreqhost="firewall"
else
reqhost="\$8" # The analog "request" contains the destination ip
altreqhost="\$9"
fi
#first TCP, then UDP, then ICMP, then others (hopefully this works)
# 1 2 3 4 5 6 7 8 9
$perl -pwe "s!^(\d+) +(\w+) +(\d+) +([0-9:]+)\.\d+ rule.+block \w+ on (\w+): ([0-9.]+)\.(\d+) \\> ([0-9.]+)\.(\d+): tcp (\d+)(.*)\$!\$6 - - [\$3/\$2/\$1:\$4 $timezone] \"GET /$reqhost/tcp/\$9/ HTTP/1.0\" 200 \$10 \"http://\$7/\" \"\" 0 \$5!" \
$outdir/fwanalog.current.withyear \
|$perl -pwe "s!^(\d+) +(\w+) +(\d+) +([0-9:]+)\.\d+ rule.+block \w+ on (\w+): ([0-9.]+)\.(\d+) \\> ([0-9.]+)\.(\d+): +udp (\d+).*\$!\$6 - - [\$3/\$2/\$1:\$4 $timezone] \"GET /$reqhost/udp/\$9/ HTTP/1.0\" 200 \$10 \"http://\$7/\" \"\" 0 \$5!" \
|$perl -pwe "s!icmp: echo re(quest|ply)!icmp: echo_re\$1!" \
|$perl -pwe "s!icmp: host(.+)unreachable!icmp: host_unreachable!" \
|$perl -pwe "s!^(\d+) +(\w+) +(\d+) +([0-9:]+)\.\d+ rule.+block \w+ on (\w+): ([0-9.]+)(X?) \\> ([0-9.]+): icmp: ([a-z][a-z_]+).*\$!\$6 - - [\$3/\$2/\$1:\$4 $timezone] \"GET /$reqhost/icmp/\$9/ HTTP/1.0\" 200 0 \"http://\$7/\" \"\" 0 \$5!" \
|$perl -pwe "s!^(\d+) +(\w+) +(\d+) +([0-9:]+)\.\d+ rule.+block \w+ on (\w+): ([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)\.?(\d*) \\> ([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)\.?(\d*): (\S*) ?(\d*).*\$!\$6 - - [\$3/\$2/\$1:\$4 $timezone] \"GET /$reqhost/\$10/\$9/ HTTP/1.0\" 200 0\$11 \"http://\$7/\" \"\" 0 \$5!" \
|$perl -pwe "s!^(\d+) +(\w+) +(\d+) +([0-9:]+)\.\d+ rule.+block \w+ on (\w+): (\w+) ([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)\.?(\d*) \\> ([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)\.?(\d*).*len (\d+).*\$!\$7 - - [\$3/\$2/\$1:\$4 $timezone] \"GET /$altreqhost/\$6\$10/ HTTP/1.0\" 200 \$11 \"http://\$8\" \"\" 0 \$5!" \
> $outdir/fwanalog.current.log
# $outdir/fwanalog.current.log now contains the data in the Analog URL format.
}
freebsd ()
{
# Parse FreeBSD ipf logfiles into an analog-compatible "URL log"
# Tested with FreeBSD ipf
$zegrep -h " -> .+ PR.+len" $inputfiles \
> $outdir/fwanalog.current
mkmonthconvscript
# Create script to convert lines with a numeric month to the alphanumeric month (Jan...Dec)
$sed -f $outdir/convdate.sed $outdir/fwanalog.current \
> $outdir/fwanalog.current.withmonth
# Use the script on the current logfile
# Example of converted log line:
# 04/06/2001 16:55:55.418398 tun0 @0:2 b
# 217.....93,3819 -> 195.....201,1080 PR tcp len 20 48 -S IN
# Example of desired output:
# 217....93 - - [5/Apr/2001:16:55:54 +0200] "GET /195.....201/tcp/1080 HTTP/1.0" 200 \
# 20 "3819" "" 0 xl0
#
# Which means:
# ip - - [date] "GET Desthost/Protocol/Port" 200 PcktLen "http://Sourceport/" "Macadr" 0 interface
# Sourceport is in the referrer field, macadr in the user-agent, interface
# in the VirtualHost. There is no macadr in the BSD log.
# Decide if the source or the destination host is included in the
# Blocked Packet Report (option "onehost" in fwanalog.opts)
if [ $onehost = true ]; then
reqhost="\$4" # The analog "request" contains the source ip
elif [ $onehost = dynip ]; then
reqhost="firewall" # The analog "request" contains this string
else
reqhost="\$6" # The analog "request" contains the destination ip
fi
# 1 2 3 4 5 6 7 8 9
$perl -pwe "s!^(\d+/\w+/\d+) ([0-9:]+)\.\d+ *[0-9]*x? +(\w+) @.+ . ([0-9a-f.:]+),*(\d*) -\\> ([0-9a-f.:]+),*(\d*) PR (\w+) len (\d+).+\$!\$4 - - [\$1:\$2 $timezone] \"GET /$reqhost/\$8/\$7/ HTTP/1.0\" 200 \$9 \"http://\$5/\" \"\" 0 \$3!" \
$outdir/fwanalog.current.withmonth > $outdir/fwanalog.current.log
# $outdir/fwanalog.current.log now contains the data in the Analog URL format.
}
ipchains ()
{
# Parse ipchains logfiles into an analog-compatible "URL log"
# ipchains doesn't write the protocol name into the log, only the protocol number.
# So we convert them here manually.
$zegrep -h "Packet log: .+ (DENY|REJECT) .+PROTO=.+L=.+S.+I=.+F=.+T=" $inputfiles \
| $sed 's/PROTO=1 /PROTO=icmp /' \
| $sed 's/PROTO=2 /PROTO=igmp /' \
| $sed 's/PROTO=6 /PROTO=tcp /' \
| $sed 's/PROTO=17 /PROTO=udp /' \
> $outdir/fwanalog.current
mkdateconvscript
# Create script to convert lines without year to fully specified date
$sed -f $outdir/convdate.sed $outdir/fwanalog.current > $outdir/fwanalog.current.withyear
# Use the script on the current logfile
# Example of converted log line:
# 2001 Apr 18 06:26:18 extdevel kernel: Packet log: input DENY eth0 PROTO=17 \
# 193.83.115.48:137 193.83.115.255:137 L=78 S=0x00 I=60301 F=0x0000 T=128 (#9)
# Example of desired output:
# 131....38 - - [31/Mar/2001:00:58:17 +0200] "GET /212....31/TCP/21 HTTP/1.0" 200 \
# 44 "61636" "00....:00" 10 eth1
#
# Which means:
# ip - - [date] "GET Desthost/Protocol/Port" 200 PcktLen "http://Sourceport/" "Macadr" 0 interface
# Sourceport is in the referrer field, macadr in the user-agent, interface
# in the VirtualHost.
# There is no MAC address in ipchains logs.
# Decide if the source or the destination host is included in the
# Blocked Packet Report (option "onehost" in fwanalog.opts)
if [ $onehost = true ]; then
reqhost="\$8" # The analog "request" contains the source ip
elif [ $onehost = dynip ]; then
reqhost="firewall" # The analog "request" contains this string
else
reqhost="\$10" # The analog "request" contains the destination ip
fi
# 1 2 3 4 5 6 7 8 9 10 11 12
cat $outdir/fwanalog.current.withyear \
| $perl -pwe "s!^(\d+) +(\w+) +(\d+) ([0-9:]+) .+(DENY|REJECT) ([a-z0-9]+) PROTO=([\w-]+) ([0-9.]+):?(\d*) ([0-9.]+):?(\d*) L=(\d+).+\$!\$8 - - [\$3/\$2/\$1:\$4 $timezone] \"GET /$reqhost/\$7/\$11/ HTTP/1.0\" 200 \$12 \"http://\$9/\" \"\" 0 \$6!" \
| $perl -pwe "s!^(\d+) +(\w+) +(\d+) ([0-9:]+) .+(DENY|REJECT) ([a-z0-9]+) PROTO=(ICMP/[0-9]+):?[0-9]* ([0-9.]+)(x?) ([0-9.]+)(x?) L=(\d+).+\$!\$8 - - [\$3/\$2/\$1:\$4 $timezone] \"GET /$reqhost/\$7/ HTTP/1.0\" 200 \$12 \"http://\$9/\" \"\" 0 \$6!" \
> $outdir/fwanalog.current.log
# $outdir/fwanalog.current.log now contains the data in the Analog URL format.
}
ipfw ()
{
# fwanalog extension for freebsds ipfw
# 15/Sept/2002 Peter Hunkirchen <phunkirchen@t-online.de>
# Parse ipfw logfiles into an analog-compatible "URL log"
$zegrep -h "Deny" $inputfiles \
> $outdir/fwanalog.current
mkdateconvscript
# Create script to convert lines without year to fully specified date
$sed -f $outdir/convdate.sed $outdir/fwanalog.current > $outdir/fwanalog.current.withyear
# Use the script on the current logfile
# Example of converted log line:
# 2002 Sep 15 07:47:04 yepp /kernel: ipfw: 65435 Deny UDP 80.133.123.52:1042 165.132.149.211:4665 out via tun0
# Example of desired output:
# 131....38 - - [31/Mar/2001:00:58:17 +0200] "GET /212....31/TCP/21 HTTP/1.0" 200 \
# 44 "61636" "00....:00" 10 eth1
#
# Which means:
# ip - - [date] "GET Desthost/Protocol/Port" 200 PcktLen "http://Sourceport/" "Macadr" 0 interface
# Sourceport is in the referrer field, macadr in the user-agent, interface
# in the VirtualHost.
# There is no MAC address in ipchains logs.
# Decide if the source or the destination host is included in the
# Blocked Packet Report (option "onehost" in fwanalog.opts)
if [ $onehost = true ]; then
reqhost="\$8" # The analog "request" contains the source ip
elif [ $onehost = dynip ]; then
reqhost="firewall" # The analog "request" contains this string
else
reqhost="\$10" # The analog "request" contains the destination ip
fi
# 1 2 3 4 5 6 7 8 9 10 11 12 13
$perl -pwe "s!^(\d+) +(\w+) +(\d+) ([0-9:]+) .+(Deny|Reject) ([\w-]+) ([0-9.]+):(\d*) ([0-9.]+):(\d*) ([\w-]+) ([\w-]+) ([\w-]+)\$!\$7 - - [\$3/\$2/\$1:\$4 $timezone] \"GET /$reqhost/\$6/\$10/ HTTP/1.0\" 200 1 \"http://\$8/\" \"\" 0 \$13 !" \$outdir/fwanalog.current.withyear > $outdir/fwanalog.current.log
# $outdir/fwanalog.current.log now contains the data in the Analog URL format.
}
zynos ()
{
# Parse ZynOS (ZyXEL, NETGEAR) logfiles into an analog-compatible "URL log"
# This pattern excludes "last message repeated X times" lines
# so the count will be artificially low. How to handle?!?
$zegrep -h "IP.+Src.+Dst.+(ICMP|TCP|UDP).+spo.+dpo.+" $inputfiles \
> $outdir/fwanalog.current
mkdateconvscript
# Create script to convert lines without year to fully specified date
$sed -f $outdir/convdate.sed $outdir/fwanalog.current > $outdir/fwanalog.current.withyear
# Use the script on the current logfile
# Example of converted log line:
# 2002 Feb 27 14:43:51 router host: IP[Src=164....2 Dst=65....189 TCP \
# spo=02945 dpo=00080]}S03>R02mD
# Example of desired output:
# 164....2 - - [27/Feb/2002:14:43:51 +0500] "GET /65....189/TCP/80 HTTP/1.0" 200 \
# 1 "http://2945/" "" 0 router
#
# Which means:
# SrcIP - - [date] "GET ReqHost/Protocol/DstPort HTTP/1.0" 200
# FakePacketLen "http://SrcPort/" "" 0 routerName
# SrcPort is in the referrer field, routerName in the VirtualHost.
# There is no MAC address or packet length in NETGEAR/ZyXEL logs.
# Decide if the source or the destination host is included in the
# Blocked Packet Report (option "onehost" in fwanalog.opts)
if [ $onehost = true ]; then
reqhost="\$6" # The analog "request" contains the source ip
elif [ $onehost = dynip ]; then
reqhost="firewall" # The analog "request" contains this string
else
reqhost="\$7" # The analog "request" contains the destination ip
fi
# 1 2 3 4 5 6 7 8 9 10 11
$perl -pwe "s!^(\d+) +(\w+) +(\d+) ([0-9:]+) (\S+) [^:]+: +IP\[Src=([0-9\.]+) +Dst=([0-9\.]+) +(\S+) +spo=0*([0-9]+) +dpo=0*([0-9]+)\]}(\S+)\$!\$6 - - [\$3/\$2/\$1:\$4 $timezone] \"GET /$reqhost/\$8/\$10/ HTTP/1.0\" 200 1 \"http://\$9/\" \"\" 0 \$5!" \
$outdir/fwanalog.current.withyear > $outdir/fwanalog.current.log
# $outdir/fwanalog.current.log now contains the data in the Analog URL format.
}
cisco ()
{
# Parse Cisco PIX and router logfiles into an analog-compatible "URL log"
# Tested with logs from Cisco PIX and routers with access-lists.
# Adapted from the solarisipf() function
# Note: Cisco doesn't log packet lengts so each packet is faked to have 0 byte.
# See Analog's SIZE and *COLS commands to turn off packet size reports.
pixpatterns="Inbound .+ connection denied from [0-9./]+ to [0-9./]+"
pixpatterns="$pixpatterns|Deny inbound (udp|icmp|tcp) from [0-9./]+ to [0-9./]+"
pixpatterns="$pixpatterns|Deny (inbound )?(\(No xlate\) )?(udp|icmp|tcp) src [^:]+:[0-9./]+ dst [^:]+:[0-9./]"
pixpatterns="$pixpatterns|Deny TCP (\(no connection\) )?from [0-9./]+ to [0-9./]+.+on interface"
pixpatterns="$pixpatterns|translation creation failed for (udp|icmp|tcp) src [^:]+:[0-9./]+ dst [^:]+:[0-9./]+"
pixpatterns="$pixpatterns|No translation group found for (udp|icmp|tcp) src [^:]+:[0-9./]+ dst [^:]+:[0-9./]+"
pixpatterns="$pixpatterns|: list .+ denied [a-z0-9]+ [0-9.()]+ -> [0-9.()]+, .+ packets?"
${zegrep} -hi "$pixpatterns" $inputfiles \
> $outdir/fwanalog.current
mkdateconvscript
# Create script to convert lines without year to fully specified date
${sed} -f $outdir/convdate.sed $outdir/fwanalog.current \
> $outdir/fwanalog.current.withyear
# Use the script on the current logfile
# Examples of converted log lines:
# 2002 Dec 24 09:14:18 example.com Dec 24 2002 15:14:18:
# %PIX-2-306001: Inbound TCP connection denied from
# 10.206.26.58/4011 to 10.96.160.115/80 flags SYN on interface outside
# 2002 Dec 24 09:05:40 example.com Dec 24 2002 15:05:40:
# %PIX-2-306006: Deny inbound UDP
# from 10.114.112.73/1028 to 10.96.160.196/137 on interface outside
# 2002 Dec 24 07:18:05 example.com Dec 24 2002 13:18:05:
# %PIX-3-306011: Deny inbound (No xlate) icmp
# src outside:10.249.118.254 dst outside:10.96.160.84 (type 8, code 0)
# Example of desired output:
# 217....93 - - [5/Apr/2001:16:55:54 +0200] "GET /195.....201/tcp/1080 HTTP/1.0" 200 \
# 20 "3819" "" 0 xl0
#
# Which means:
# ip - - [date] "GET Desthost/Protocol/Port" 200 PcktLen "http://Sourceport/" "Macadr" 0 interface
# Sourceport is in the referrer field, macadr in the user-agent, interface
# in the VirtualHost. There is no macadr in the BSD log.
# Decide if the source or the destination host is included in the
# Blocked Packet Report (option "onehost" in fwanalog.opts)
if [ $onehost = true ]; then
reqhost="\$5" # The analog "request" contains the source ip
reqhost_1="\$7" # in a more complex regexp is the position $7 instead of $5
reqhost_2="\$6" # ... or $6
elif [ $onehost = dynip ]; then
reqhost="firewall" # The analog "request" contains this string
else
reqhost="\$7" # The analog "request" contains the destination ip
reqhost_1="\$10" # in a more complex regexp is the position $10 instead of $7
reqhost_2="\$8" # ... or $8
fi
cat $outdir/fwanalog.current.withyear \
| ${perl} -pwe \
's! # Inbound TCP connection denied
^ # Begin of line :-)
(\d+)\s(\w+)\s+(\w+) \s+ # syslog year $1 month $2 day $3
(?:\d{4}\s)? # optional year when timestamp is switched on
([0-9:]+) \s+ # syslog time $4
(?:\[?[a-zA-Z0-9_.-]*\]?\s)?# optional syslog hostname
(?:\w\w\w \s+ \d+ \s+ \d+ \s+ [0-9:]+ \s)? # optional PIX date/time in UTC
.+ Inbound.TCP.connection.denied \s # PIX ID (?); verbose description
from \s ([0-9.]+)/([0-9]+) \s # Source IP ($5), port ($6)
to \s ([0-9.]+)/([0-9]+) \s # Destination IP ($7), port ($8)
flags \s ([A-Z ]*) [ \t]+ # TCP flags ($9)
(?:on.interface.)?([a-zA-Z0-9&_-]*)[ \t]* # interface ($10), possible whitespace
$ # End of line :-)
!$5 - - [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost'/tcp/$8/ HTTP/1.0" 200 0 "http://$6/" "" 0 $10!x' \
| ${perl} -pwe \
's! # Deny TCP (no connection)
^ # Begin of line :-)
(\d+)\s(\w+)\s+(\w+) \s+ # syslog year $1 month $2 day $3
(?:\d{4}\s)? # optional year when timestamp is switched on
([0-9:]+) \s+ # syslog time $4
(?:\[?[a-zA-Z0-9_.-]*\]?\s)?# optional syslog hostname
(?:\w\w\w \s+ \d+ \s+ \d+ \s+ [0-9:]+ \s)? # optional PIX date/time in UTC
.+ Deny.TCP..no.connection. \s # PIX ID (?); verbose description
from \s ([0-9.]+)/([0-9]+) \s # Source IP ($5), port ($6)
to \s ([0-9.]+)/([0-9]+) \s # Destination IP ($7), port ($8)
flags \s ([A-Z ]*) \s+ # TCP flags ($9)
on.interface.([a-zA-Z0-9&_-]+) # interface ($10)
.* $ # possible junk, end of line
!$5 - - [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost'/tcp/$8/ HTTP/1.0" 200 0 "http://$6/" "" 0 $10!x' \
| ${perl} -pwe \
's! # Deny inbound UDP, first version (with "on interface")
^ # Begin of line :-)
(\d+)\s(\w+)\s+(\w+) \s+ # syslog year $1 month $2 day $3
(?:\d{4}\s)? # optional year when timestamp is switched on
([0-9:]+) \s+ # syslog time $4
(?:\[?[a-zA-Z0-9_.-]*\]?\s)?# optional syslog hostname
(?:\w\w\w \s+ \d+ \s+ \d+ \s+ [0-9:]+ \s)? # optional PIX date/time in UTC
.+ Deny.inbound.UDP \s # PIX ID (?); verbose description
from \s ([0-9.]+)/([0-9]+) \s # Source IP ($5), port ($6)
to \s ([0-9.]+)/([0-9]+) \s # Destination IP ($7), port ($8)
on.interface \s ([a-zA-Z0-9&_-]+)? # interface ($9),
.* # possible whitespace or junk
$ # End of line :-)
!$5 - - [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost'/udp/$8/ HTTP/1.0" 200 0 "http://$6/" "" 0 $9!x' \
| ${perl} -pwe \
's! # Deny inbound UDP, second version (without "on interface")
^ # Begin of line :-)
(\d+)\s(\w+)\s+(\w+) \s+ # syslog year $1 month $2 day $3
(?:\d{4}\s)? # optional year when timestamp is switched on
([0-9:]+) \s+ # syslog time $4
(?:\[?[a-zA-Z0-9_.-]*\]?\s)?# optional syslog hostname
(?:\w\w\w \s+ \d+ \s+ \d+ \s+ [0-9:]+ \s)? # optional PIX date/time in UTC
.+ Deny.inbound.UDP \s # PIX ID (?); verbose description
from \s ([0-9.]+)/([0-9]+) \s # Source IP ($5), port ($6)
to \s ([0-9.]+)/([0-9]+) \s # Destination IP ($7), port ($8)
.* # possible whitespace or junk
$ # End of line :-)
!$5 - - [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost'/udp/$8/ HTTP/1.0" 200 0 "http://$6/" "" 0 unknown!x' \
| ${perl} -pwe \
's! # Deny inbound (No xlate) (tcp|udp)
^ # Begin of line :-)
(\d+)\s(\w+)\s+(\w+) \s+ # syslog year $1 month $2 day $3
(?:\d{4}\s)? # optional year when timestamp is switched on
([0-9:]+) \s+ # syslog time $4
(?:\[?[a-zA-Z0-9_.-]*\]?\s)?# optional syslog hostname
(?:\w\w\w \s+ \d+ \s+ \d+ \s+ [0-9:]+ \s)? # optional PIX date/time in UTC
.+.Deny.inbound.(?:.No.xlate..)?(udp|tcp) \s # PIX ID (?); desc; protocol ($5)
src \s ([a-zA-Z0-9&_.-]+):([0-9.]+)/([0-9]+) \s # Interface $6, Source IP $7, port $8
dst \s ([a-zA-Z0-9&_.-]+):([0-9.]+)/([0-9]+) # Interface $9, Dest IP $10, port $11
.* # possible whitespace or junk
$ # End of line :-)
!$7 - - [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost_1'/$5/$11/ HTTP/1.0" 200 0 "http://$8/" "" 0 $6-$9!xi' \
| ${perl} -pwe \
's! # Deny inbound (No xlate) icmp
^ # Begin of line :-)
(\d+)\s(\w+)\s+(\w+) \s+ # syslog year $1 month $2 day $3
(?:\d{4}\s)? # optional year when timestamp is switched on
([0-9:]+) \s+ # syslog time $4
(?:\[?[a-zA-Z0-9_.-]*\]?\s)?# optional syslog hostname
(?:\w\w\w \s+ \d+ \s+ \d+ \s+ [0-9:]+ \s)? # optional PIX date/time in UTC
.+.Deny.inbound(?:..No.xlate.)?.icmp \s # PIX ID (?); desc; protocol
src \s ([a-zA-Z0-9&_.-]+):([0-9.]+) \s # Interface $5, Source IP $6
dst \s ([a-zA-Z0-9&_.-]+):([0-9.]+) \s # Interface $7, Dest IP $8
.type \s (\w+),.code .+ # ICMP type $9
$ # End of line :-)
!$6 - - [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost_2'/icmp/$9/ HTTP/1.0" 200 0 "http:///" "" 0 $5-$7!x' \
| ${perl} -pwe \
's! # Deny PROTOCOL src inside:... dst ... by access-group "ACL"
^ # Begin of line :-)
(\d+)\s(\w+)\s+(\w+) \s+ # syslog year $1 month $2 day $3
(?:\d{4}\s)? # optional year when timestamp is switched on
([0-9:]+) \s+ # syslog time $4
(?:\[?[a-zA-Z0-9_.-]*\]?\s)?# optional syslog hostname
(?:\w\w\w \s+ \d+ \s+ \d+ \s+ [0-9:]+ \s)? # optional PIX date/time in UTC
.+.Deny.(udp|tcp|icmp)\s # PIX ID (?); desc; protocol $5
src \s ([a-zA-Z0-9&_.-]+):([0-9.]+)/?(\d*)\s # Interface $6, Source IP $7, src port $8
dst \s ([a-zA-Z0-9&_.-]+):([0-9.]+)/?(\d*)\s # Interface $9, Dest IP $10, dest port $11
(?:\(type.)?(\d*)(?:,.code.\d+\)\s)? # optional ICMP type $12
(?:by.access-group.")?(\w*)"?.* # ACL group $13
$ # End of line :-)
!$7 - $13 [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost_1'/$5/$11$12/ HTTP/1.0" 200 0 "http://$8/" "" 0 $6-$9!x' \
| ${perl} -pwe \
's! # translation creation failed for (tcp|udp)
^ # Begin of line :-)
(\d+)\s(\w+)\s+(\d+) \s+ # syslog year $1 month $2 day $3
(?:\d{4}\s)? # optional year when timestamp is switched on
([0-9:]+) \s+ # syslog time $4
(?:\[?[a-zA-Z0-9_.-]*\]?\s)?# optional syslog hostname
(?:\w\w\w \s+ \d+ \s+ \d+ \s+ [0-9:]+ \s)? # optional PIX date/time in UTC
.+translation.creation.failed.for.(udp|tcp) \s # PIX ID (?); desc; protocol ($5)
src \s ([a-zA-Z0-9&_.-]+):([0-9.]+)/([0-9]+) \s # Interface $6, Source IP $7, port $8
dst \s ([a-zA-Z0-9&_.-]+):([0-9.]+)/([0-9]+) # Interface $9, Dest IP $10, port $11
.* # possible whitespace or junk
$ # End of line :-)
!$7 - - [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost_1'/$5/$11/ HTTP/1.0" 200 0 "http://$8/" "" 0 $6-$9!x' \
| ${perl} -pwe \
's! # translation creation failed for icmp
^ # Begin of line :-)
(\d+)\s(\w+)\s+(\w+) \s+ # syslog year $1 month $2 day $3
(?:\d{4}\s)? # optional year when timestamp is switched on
([0-9:]+) \s+ # syslog time $4
(?:\[?[a-zA-Z0-9_.-]*\]?\s)?# optional syslog hostname
(?:\w\w\w \s+ \d+ \s+ \d+ \s+ [0-9:]+ \s)? # optional PIX date/time in UTC
.+translation.creation.failed.for.icmp \s # PIX ID (?); desc; protocol
src \s ([a-zA-Z0-9&_.-]+):([0-9.]+) \s # Interface $5, Source IP $6
dst \s ([a-zA-Z0-9&_.-]+):([0-9.]+) \s # Interface $7, Dest IP $8
.type \s (\w+),.code .+ # ICMP type $9
$ # End of line :-)
!$6 - - [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost_2'/icmp/$9/ HTTP/1.0" 200 0 "http:///" "" 0 $5-$7!x' \
| ${perl} -pwe \
's! # No translation group found for udp/tcp
^ # Begin of line :-)
(\d+)\s(\w+)\s+(\w+) \s+ # syslog year $1 month $2 day $3
(?:\d{4}\s)? # optional year when timestamp is switched on
([0-9:]+) \s+ # syslog time $4
(?:\[?[a-zA-Z0-9_.-]*\]?\s)?# optional syslog hostname
(?:\w\w\w \s+ \d+ \s+ \d+ \s+ [0-9:]+ \s)? # optional PIX date/time in UTC
.+No.translation.group.found.for.(udp|tcp) \s # PIX ID (?); desc; protocol ($5)
src \s ([a-zA-Z0-9&_.-]+):([0-9.]+)/([0-9]+) \s # Interface $6, Source IP $7, port $8
dst \s ([a-zA-Z0-9&_.-]+):([0-9.]+)/([0-9]+) # Interface $9, Dest IP $10, port $11
.* # possible whitespace or junk
$ # End of line :-)
!$7 - - [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost_1'/$5/$11/ HTTP/1.0" 200 0 "http://$8/" "" 0 $6-$9!x' \
| ${perl} -pwe \
's! # No translation group found for icmp
^ # Begin of line :-)
(\d+)\s(\w+)\s+(\w+) \s+ # syslog year $1 month $2 day $3
(?:\d{4}\s)? # optional year when timestamp is switched on
([0-9:]+) \s+ # syslog time $4
(?:\[?[a-zA-Z0-9_.-]*\]?\s)?# optional syslog hostname
(?:\w\w\w \s+ \d+ \s+ \d+ \s+ [0-9:]+ \s)? # optional PIX date/time in UTC
.+No.translation.group.found.for.icmp \s # PIX ID (?); desc; protocol
src \s ([a-zA-Z0-9&_.-]+):([0-9.]+) \s # Interface $5, Source IP $6
dst \s ([a-zA-Z0-9&_.-]+):([0-9.]+) \s # Interface $7, Dest IP $8
.type \s (\w+),.code .+ # ICMP type $9
$ # End of line :-)
!$6 - - [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost_2'/icmp/$9/ HTTP/1.0" 200 0 "http:///" "" 0 $5-$7!x' \
| ${perl} -pwe \
's! # list 101 denied tcp 64.70.54.95(20) -> 64.5.47.191(40436), 7 packets
^ # Begin of line :-)
(\d+)\s(\w+)\s+(\w+) \s+ # syslog year $1 month $2 day $3
(?:\d{4}\s)? # optional year when timestamp is switched on
([0-9:]+) \s+ # syslog time $4
.+ # uninteresting data
: \s list\s([^ ]+)\sdenied \s # rule number $5
(\w+) \s # protocol $6
([0-9.]+)\(?(\d*)\)?\s(->)\s# Source IP $7, optional port $8; $9 just for compatibility with $reqhost_1
([0-9.]+)\(?(\d*)\)? # Dest IP $10, optional port $11
, \s (\d+) \s packets? # Packet count $12
$ # End of line :-)
!$7 - $5 [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost_1'/$6/$11/ HTTP/1.0" 200 $12 "http://$8/" "" 0 !x' \
> $outdir/fwanalog.current.log
# $outdir/fwanalog.current.log now contains the data in the Analog URL format.
}
pix ()
{
# Alias for cisco()
cisco
}
watchguard ()
{
# Parse Watchguard Firebox logfiles into an analog-compatible "URL log"
# Tested with System 6.1
# Adapted from the pix() function
wgpatterns=": deny (in|out) [a-z]+[0-9] [0-9]+ [a-z]+ [0-9]+ [0-9]+ ([0-9.]+ )+"
${zegrep} -hi "$wgpatterns" $inputfiles \
> $outdir/fwanalog.current
mkdateconvscript
# Create script to convert lines without year to fully specified date
${sed} -f $outdir/convdate.sed $outdir/fwanalog.current \
> $outdir/fwanalog.current.withyear
# Use the script on the current logfile
# Examples of converted log lines:
# 2003 Jan 4 15:41:01 216.234.247.49 firewalld[110]:
# deny in eth0 84 icmp 20 254 216.234.234.120 216.234.249.147
# 8 0 (blocked site)
# 2003 Jan 4 15:41:56 216.234.247.49 firewalld[110]:
# deny in eth0 78 udp 20 128 10.11.12.120 10.11.12.255
# 137 137 (blocked site)
# Example of desired output:
# 217....93 - blocked_site [5/Apr/2001:16:55:54 +0200] "GET /195.....201/tcp/1080 HTTP/1.0" 200 \
# 20 "3819" "" 0 xl0
#
# Which means:
# ip - reason [date] "GET Desthost/Protocol/Port" 200 PcktLen "http://Sourceport/" "Macadr" 0 interface
# Sourceport is in the referrer field, interface in the VirtualHost.
# Decide if the source or the destination host is included in the
# Blocked Packet Report (option "onehost" in fwanalog.opts)
if [ $onehost = true ]; then
reqhost="\$8" # The analog "request" contains the source ip
elif [ $onehost = dynip ]; then
reqhost="firewall" # The analog "request" contains this string
else
reqhost="\$9" # The analog "request" contains the destination ip
fi
# First, add an empty "reason" to lines that don't have it
cat $outdir/fwanalog.current.withyear \
| ${perl} -pwe 's/([a-z0-9] )$/$1() /i' \
| ${perl} -pwe \
's! # ICMP
^ # Begin of line
(\d+)\s+(\w+)\s+(\d+) \s+ # syslog year $1 month $2 day $3
([0-9:]+) \s+ # syslog time $4
[0-9a-zA-Z_.-]+\s[a-z]+\[\d+\]:\s # ip/hostname, process name, PID
deny\s[a-z]+ \s ([a-z]+\d+) \s # deny in/out, interface $5
(\d+)\s(icmp) \s \d+\s\d+\s # Packet length $6, protocol $7
([0-9.]+) \s ([0-9.]+) \s # Source, dest IP $8, $9
([0-9]+) \s ([0-9]+) \s # ICMP type $10
[a-z ()]* # sometimes TCP options
\(([a-zA-Z0-9_. -]*)\) \s # Reason $12
$ # End of line
!$8 - $12 [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost'/$7/$10/ HTTP/1.0" 200 $6 "" "" 0 $5!x' \
| ${perl} -pwe \
's! # IGMP
^ # Begin of line
(\d+)\s+(\w+)\s+(\d+) \s+ # syslog year $1 month $2 day $3
([0-9:]+) \s+ # syslog time $4
[0-9a-zA-Z_.-]+\s[a-z]+\[\d+\]:\s # ip/hostname, process name, PID
deny\s[a-z]+ \s ([a-z]+\d+) \s # deny in/out, interface $5
(\d+)\s(igmp) \s \d+\s\d+\s # Packet length $6, protocol $7
([0-9.]+) \s ([0-9.]+) \s # Source, dest IP $8, $9
([^ ]*) \s* (.*) # Some optional info $10
\(([a-zA-Z0-9_. -]*)\) \s # Reason $12
$ # End of line
!$8 - $12 [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost'/$7/$10/ HTTP/1.0" 200 $6 "" "" 0 $5!x' \
| ${perl} -pwe \
's! # TCP and UDP
^ # Begin of line
(\d+)\s+(\w+)\s+(\d+) \s+ # syslog year $1 month $2 day $3
([0-9:]+) \s+ # syslog time $4
[0-9a-zA-Z_.-]+\s[a-z]+\[\d+\]:\s # ip/hostname, process name, PID
deny\s[a-z]+ \s ([a-z]+\d+) \s # deny in/out, interface $5
(\d+)\s([a-z]+) \s \d+\s\d+\s # Packet length $6, protocol $7
([0-9.]+) \s ([0-9.]+) \s # Source, dest IP $8, $9
([0-9]+) \s ([0-9]+) \s # Source $10, destination port $11
[a-z ()]* # sometimes TCP options
\(([a-zA-Z0-9_. -]*)\) \s # Reason $12
$ # End of line
!$8 - $12 [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost'/$7/$11/ HTTP/1.0" 200 $6 "http://$10/" "" 0 $5!x' \
| ${perl} -pwe \ 's!^([0-9.]+) - ([^ ]+) ([a-z0-9_. -]+) \[(\d+/.+)$!$1 - $2_$3 [$4!i' \
| ${perl} -pwe \ 's!^([0-9.]+) - ([^ ]+) ([a-z0-9_. -]+) \[(\d+/.+)$!$1 - $2_$3 [$4!i' \
| ${perl} -pwe \ 's!^([0-9.]+) - ([^ ]+) ([a-z0-9_. -]+) \[(\d+/.+)$!$1 - $2_$3 [$4!i' \
> $outdir/fwanalog.current.log
# The last 3 perl lines convert spaces to underscores in the reason field. Therefore,
# only three spaces (or fewer) are allowed. Duplicate the lines if you need more.
# $outdir/fwanalog.current.log now contains the data in the Analog URL format.
}
fw1 ()
{
# Parse FireWall-1 export logfiles into an analog-compatible "URL log"
$zegrep -h 'FireWall-1" "' $inputfiles \
| $egrep -v '"Accept"' \
> $outdir/fwanalog.current.withyear
##mkdateconvscript
# Create script to convert lines without year to fully specified date
##$sed -f $outdir/convdate.sed $outdir/fwanalog.current > $outdir/fwanalog.current.withyear
# Use the script on the current logfile
# Example of converted log line:
# "6" "28May2002" "9:47:09" "VPN-1 & FireWall-1" "E100B2" "ntz" "Log" "Drop" \
# "Http-8080" "213.56.82.222" "213.56.82.223" "tcp" "14" "28122" "" ""
#
# Example of desired output:
# 213.56.82.222 - RuleNr [28/May/2002:9:47:09 +0000] "GET /213.56.82.223/tcp/Http-8080 HTTP/1.0" 200 \
# 0 "http://28122/" "14" 0 E100B2
#
# Which means:
# ip - - [date] "GET Desthost/Protocol/Port" 200 PcktLen "http://Sourceport/" "rule" 0 interface
# Sourceport is in the referrer field, rule in the user-agent, interface
# in the VirtualHost.
# There is no MAC address or packet length in FireWall-1 logs.
# Decide if the source or the destination host is included in the
# Blocked Packet Report (option "onehost" in fwanalog.opts)
if [ $onehost = true ]; then
reqhost="\$12" # The analog "request" contains the source ip
elif [ $onehost = dynip ]; then
reqhost="firewall" # The analog "request" contains this string
else
reqhost="\$13" # The analog "request" contains the destination ip
fi
$perl -pwe \
's!
^ # Begin of line :-)
\"([0-9]+)\" \s+ # "Number": ($1)
\"([0-9\s]+)([a-zA-Z]+)([0-9]+)\" \s+ # "Date": day($2)
# month($3) year($4)
\"([0-9:]+)\" \s+ # "Time": time($5)
\"([a-zA-Z0-9 &-]+)\" \s+ # "Product": ($6)
\"([a-zA-Z0-9-]+)\" \s+ # "Interface": ($7)
\"([a-zA-Z0-9-]+)\" \s+ # "Origin": ($8)
\"([a-zA-Z0-9]+)\" \s+ # "Type": ($9)
\"([a-zA-Z0-9]+)\" \s+ # "Action": ($10)
\"([a-zA-Z0-9_.\-]*)\" \s+ # "Service": destination port($11) - may be name or number or null
\"([a-zA-Z0-9_.\-]*)\" \s+ # "Source": ($12) - may be name or number or null
\"([a-zA-Z0-9_.\-]+)\" \s+ # "Destination": ($13) - may be name or number
\"([a-zA-Z0-9]*)\" \s+ # "Protocol": ($14) - may be name or number or null
\"([0-9]*)\" \s+ # "Rule": ($15)
\"([a-zA-Z0-9_.\-]*)\" \s+ # "Source port": ($16) - may be name or number or null
\"([a-zA-Z0-9]*)\" \s+ # "User": ($17) may be name or number or null
.+ # ignore the rest
$ # End of line :-)
!$12 - $15 [$2/$3/$4:$5 '$timezone'] \"GET /'$reqhost'/$14/$11/ HTTP/1.0" 200 0 "http://$16/" "$15" 0 $7!x' \
$outdir/fwanalog.current.withyear > $outdir/fwanalog.current.log
# $outdir/fwanalog.current.log now contains the data in the Analog URL format.
}
sonicwall ()
{
# Parse SonicWall TZ-170 syslog logfiles into an analog-compatible
# "URL log"
$zegrep -h " connection dropped" $inputfiles \
> $outdir/fwanalog.current
mkdateconvscript
# Create script to convert lines without year to fully specified date
$sed -f $outdir/convdate.sed $outdir/fwanalog.current > $outdir/fwanalog.current.withyear
# Use the script on the current logfile
# Example of converted log line:
# 2004 Dec 9 14:50:38 192.168.1.1 id=firewall sn=0123456789AB \
# time="2004-12-09 15:07:38" fw=400.300.200.100 pri=5 c=64 m=36 \
# msg="TCP connection dropped" n=38533 src=66.167.62.131:2930:WAN \
# dst=400.300.200.100:135:WAN
# Example of desired output:
# 66.167.62.131 - - [9/Dec/2004:14:50:38 -0500] \
# "GET /400.300.200.100/TCP/135 HTTP/1.0" 200 36 \
# "http://2930/" "-" 0 WAN
#
# Which means:
# ip - - [date] \
# "GET Desthost/Protocol/Port HTTP/1.0" 200 PcktLen \
# "http://Sourceport/" "Mac" 0 interface
# Sourceport is in the referrer field, macadr in the user-agent,
# interface in the VirtualHost.
# Decide if the source or the destination host is included in the
# Blocked Packet Report (option "onehost" in fwanalog.opts)
if [ $onehost = true ]; then
reqhost="\$7" # The analog "request" contains the source ip
elif [ $onehost = dynip ]; then
reqhost="firewall" # The analog "request" contains this string
else
reqhost="\$10" # The analog "request" contains the destination ip
fi
$perl -pwe 's!^
(\d+) \s+ # 1 year
(\w+) \s+ # 2 month
(\d+) \s+ # 3 day
([0-9:]+) \s+ # 4 time
[0-9.]+ \s+ # skip IP-address
\w+=\w+ \s+ # skip id=firewall
\w+=\w+ \s+ # skip sn=serial-number
\w+=\"[0-9-]+ \s+ # skip time="yyyy-mm-dd
[0-9:]+\" \s+ # hh:mm:ss"
\w+=[0-9.]+ \s+ # skip fw=IP-address
\w+=\d+ \s+ # skip pri=num
\w+=\d+ \s+ # skip c=num
\w+= # skip m=
(\d+) \s+ # 5 packet-length
\w+=\" # skip msg="
(\w+) \s+ # 6 protocol
\w+\s+\w+\" \s+ # skip connection dropped"
\w+=\d+ \s+ # skip n=num
\w+= # skip src=
([0-9.]+)\: # 7 source-IP:
(\d+)\: # 8 source-port:
(\w+) \s+ # 9 source-interface
\w+= # skip dst=
([0-9.]+)\: # 10 dest-IP:
(\d+)\: # 11 dest-port:
\w+ # skip dest-interface
.+ # skip the-rest
!$7 - - [$3/$2/$1:$4 '$timezone'] \"GET /'$reqhost'/$6/$11/ HTTP/1.0\" 200 $5 \"http://$8/\" \"-\" 0 $9!x' \
$outdir/fwanalog.current.withyear > $outdir/fwanalog.current.log
# $outdir/fwanalog.current.log now contains the data in the Analog URL format.
}
mkdateconvscript ()
{
# Creates a sed script in the output dir which converts the firewall logs
# (that don't have the year specified) to the real year (if your logs
# aren't too old)
currmo=`$date +%m`
curryear=`$date +%Y`
lastyear=`echo $curryear | awk '{ print($1 - 1) }'`
(
if [ $currmo -ge 1 ]; then echo "s/^Jan/$curryear Jan/"; else echo "s/^Jan/$lastyear Jan/"; fi
if [ $currmo -ge 2 ]; then echo "s/^Feb/$curryear Feb/"; else echo "s/^Feb/$lastyear Feb/"; fi
if [ $currmo -ge 3 ]; then echo "s/^Mar/$curryear Mar/"; else echo "s/^Mar/$lastyear Mar/"; fi
if [ $currmo -ge 4 ]; then echo "s/^Apr/$curryear Apr/"; else echo "s/^Apr/$lastyear Apr/"; fi
if [ $currmo -ge 5 ]; then echo "s/^May/$curryear May/"; else echo "s/^May/$lastyear May/"; fi
if [ $currmo -ge 6 ]; then echo "s/^Jun/$curryear Jun/"; else echo "s/^Jun/$lastyear Jun/"; fi
if [ $currmo -ge 7 ]; then echo "s/^Jul/$curryear Jul/"; else echo "s/^Jul/$lastyear Jul/"; fi
if [ $currmo -ge 8 ]; then echo "s/^Aug/$curryear Aug/"; else echo "s/^Aug/$lastyear Aug/"; fi
if [ $currmo -ge 9 ]; then echo "s/^Sep/$curryear Sep/"; else echo "s/^Sep/$lastyear Sep/"; fi
if [ $currmo -ge 10 ]; then echo "s/^Oct/$curryear Oct/"; else echo "s/^Oct/$lastyear Oct/"; fi
if [ $currmo -ge 11 ]; then echo "s/^Nov/$curryear Nov/"; else echo "s/^Nov/$lastyear Nov/"; fi
if [ $currmo -ge 12 ]; then echo "s/^Dec/$curryear Dec/"; else echo "s/^Dec/$lastyear Dec/"; fi
) > $outdir/convdate.sed
}
mkmonthconvscript ()
{
# Creates a sed script in the output dir which converts the firewall logs
# (that have the month specified numerically) to the month's abbreviation (Jan...Dec)
(
echo "s!/01/!/Jan/!"
echo "s!/02/!/Feb/!"
echo "s!/03/!/Mar/!"
echo "s!/04/!/Apr/!"
echo "s!/05/!/May/!"
echo "s!/06/!/Jun/!"
echo "s!/07/!/Jul/!"
echo "s!/08/!/Aug/!"
echo "s!/09/!/Sep/!"
echo "s!/10/!/Oct/!"
echo "s!/11/!/Nov/!"
echo "s!/12/!/Dec/!"
) > $outdir/convdate.sed
}
rotate_cache ()
{
# Greps all entries not from the current month from $outdir/fwanalog.all.log
# to another file. This is good because if fwanalog.all.log is smaller, it
# can be diffed faster. However, this is entirely optional.
echo "Note: rotating is not necessary anymore!"
# change into the script's directory because the config file is here
cd `dirname $0`
# Load the user-settable options from the config file
#. `basename $0 | $sed 's/sh$/opts/'`
. /etc/fwanalog/fwanalog.opts
# Month and year as they appear in the web server log
grepdate=`$date +/%b/%Y:`
# Name to indicate that this file is older
newlogname=fwanalog.all.log.`$date +%Y-%m`
$grep -vh $grepdate $outdir/fwanalog.all.log > $outdir/$newlogname
echo "$grep -vh $grepdate $outdir/fwanalog.all.log > $outdir/$newlogname"
$grep -h $grepdate $outdir/fwanalog.all.log > $outdir/fwanalog.all.log.current
$echo "$grep -h $grepdate $outdir/fwanalog.all.log > $outdir/fwanalog.all.log.current"
rm $outdir/fwanalog.all.log
echo "rm $outdir/fwanalog.all.log"
mv $outdir/fwanalog.all.log.current $outdir/fwanalog.all.log
echo "mv $outdir/fwanalog.all.log.current $outdir/fwanalog.all.log"
}
clean_up ()
{
#####
# Function to remove temporary files and other housekeeping
# No arguments
#####
# Delete the lock file
if [ -e $outdir/fwanalog.lock ]; then
rm -f $outdir/fwanalog.lock
fi
}
graceful_exit ()
{
#####
# Function called for a graceful exit
# No arguments
#####
clean_up
exit
}
error_exit ()
{
#####
# Function for exit due to fatal program error
# Accepts 1 argument
# string containing descriptive error message
#####
echo "${PROGNAME}: ${1:-"Unknown Error"}" >&2
clean_up
exit 1
}
term_exit ()
{
#####
# Function to perform exit if termination signal is trapped
# No arguments
#####
echo "${PROGNAME}: Terminated"
clean_up
exit
}
int_exit ()
{
#####
# Function to perform exit if interrupt signal is trapped
# No arguments
#####
echo "${PROGNAME}: Aborted by user"
clean_up
exit
}
usage ()
{
#####
# Function to display usage message (does not exit)
# No arguments
#####
echo "Usage: ${PROGNAME} [-h | --help] [-c conffile] [-r] [-t] [-y] [-a IP-addr] [-p packet]"
}
helptext ()
{
#####
# Function to display help message for program
# No arguments
#####
local tab=$(echo -en "\t\t")
cat <<- -EOF-
${PROGNAME} ver. ${VERSION}
This is a program to parse firewall logs and analyze them with Analog.
$(usage)
Options:
-h, --help Display this help message and exit.
-c conffile Use this config file instead of fwanalog.opts
-r Rotate log cache (not necessary anymore)
-t Only update statistics for today (e.g. for hourly use)
The sep_hosts and sep_packets commands in fwanalog.opts
are ignored.
-y The same as -t, only for yesterday
-a IP-addr Create a separate report for this host
-p packet Create a separate report for this packet
Format: target/protocol/portnumber
e.g. 192.168.0.1/tcp/21 or firewall/udp/137
NOTE: You must be the superuser to run this script, or have at least
read rights to the firewall log. (See README.sudo for how to
do this as a normal user.)
-EOF-
}
###########################################################################
# Program starts here
###########################################################################
# Trap TERM, HUP, and INT signals and properly exit
trap term_exit TERM HUP
trap int_exit INT
# Process command line arguments
if [ "$1" = "--help" ]; then
helptext
graceful_exit
fi
# Process arguments - edit to taste
while getopts ":hrtymc:a:p:" opt; do
case $opt in
r ) rotate_cache
graceful_exit ;;
h ) helptext
graceful_exit ;;
t ) today_only=true ;;
y ) yesterday_only=true ;;
m ) reportmagic=true ;;
a ) host_to_report="$OPTARG" ;;
p ) packet_to_report="$OPTARG" ;;
c ) configfile="$OPTARG" ;;
* ) usage
exit 1
esac
done
# No arguments - normal case
if [ $OPTIND -gt $# ]; then
(main)
fi
graceful_exit
|