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
|
<!doctype linuxdoc system>
<article>
<title>SPECTER - the Userspace Logging Daemon</title>
<author>Michal Kwiatkowski <ruby@joker.linuxstuff.pl></author>
<date>Last modified: 2005/07/3</date>
<abstract>
This is the documentation for <tt>specter</tt>, userspace logging daemon.
specter makes use of the Linux >= 2.4.x packet filter subsystem (iptables)
and the ULOG target for iptables.
</abstract>
<toc>
<sect>DESIGN
<sect1>Concept
<p>
I want to provide a flexible, almost universal logging daemon for netfilter
ULOG target. Although it provides wide range of functions I'm trying to keep
it as simple as possible. These are my thoughts about how the architecture
which is most capable of doing that:
<p>
<descrip>
<tag>Input plugins</tag>
It should be possible to add plugins / runtime modules for new protocols, etc.
For example the standard logging daemon provides source-ip, dest-ip,
source-port, dest-port, etc. Logging for variuos other protocols (GRE,
IPsec, ...) may be implemented as modules.
<tag>Output plugins</tag>
... describe how and where to put the information gained by input plugins.
The easiest way is to build a line per packet and fprint it to a file.
Some people might want to log into a SQL database or want an output
conforming to the intrusion detection systems communication draft from the
IETF.
</descrip>
<sect1>Details
<p>
The major clue is providing a framework which is as flexible as possible.
Nobody knows what strange network protocols are out there :) Flexibility
depends on the communication between the output of the input plugins
and input of the output plugins.
<p>
Harald, following Rusty's advise, implemented type-key-value triples,
which work quite well for that purpose. Structure used for exchanging
data between input and output plugins is defined in <tt/specter.h/, and
is called specter_iret_t. Most of time, output plugins precisely know what
data they need, so there must exist good querying system, as input
keys are dynamically defined and stored. Up to ulogd 0.3 this was done
by several linked list iterations, which weren't obviously very fast.
In 0.9 Harald implemented usage of hash tables initialized during
init. The idea was good, but deep levels of data structures one
had to dig into to get simple value and somewhat obscure style
(like accessing <tt/ulogd_keyh[]/ from the inside of plugin) forced
me (Michal) to rewrite this again. That's when fork from ulogd happened.
Abandoning hash tables, specter implementation use only pointers
accessed by general function <tt/find_iret()/. To simplify usage of
that pointers, simple data structure <tt/specter_local_ret_t/ and
few macros defined in <tt>plugins/lret.h</tt> were also created.
Note they're not the obligatory extension; one can create his own
implementation based on single <tt/find_iret()/ definition.
<p>
Important part of specter is dynamic division into <tt>execution groups</tt>.
Each group have its own set of plugins, which are invoked independently.
That also means they have separate sets of configure options and data.
This model allows you to set various iptables rules and bind different
actions for them. Currently there are two methods of grouping implemented
- one based on netlink groups, other on the netfilter marks. See the
<ref id="specter-config-grouping" name="grouping option description">
for details. This functionality allows you to adjust specter strictly
to your needs - it can be small and simple substitute to netfilter LOG
target or universal utility to distribute large portions of logs.
<p>
<sect>INSTALLATION
<p>
<sect1>Linux kernel
<p>
First you will need a 2.4.x or 2.6.x kernel. If you have
a kernel >= 2.4.18-pre8, it already has the kernel suport for ULOG
(ipt_ULOG.o), only make sure that it was compiled in. If you want
to use <tt>nfmark</tt> <ref id="specter-config-grouping" name="grouping">
method, check if your kernel was compiled with <tt>CONFIG_IP_NF_MATCH_MARK</tt>,
<tt>CONFIG_IP_NF_TARGET_MARK</tt> and <tt>CONFIG_IP_NF_MANGLE</tt> options.
<p>
If you have an older kernel version (between 2.4.0 and 2.4.18-pre6), you
can use the patch-o-matic system of netfilter/iptables, as described in
the following section.
<p>
If you experience problems like described in my mail
<URL URL="http://lists.netfilter.org/pipermail/netfilter-devel/2004-June/015860.html">
you should apply ipt_ULOG patch you can find in contrib/ subdirectory.
It has been attached to 2.4.27 and 2.6.9 kernel.
<sect1>ipt_ULOG from netfilter/iptables patch-o-matic
<p>
You only need to read this chapter if you have a 2.4.x kernel <=
2.4.18-pre6.
<p>
In order to put the ipt_ULOG module into your kernel source, you need the latest
iptables package, or even better: the latest CVS snapshot. A description how to
obtain this is provided on the netfilter
homepage <URL URL="http://www.netfilter.org/">.
<p>
To run patch-o-matic, just type
<tscreen><verb>
make patch-o-matic
</verb></tscreen>
in the userspace directory of netfilter CVS.
<sect1>specter
<sect2>Recompiling the source
<p>
Download the specter package from <URL URL="http://joker.linuxstuff.pl/specter/"> and
untar it.
<p>
If you want to build specter with MySQL support, type './configure --with-mysql'.
You may also have to specify the path of the mysql libraries using '--with-mysql=path'.
To build specter without MySQL support, just use './configure'.
<p>
The same procedure apply to PostgreSQL support (use './configure --with-pgsql'
with or without path to libraries).
<p>
If you have other applications using libipulog library contained with this package,
you may consider building it shared. To enable this, use './configure --with-sharedlib'.
<p>
If you have sophisticated configuration and need more than default 32 execution
groups, you can redefine SPECTER_GROUPS_MAX by using '--with-group-max=value' configuration
option. That won't have any consequences to speed until you acctually make use of
these groups. But please note that netlink grouping allows you to specify only
32 groups, and that limit is kernel-driven. Use nfmarks instead.
<p>
To compile and install the program, call 'make install'. Old configuration files
won't be overwritten, so don't worry. You can also run 'make install-strip' to
discard redundant symbols from specter binary.
<sect2>Binary packages
<p>
If you're happy with defaults, there's possibility to install specter from
binary package. You can download them from project's homepage:
<URL URL="http://joker.linuxstuff.pl/specter/">. Currently tgz and rpm
formats are available.
<sect1>front-ends
<p>
There are several front-ends for viewing logs generated by specter.
Although they where designed for ulogd, there should be no problem
with using them with specter. Here are few links to that kind of
projects:
<descrip>
<tag>CCZE</tag>
<URL URL="http://bonehunter.rulez.org/software/ccze/">
<tag>Pothos</tag>
<URL URL="http://sourceforge.net/projects/pothos/">
<tag>ulogd frontend</tag>
<URL URL="http://johoho.eggheads.org/files/ulogd_php.tar.bz2">
<tag>ulog-monitor</tag>
<URL URL="http://w5.cs.uni-sb.de/~gogo/homepage/ulog-monitor/">
<tag>ulog-php</tag>
<URL URL="http://www.inl.fr/article.php3?id_article=7">
</descrip>
<p>
You can also find sample php query script in contrib/.
<sect>CONFIGURATION
<sect1>iptables ULOG target
<sect2>Quick Setup
<p>
Just add rules using the ULOG target to your firewalling chain. A very basic
example:
<tscreen><verb>
iptables -A FORWARD -j ULOG --ulog-nlgroup 32 --ulog-prefix foo
</verb></tscreen>
<p>
To increase logging performance, try to use the
<tscreen><verb>
--ulog-qthreshold N
</verb></tscreen>
option (where 1 < N <= 50). The number you specify is the amout of packets
batched together in one multipart netlink message. If you set this to 20, the
kernel schedules specter only once every 20 packets. All 20 packets are then
processed by specter. This reduces the number of context switches between kernel
and userspace.
<p>
Of course you can combine the ULOG target with the different netfilter match
modules. For a more detailed description, have a look at the netfilter
HOWTO's, available on the netfilter homepage.
<sect2>ULOG target reference
<p>
<descrip>
<tag>--ulog-nlgroup N</tag>
The number of the netlink multicast group to which ULOG'ed packets are sent.
In specter, you can specify different task for different netlink groups, see
<ref id="specter-config" name="specter configfile syntax reference"> section
for more details.
<tag>--ulog-cprange N</tag>
Copyrange. This works like the 'snaplen' paramter of tcpdump. You can specify
a number of bytes up to which the packet is copied. If you say '40', you will
receive the first fourty bytes of every packet. Leave it to '0' if you want whole
packet to be copied to userspace. For most tcp packets about 50 is mostly
enough, but parsing higher level protocols (like in HTTP plugin) require more.
<tag>--ulog-qthreshold N</tag>
Queue threshold. If a packet is matched by the iptables rule, and already N
packets are in the queue, the queue is flushed to userspace. You can use this
to implement a policy like: Use a big queue in order to gain high performance,
but still have certain packets logged immediately to userspace.
<tag>--ulog-prefix STRING</tag>
A string that is associated with every packet logged by this rule. You can use
this option to later tell from which rule the packet was logged.
</descrip>
<sect2>ipt_ULOG module parameters
<p>
The ipt_ULOG kernel module has a couple of module loadtime parameters which can
(and should) be tuned to accomodate the needs of the application:
<descrip>
<tag>nlbufsiz N</tag>
Netlink buffer size. A buffer of the specified size N is allocated for every
netlink group that is used. Please note that due to restrictions of the kernel
memory allocator, we cannot have a buffer size > 128kBytes. Larger buffer
sizes increase the performance, since less kernel/userspace context switches
are needed for the same amount of packets. The backside of this performance
gain is a potentially larger delay. The default value is 4096 bytes, which is
quite small.
<tag>flushtimeout N</tag>
The flushtimeout determines, after how many clock ticks (on alpha: 1ms, on
x86 and most other platforms: 10ms time units) the buffer/queue is to be
flushed, even if it is not full. This can be used to have the advantage of a
large buffer, but still a finite maximum delay introduced. The default value
is set to 10 seconds.
</descrip>
Example:
<tscreen><verb>
modprobe ipt_ULOG nlbufsiz=65535 flushtimeout=100
</verb></tscreen>
This would use a buffer size of 64k and a flushtimeout of 100 clockticks (1 second on x86).
<sect1>specter
<p>
If you were using ulogd before and want to keep your configuration,
check the <tt>ulogd2specter.pl</tt> script in contrib/, which will
convert your configfile. But it's still good to learn the new syntax,
as it gives you much more possibilities.
<sect2>specter configfile syntax reference
<label id="specter-config">
<p>
specter reads its configuration parameters from file, which is mostly
`/etc/specter.conf'. It is divided into blocks. Each block start with
a opening curly bracket <tt>{</tt> and end with closing curly bracket
<tt>}</tt>. Nesting of blocks (opening new block inside another) is
forbidden, and there's no need for that in specter configuration. In
order to distinguish between blocks, each has a <tt>name</tt>.
You can use any name for a block, except two special names:
<tt>global</tt> (which is used to specify general daemon parameters)
and <tt>plugins</tt> (that list available add-ons).
Numbers in range <tt>1</tt>-<tt>SPECTER_GROUPS_MAX</tt> has also
special functional meaning (see
<ref id="specter-config-grouping" name="grouping option description">).
You cannot define the same block twice, but don't have to define all of
them. In most configurations you'll be fine with three or four blocks.
<p>
Each block have to start in a new line, then goes its name and opening
bracket. All blocks (except for <tt>global</tt> and <tt>plugins</tt>)
are divided into logical sections, which define a configuration space
for every plugin. You start a section with a colon <tt>:</tt>
followed by its name. Within section you can finally specify your
configuration. <tt>global</tt> and <tt>plugins</tt> blocks are simpler
in that manner that they don't have any sections. Block ends with
a closing bracket. So, in general, block definition looks like this:
<tscreen><verb>
name {
include other_block
:section_one
some_option value
# comment
other_option "long value that needs spaces"
:section_two
# this section have no options, but it's important to specify it
:section_three
option
option value # another comment
...
}
</verb></tscreen>
<p>
As you can see, not every option needs a value, in that case its
presence will override a default (see below for specific options
description). A hash <tt>#</tt>
is used as a comment, as it will cause a rest of line to be ignored. Of
course you can use comments everywhere, not only inside blocks. If you
need to set an option to a string containing spaces or tabs, you can
enclose it inside double quotation marks, as shown above. And if you
ever manage to write a very long config line, you can cut it by
<tt>\</tt> and continue your statement in the line below.
<p>
Since 1.2 version of specter you can use <tt>include</tt> statement
to attach contents of other block to current block. Length of
<tt>include</tt> chain is unlimited, but no recursion is allowed.
Each <tt>include</tt> command is performed exacly once, what
mostly does what you wanted.
<sect3>global block syntax
<p>
Available global options are:
<descrip>
<tag>errignore</tag>
This options causes specter to continue running despite of errors
generated by plugins. That doesn't affect initialization phase, when
all errors cause an exit. This option can be useful on heavy-load
systems, when you expect some malloc() to fail. It doesn't take any
arguments.
<tag>logfile</tag>
Path to a file you want specter messages to get logged to. Can be set to
<tt>stdout</tt> or <tt>stderr</tt>.
<tag>loglevel</tag>
The lower the value, the more information is logged. If you experience
any problems, check lowest, debug loglevel=1, so that you can see all
messages. The highest loglevel is 8, which cause only fatal errors to
be shown. The default is 3.
<tag>rmem</tag>
Size of the netlink socket receive memory. You should set this to at least the
size of the kernel buffer (nlbufsiz parameter of the ipt_ULOG module). Please
note that there is a maximum limit in /proc/sys/net/core/rmem_max which you
cannot exceed by increasing the <tt>rmem</tt> parameter. You may need to raise the
system-wide maximum limit before. You can define this variable in kilobytes
(suffix it by 'K') or in megabytes (use 'M' suffix).
<tag>bufsize</tag>
Size of the receive buffer. You should set this to at least the size <tt>rmem</tt>
option has. Like <tt>rmem</tt> can be suffixed by 'M' or 'K'.
<label id="specter-config-grouping">
<tag>grouping</tag>
That option sets grouping strategy. Every block which name is a number
within range <tt>1</tt> to <tt>SPECTER_GROUPS_MAX</tt> (default 32, use
<tt>--with-group-max</tt> build option to change it), will be treaten as
a separate execution block. Setting <tt>grouping</tt> to <tt>netlink</tt>
will cause interpreting these blocks as netlink groups (as defined with
<tt>--ulog-nlgroup</tt> iptables ULOG target option). When <tt>nfmark</tt>
value is used, groups will be compared to mark field in netfilter packet
(see iptables(8) for more details on MARK module). If you find it a bit
complicated, check <ref id="examples" name="examples"> section.
<tag>nlgroup</tag>
Will set netlink group to listen to. Can't be used with <tt>grouping</tt>
set to <tt>netlink</tt>, as several nlgroups are used in that case.
</descrip>
<sect3>plugins block syntax
<p>
<tt>plugins</tt> block structure is very simple. In each line symbolic
name and path to plugin binary have to be provided, like in a example:
<tscreen><verb>
BASE /lib/specter/specter_BASE.so
</verb></tscreen>
Name can be anything you want, but it's probably the most informative
to set it to plugin's name. You should then use this name as sections
names.
<p>
Please note that setting paths doesn't mean corresponding plugins will
be loaded. You have to use them in blocks in order to force their load.
That mean you can list all plugins you have compiled and select which
to use by configuring execute blocks adequately.
<sect2>specter commandline option reference
<p>
Apart from the config file, there are a couple of commandline options to specter:
<descrip>
<tag>-h --help</tag>
Print a help message about the commandline options.
<tag>-V --version</tag>
Print version information about specter.
<tag>-d --daemon</tag>
Fork off into daemon mode. Unless you are debugging, you will want to use this
most of the time.
<tag>-c --configfile</tag>
Using this commandline option, an alternate config file can be used. This is
important if multiple instances of specter are to be run on a single machine.
<tag>-u --uid</tag>
This option tells specter to drop its privileges and run as given user.
<tag>-g --gid</tag>
This option tells specter to drop its privileges and run as given group.
</descrip>
<label id="examples">
<sect2>Examples
<p>
For description of plugins and their options, see <ref id="plugins" name="plugins">
section.
<sect3>Example 1
<p>
Say, you just want to log non-related tcp and udp packets in separate
files. You must first set up your netfilter:
<tscreen><verb>
# iptables -A INPUT -p tcp -m state --state INVALID -j ULOG --ulog-nlgroup 1
# iptables -A INPUT -p udp -m state --state INVALID -j ULOG --ulog-nlgroup 2
</verb></tscreen>
And now use this specter configuration:
<tscreen><verb>
plugins {
BASE /lib/specter/specter_BASE.so
LOCAL /lib/specter/specter_LOCAL.so
LOGEMU /lib/specter/specter_LOGEMU.so
}
1 {
:BASE
:LOCAL
:LOGEMU
logfile /var/log/specter.tcp
}
2 {
:BASE
:LOCAL
:LOGEMU
logfile /var/log/specter.udp
}
</verb></tscreen>
<sect3>Example 2
<p>
Maybe you want to analyze every packet that passes your HTTP server
with a application that uses pcap-style files? Prepare you firewall:
<tscreen><verb>
# iptables -A INPUT -p tcp --dport 80 -j ULOG --ulog-nlgroup 5
# iptables -A OUTPUT -p tcp --sport 80 -j ULOG --ulog-nlgroup 5
</verb></tscreen>
Then use this configuration, so all http traffic will be saved in a
<tt>/var/log/specter.http</tt>.
But you expect some attacks and want packets to appear immediately in
log, so you use <tt>sync</tt> option as well.
<tscreen><verb>
plugins {
BASE /lib/specter/specter_BASE.so
PCAP /lib/specter/specter_PCAP.so
}
5 {
:BASE
:PCAP
file /var/log/specter.http
sync
}
</verb></tscreen>
<sect3>Example 3
<p>
You're very paranoid and want to save all IPs that tried to ping you
in a database, yes? Logging tcp requests are also in you concern, right?
Moreover, you don't want to occupy more than one netlink group, so you
decide to use mark module to divide packets into groups. Try these
iptables rules:
<tscreen><verb>
# iptables -t mangle -A INPUT -p icmp --icmp-type echo-request -j MARK --set-mark 13
# iptables -t mangle -A INPUT -p tcp -m state --state NEW -j MARK --set-mark 15
# iptables -A INPUT -m mark --mark 13 -j ULOG --ulog-nlgroup 1
# iptables -A INPUT -m mark --mark 15 -j ULOG --ulog-nlgroup 1
</verb></tscreen>
This config will do the rest:
<tscreen><verb>
global {
grouping nfmark
nlgroup 1
}
plugins {
BASE /lib/specter/specter_BASE.so
MYSQL /lib/specter/specter_MYSQL.so
}
13 {
:BASE
:MYSQL
db mydb
host localhost
user username
pass password
table pings
}
15 {
:BASE
:MYSQL
db mydb
host localhost
user username
pass password
table tcp_requests
}
</verb></tscreen>
<sect3>Example 4
<p>
You don't like fragmented packets? You can automaticaly block anyone
who ever send you fragmented tcp packet. Use this single iptables rule:
<tscreen><verb>
# iptables -A INPUT -p tcp -f -j ULOG --ulog-nlgroup 1
</verb></tscreen>
Now use this config to dynamically change your netfilter configuration
with the use of EXEC plugin:
<tscreen><verb>
plugins {
EXEC /lib/specter/specter_EXEC.so
}
1 {
:EXEC
command "/usr/sbin/iptables -A INPUT -p tcp -s %S --sport %s -j DROP"
}
</verb></tscreen>
<label id="plugins">
<sect>AVAILABLE PLUGINS
<p>
specter does nearly nothing on its own, it uses plugins
for all the dirty work. They are divided into two groups.
Input plugins analyze a packet and create hash table concerning received data,
in the form like key=value. They don't open files nor they take any
input from user. Only output plugins take options. They actually use data
from input plugins - save it into logs/databases or execute appropriate
commands. So it's vital for you to learn about their configuration, because
it's the essence of using specter.
<sect1>Input plugins
<p>
Every input plugin analyze incoming packet in special way and generate
appropriate keys, which then can be parsed or saved by output plugins.
You can check what keys are generated by each input plugin by looking at
plugin's source - somewhere on top there's a definition of
<tt>specter_iret_t</tt> array, which lists all of them. For example,
<tt>specter_BASE</tt> generates keys like <tt>raw.mac</tt>,
<tt>ip.protocol</tt> or <tt>icmp.type</tt>, among many others of course.
Note that not all keys will be set during packet parsing, these that
won't be set will remain empty. Different output plugins handle this
case differently, please read details in their documentation.
<p>
specter comes with the following input plugins:
<sect2>specter_BASE.so
<p>
Basic input plugin for nfmark, timestamp, mac address, ip header, tcp
header, udp header, icmp header, ah/esp header... Most output plugins need
this very important plugin.
<sect2>specter_PWSNIFF.so
<p>
Example input plugin to log plaintext passwords as used with FTP and
POP3. Don't blame me for writing this plugin! The protocols are inherently
insecure, and there are a lot of other tools for sniffing passwords... it's
just an example.
<sect2>specter_LOCAL.so
<p>
This is a 'virtual interpreter'. It doesn't really return any information on
the packet itself, rather the local system time and hostname. Please note that
the time is the time at the time of logging, not the packets receive time.
<sect2>specter_HTTP.so
<p>
This plugin divides http message into set of keys, like protocol version or
User-Agent header value. Number of supported headers is high, check the sources
for full list.
<sect1>Output plugins
<p>
specter comes with the following output plugins:
<sect2>specter_EXEC.so
<p>
This plugin executes specified command when packet is received. By
proper use of its functions you can dynamically change your firewall
configuration, or even set up simple port-knocking utility.
<descrip>
<tag>command</tag>
That option defines a command that should be executed. Don't rely on
your $PATH environment variable, and provide full path to an executable.
Few printf-like macros can be used, which are expanded during parsing
of every packet:
<descrip>
<tag>%I</tag>
interface packet got received from
<tag>%O</tag>
interface packet is going to be sent to
<tag>%S</tag>
IP address of source host
<tag>%D</tag>
IP address of destination host
<tag>%P</tag>
IP protocol number (see /etc/protocols)
<tag>%s</tag>
TCP/UDP source port
<tag>%d</tag>
TCP/UDP destination port
<tag>%i</tag>
ICMP type value
</descrip>
<p>
If you want to use literal '%' in command, write it double '%%'. You can also
use shell-like stdin/stdout/stderr redirections. <tt/>/ or <tt/1>/
truncates file to zero length and redirects stdout to it. <tt/>>/
or <tt/1>>/ will append stdout stream to destination file. In the
same manner work <tt/2>/ and <tt/2>>/ redirections, except
that they apply to stderr. To redirect stdout and stderr to the same file,
use <tt/&>/ or <tt/&>>/. Redirecting input is done
by <tt/</ operator, of course.
<tag>force</tag>
When a macros expansion is being done, and any field is empty, executing
of a given command is aborted. For example, if you have %i in your <tt>command</tt>
and specter gets a tcp packet, command won't be executed, 'cos given macro
cannot be expanded (there's no ICMP type field in a TCP packet). You can
override this behavior by setting <tt>force</tt> option. Instead of bogus data,
string "invalid" will be placed. It's up to executed application to work
with that.
<tag>wait</tag>
If this options is set, daemon will wait until application terminates.
It's probably not a good idea to actually use it. If you definitely need
it, do it with caution, because it can freeze the whole daemon. Enforcing
execution limits should be set in iptables rules by use of limit module,
for example.
<tag>environment</tag>
If set, child will inherit specter's environment. In other case child be be
run in empty environment.
</descrip>
<sect2>specter_OPRINT.so
<p>
A very simple output module, dumping all packets in the format
<tscreen><verb>
===>PACKET BOUNDARY
key=value
key=value
...
===>PACKET BOUNDARY
...
</verb></tscreen>
to a file. The only useful application is debugging.
<p>The module defines the following configuration directives:
<descrip>
<tag>logfile</tag>
The filename where it should log to. The default is
<tt>/var/log/specter.oprint</tt>
</descrip>
<sect2>specter_LOGEMU.so
<p>
An output module which tries to emulate the old syslog-based LOG targed as far
as possible. Logging is done to a seperate textfile instead of syslog, though.
<p>
The module defines the following configuration directives:
<descrip>
<tag>logfile</tag>
The filename where it should log to. The default is <tt>/var/log/specter.logemu</tt>
<tag>sync</tag>
Define this option if you want to have your logfile written
synchronously. This may reduce performance, but makes your log-lines appear
immediately.
<tag>tcp_options</tag>
Works the same way as ipt_LOG --log-tcp-options parameter. It enables
logging of tcp options.
<tag>ip_options</tag>
Log options from IP packet header (equivalent to --log-ip-options from ipt_LOG
target).
<tag>tcp_seq</tag>
Enable logging of tcp sequence numbers.
<tag>mac_header</tag>
Log MAC values of incoming packets.
</descrip>
<sect2>specter_MYSQL.so
<p>
An output plugin for logging into a mysql database. This is only compiled if
you have the mysql libraries installed, and the configure script was able to
detect them. (that is: --with-mysql was specified for ./configure)<p>
The plugin automagically inserts the data into the configured table. It
connects to mysql during the startup phase of specter and obtains a list of the
columns in the table. Then it tries to resolve the column names against keys of
input plugins. This way you can easly select which information you want
to log - just by the layout of the table.<p>
If, for example, your table contains a field called 'ip_saddr', specter will
resolve this against the key 'ip.saddr' and put the ip address as 32bit
unsigned integer into the table.<p>
You may want to have a look at the file '<tt>doc/mysql.table</tt>' as an
example table including fields to log all keys from specter_BASE.so and
some from specter_HTTP.so. Just delete the fields you are not interested
in, and create the table.<p>
The module defines the following configuration directives:
<descrip>
<tag>db</tag>
Name of the mysql database.
<tag>table</tag>
Name of the table to which specter should log.
<tag>host</tag>
Name of the mysql database host. If it's '<tt>localhost</tt>' or undefined,
specter first tries to connect to local host by unix socket if possible.
<tag>port</tag>
Server port number for the tcp/ip connection.
<tag>user</tag>
Name of the mysql user, if ommited, the current user is assumed.
<tag>pass</tag>
Password for mysql.
<tag>buffsize</tag>
Size of a query buffer. You should set it only in a situation when you see
"SQL buffer too small. Insert aborted." messages in your logs. Never try to
lower this value below default, unless you really know what you're doing.
<tag>ssl_enable</tag>
If this boolean option is set, MYSQL plugin will use SSL during connection
to database.
<tag>ssl_key</tag>
Pathname to the key file.
<tag>ssl_cert</tag>
Pathname to the certificate file.
<tag>ssl_ca</tag>
Pathname to the certificate authority file.
<tag>ssl_capath</tag>
Pathname to a directory that contains trusted SSL CA certificates in pem format.
<tag>ssl_cipher</tag>
List of allowable ciphers to use for SSL encryption.
</descrip>
<sect2>specter_PGSQL.so
<p>
An output plugin for logging into a postgresql database. This is only compiled
if you have the postresql libraries installed, and the configure script was able to
detect them. (that is: --with-pgsql was specified for ./configure)<p>
The plugin automagically inserts the data into the configured table; It
connects to postgresql during the startup phase of specter and obtains a list of the
columns in the table. Then it tries to resolve the column names against keys of
input plugins. This way you can easly select which information you want
to log - just by the layout of the table.<p>
If, for example, your table contains a field called 'ip_saddr', specter will
resolve this against the key 'ip.saddr' and put the ip address as 32bit
unsigned integer into the table.<p>
You may want to have a look at the file '<tt>doc/pgsql.table</tt>' as an
example table including fields to log all keys from specter_BASE.so and
some from specter_HTTP.so. Just delete the fields you are not interested
in, and create the table.<p>
The module defines the following configuration directives:
<descrip>
<tag>db</tag>
Name of the postgresql database.
<tag>table</tag>
Name of the table to which specter should log.
<tag>host</tag>
Name of the postgresql database host. When undefined, specter try to
connect to local database by unix socket.
<tag>port</tag>
Server port number for the tcp/ip connection, or socket file name
extension for Unix-domain connections.
<tag>user</tag>
Name of the postgresql user, if ommited, the current user is assumed.
<tag>pass</tag>
Password for postgresql.
<tag>buffsize</tag>
Size of a query buffer. You should set it only in a situation when you see
"SQL buffer too small. Insert aborted." messages in your logs. Never try to
lower this value below default, unless you really know what you're doing.
<tag>ssl_enable</tag>
If this boolean option is set, PGSQL plugin will use SSL during connection
to database.
</descrip>
<sect2>specter_PCAP.so
<p>
An output plugin that can be used to generate libpcap-style packet logfiles.
This can be useful for later analysing the packet log with tools like tcpdump
or ethereal.
The module defines the following configuration directives:
<descrip>
<tag>logfile</tag>
The filename where it should log to. The default is:
<tt>/var/log/specter.pcap</tt>
<tag>sync</tag>
Set this option if you want to have your pcap logfile written
synchronously. This may reduce performance, but makes your packets appear
immediately in the file on disk.
</descrip>
<sect2>specter_SYSLOG.so
<p>
This plugin behaves much like LOGEMU, but logs its input into syslog.
Two options are allowed:
<descrip>
<tag>facility</tag>
Facility a message should be logged with. See syslog(3) manual page.
specter accepts following facilities: deamon kernel, user, localx (where
x is from 0 to 7).
<tag>level</tag>
Importance of a message. All standard syslog levels are allowed:
emerg, alert, crit, err, warning, notice, info, debug.
<tag>tcp_options</tag>
Works the same way as ipt_LOG --log-tcp-options parameter. It enables
logging of tcp options.
<tag>ip_options</tag>
Log options from IP packet header (equivalent to --log-ip-options from ipt_LOG
target).
<tag>tcp_seq</tag>
Enable logging of tcp sequence numbers.
<tag>mac_header</tag>
Log MAC values of incoming packets.
</descrip>
<sect> QUESTIONS / COMMENTS
<p>
Comments / questions / ... are all welcomed.
<p>
Just drop me a note to ruby@joker.linuxstuff.pl.
<p>
If an error doesn't happen during compilation time, you are encoured to
get from specter as many information as you can. To do that configure it
with <tt/--enable-debug/ option enabled, and set <tt/loglevel/ (in global
options) to 1. Include information about your system (architecture,
libraries) and a description to help me in reproducing this bug.
</article>
|