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
|
Payload Keywords
================
.. role:: example-rule-emphasis
Payload keywords inspect the content of the payload of a packet or
stream.
content
-------
The content keyword is very important in signatures. Between the
quotation marks you can write on what you would like the signature to
match. The most simple format of content is::
content: "............";
It is possible to use several contents in a signature.
Contents match on bytes. There are 256 different values of a byte
(0-255). You can match on all characters; from a till z, upper case
and lower case and also on all special signs. But not all of the bytes
are printable characters. For these bytes heximal notations are
used. Many programming languages use 0x00 as a notation, where 0x
means it concerns a binary value, however the rule language uses
``|00|`` as a notation. This kind of notation can also be used for
printable characters.
Example::
|61| is a
|61 61| is aa
|41| is A
|21| is !
|0D| is carriage return
|0A| is line feed
There are characters you can not use in the content because they are
already important in the signature. For matching on these characters
you should use the heximal notation. These are::
" |22|
; |3B|
: |3A|
| |7C|
It is a convention to write the heximal notation in upper case characters.
To write for instance ``http://`` in the content of a signature, you
should write it like this: ``content: "http|3A|//";`` If you use a
heximal notation in a signature, make sure you always place it between
pipes. Otherwise the notation will be taken literally as part of the
content.
A few examples::
content:"a|0D|bc";
content:"|61 0D 62 63|";
content:"a|0D|b|63|";
It is possible to let a signature check the whole payload for a match with the content or to let it check specific parts of the payload. We come to that later.
If you add nothing special to the signature, it will try to find a match in all the bytes of the payload.
.. container:: example-rule
drop tcp $HOME_NET any -> $EXTERNAL_NET any (msg:"ET TROJAN Likely Bot Nick in IRC (USA +..)"; flow:established,to_server; flowbits:isset,is_proto_irc; :example-rule-emphasis:`content:"NICK ";` pcre:"/NICK .*USA.*[0-9]{3,}/i"; reference:url,doc.emergingthreats.net/2008124; classtype:trojan-activity; sid:2008124; rev:2;)
By default the pattern-matching is case sensitive. The content has to
be accurate, otherwise there will not be a match.
.. image:: payload-keywords/content2.png
Legend:
.. image:: payload-keywords/Legenda_rules.png
It is possible to use the ! for exceptions in contents as well.
For example::
alert http $HOME_NET any -> $EXTERNAL_NET any (msg:"Outdated Firefox on
Windows"; content:"User-Agent|3A| Mozilla/5.0 |28|Windows|3B| ";
content:"Firefox/3."; distance:0; content:!"Firefox/3.6.13";
distance:-10; sid:9000000; rev:1;)
You see ``content:!"Firefox/3.6.13";``. This means an alert will be
generated if the used version of Firefox is not 3.6.13.
.. note:: The following characters must be escaped inside the content:
``;`` ``\`` ``"``
nocase
------
If you do not want to make a distinction between uppercase and
lowercase characters, you can use nocase. The keyword nocase is a
content modifier.
The format of this keyword is::
nocase;
You have to place it after the content you want to modify, like::
content: "abc"; nocase;
Example nocase:
.. image:: payload-keywords/content3.png
It has no influence on other contents in the signature.
depth
-----
The depth keyword is a absolute content modifier. It comes after the
content. The depth content modifier comes with a mandatory numeric
value, like::
depth:12;
The number after depth designates how many bytes from the beginning of
the payload will be checked.
Example:
.. image:: payload-keywords/content4.png
startswith
----------
The ``startswith`` keyword is similar to ``depth``. It takes no arguments
and must follow a ``content`` keyword. It modifies the ``content`` to match
exactly at the start of a buffer.
Example::
content:"GET|20|"; startswith;
``startswith`` is a short hand notation for::
content:"GET|20|"; depth:4; offset:0;
``startswith`` cannot be mixed with ``depth``, ``offset``, ``within`` or
``distance`` for the same pattern.
endswith
--------
The ``endswith`` keyword is similar to ``isdataat:!1,relative;``. It takes no
arguments and must follow a ``content`` keyword. It modifies the ``content`` to
match exactly at the end of a buffer.
Example::
content:".php"; endswith;
``endswith`` is a short hand notation for::
content:".php"; isdataat:!1,relative;
``endswith`` cannot be mixed with ``offset``, ``within`` or
``distance`` for the same pattern.
offset
------
The offset keyword designates from which byte in the payload will be
checked to find a match. For instance offset:3; checks the fourth
byte and further.
.. image:: payload-keywords/content5.png
The keywords offset and depth can be combined and are often used together.
For example::
content:"def"; offset:3; depth:3;
If this was used in a signature, it would check the payload from the
third byte till the sixth byte.
.. image:: payload-keywords/content6.png
distance
--------
The keyword distance is a relative content modifier. This means it
indicates a relation between this content keyword and the content
preceding it. Distance has its influence after the preceding match.
The keyword distance comes with a mandatory numeric value. The value
you give distance, determines the byte in the payload from which will
be checked for a match relative to the previous match. Distance only
determines where Suricata will start looking for a pattern. So,
distance:5; means the pattern can be anywhere after the previous
match + 5 bytes. For limiting how far after the last match Suricata
needs to look, use 'within'.
The absolute value for distance must be less than or equal to 1MB (1048576).
Examples of distance:
.. image:: payload-keywords/distance5.png
.. image:: payload-keywords/distance4.png
.. image:: payload-keywords/distance.png
.. image:: payload-keywords/distance1.png
Distance can also be a negative number. It can be used to check for
matches with partly the same content (see example) or for a content
even completely before it. This is not very often used though. It is
possible to attain the same results with other keywords.
.. image:: payload-keywords/distance3.png
within
------
The keyword within is relative to the preceding match. The keyword
within comes with a mandatory numeric value. Using within makes sure
there will only be a match if the content matches with the payload
within the set amount of bytes. Within can not be 0 (zero)
The absolute value for within must be less than or equal to 1MB (1048576).
Example:
.. image:: payload-keywords/within2.png
Example of matching with within:
.. image:: payload-keywords/within1.png
The second content has to fall/come 'within 3 ' from the first content.
As mentioned before, distance and within can be very well combined in
a signature. If you want Suricata to check a specific part of the
payload for a match, use within.
.. image:: payload-keywords/within_distance.png
.. image:: payload-keywords/within_distance2.png
rawbytes
--------
The rawbytes keyword has no effect but is included to be compatible with
signatures that use it, for example signatures used with Snort.
isdataat
--------
The purpose of the isdataat keyword is to look if there is still data
at a specific part of the payload. The keyword starts with a number
(the position) and then optional followed by 'relative' separated by a
comma and the option rawbytes. You use the word 'relative' to know if
there is still data at a specific part of the payload relative to the
last match.
So you can use both examples::
isdataat:512;
isdataat:50, relative;
The first example illustrates a signature which searches for byte 512
of the payload. The second example illustrates a signature searching
for byte 50 after the last match.
You can also use the negation (!) before isdataat.
.. image:: payload-keywords/isdataat1.png
bsize
-----
With the ``bsize`` keyword, you can match on the length of the buffer. This adds
precision to the content match, previously this could have been done with ``isdataat``.
An optional operator can be specified; if no operator is present, the operator will
default to '='. When a relational operator is used, e.g., '<', '>' or '<>' (range),
the bsize value will be compared using the relational operator. Ranges are exclusive.
If one or more ``content`` keywords precedes ``bsize``, each occurrence of ``content``
will be inspected and an error will be raised if the content length and the bsize
value prevent a match.
Format::
bsize:<number>;
bsize:=<number>;
bsize:<<number>;
bsize:><number>;
bsize:<lo-number><><hi-number>;
Examples of ``bsize`` in a rule:
.. container:: example-rule
alert dns any any -> any any (msg:"bsize exact buffer size"; dns.query; content:"google.com"; bsize:10; sid:1; rev:1;)
alert dns any any -> any any (msg:"bsize less than value"; dns.query; content:"google.com"; bsize:<25; sid:2; rev:1;)
alert dns any any -> any any (msg:"bsize buffer less than or equal value"; dns.query; content:"google.com"; bsize:<=20; sid:3; rev:1;)
alert dns any any -> any any (msg:"bsize buffer greater than value"; dns.query; content:"google.com"; bsize:>8; sid:4; rev:1;)
alert dns any any -> any any (msg:"bsize buffer greater than or equal value"; dns.query; content:"google.com"; bsize:>=8; sid:5; rev:1;)
alert dns any any -> any any (msg:"bsize buffer range value"; dns.query; content:"google.com"; bsize:8<>20; sid:6; rev:1;)
.. container:: example-rule
alert dns any any -> any any (msg:"test bsize rule"; dns.query; content:"short"; bsize:<10; sid:124; rev:1;)
.. container:: example-rule
alert dns any any -> any any (msg:"test bsize rule"; dns.query; content:"longer string"; bsize:>10; sid:125; rev:1;)
.. container:: example-rule
alert dns any any -> any any (msg:"test bsize rule"; dns.query; content:"middle"; bsize:6<>15; sid:126; rev:1;)
To emphasize how range works: in the example above, a match will occur if
``bsize`` is greater than 6 and less than 15.
dsize
-----
With the dsize keyword, you can match on the size of the packet
payload/data. You can use the keyword for example to look for abnormal
sizes of payloads which are equal to some n i.e. 'dsize:n'
not equal 'dsize:!n' less than 'dsize:<n' or greater than 'dsize:>n'
This may be convenient in detecting buffer overflows.
dsize cannot be used when using app/streamlayer protocol keywords (i.e. http.uri)
Format::
dsize:[<>!]number; || dsize:min<>max;
Examples of dsize values:
.. container:: example-rule
alert tcp any any -> any any (msg:"dsize exact size"; dsize:10; sid:1; rev:1;)
alert tcp any any -> any any (msg:"dsize less than value"; dsize:<10; sid:2; rev:1;)
alert tcp any any -> any any (msg:"dsize less than or equal value"; dsize:<=10; sid:3; rev:1;)
alert tcp any any -> any any (msg:"dsize greater than value"; dsize:>8; sid:4; rev:1;)
alert tcp any any -> any any (msg:"dsize greater than or equal value"; dsize:>=10; sid:5; rev:1;)
alert tcp any any -> any any (msg:"dsize range value"; dsize:8<>20; sid:6; rev:1;)
alert tcp any any -> any any (msg:"dsize not equal value"; dsize:!9; sid:7; rev:1;)
byte_test
---------
The ``byte_test`` keyword extracts ``<num of bytes>`` and performs an operation selected
with ``<operator>`` against the value in ``<test value>`` at a particular ``<offset>``.
The ``<bitmask value>`` is applied to the extracted bytes (before the operator is applied),
and the final result will be right shifted one bit for each trailing ``0`` in
the ``<bitmask value>``.
Format::
byte_test:<num of bytes> | <variable_name>, [!]<operator>, <test value>, <offset> [,relative] \
[,<endian>][, string, <num type>][, dce][, bitmask <bitmask value>];
+----------------+------------------------------------------------------------------------------+
| <num of bytes> | The number of bytes selected from the packet to be converted |
| | or the name of a byte_extract/byte_math variable. |
+----------------+------------------------------------------------------------------------------+
| <operator> | |
| | - [!] Negation can prefix other operators |
| | - < less than |
| | - > greater than |
| | - = equal |
| | - <= less than or equal |
| | - >= greater than or equal |
| | - & bitwise AND |
| | - ^ bitwise OR |
+----------------+------------------------------------------------------------------------------+
| <value> | Value to test the converted value against [hex or decimal accepted] |
+----------------+------------------------------------------------------------------------------+
| <offset> | Number of bytes into the payload |
+----------------+------------------------------------------------------------------------------+
| [relative] | Offset relative to last content match |
+----------------+------------------------------------------------------------------------------+
| [endian] | Type of number being read: |
| | - big (Most significant byte at lowest address) |
| | - little (Most significant byte at the highest address) |
+----------------+------------------------------------------------------------------------------+
| [string] <num> | |
| | - hex - Converted string represented in hex |
| | - dec - Converted string represented in decimal |
| | - oct - Converted string represented in octal |
+----------------+------------------------------------------------------------------------------+
| [dce] | Allow the DCE module to determine the byte order |
+----------------+------------------------------------------------------------------------------+
| [bitmask] | Applies the AND operator on the bytes converted |
+----------------+------------------------------------------------------------------------------+
Example::
alert tcp any any -> any any \
(msg:"Byte_Test Example - Num = Value"; \
content:"|00 01 00 02|"; byte_test:2,=,0x01,0;)
alert tcp any any -> any any \
(msg:"Byte_Test Example - Num = Value relative to content"; \
content:"|00 01 00 02|"; byte_test:2,=,0x03,2,relative;)
alert tcp any any -> any any \
(msg:"Byte_Test Example - Num != Value"; content:"|00 01 00 02|"; \
byte_test:2,!=,0x06,0;)
alert tcp any any -> any any \
(msg:"Byte_Test Example - Detect Large Values"; content:"|00 01 00 02|"; \
byte_test:2,>,1000,1,relative;)
alert tcp any any -> any any \
(msg:"Byte_Test Example - Lowest bit is set"; \
content:"|00 01 00 02|"; byte_test:2,&,0x01,12,relative;)
alert tcp any any -> any any (msg:"Byte_Test Example - Compare to String"; \
content:"foobar"; byte_test:4,=,1337,1,relative,string,dec;)
byte_math
---------
The ``byte_math`` keyword adds the capability to perform mathematical operations on extracted values with
an existing variable or a specified value.
When ``relative`` is included, there must be a previous ``content`` or ``pcre`` match.
Note: if ``oper`` is ``/`` and the divisor is 0, there will never be a match on the ``byte_math`` keyword.
The result can be stored in a result variable and referenced by
other rule options later in the rule.
============== ==================================
Keyword Modifier
============== ==================================
content offset,depth,distance,within
byte_test offset,value
byte_jump offset
isdataat offset
============== ==================================
Format::
byte_math:bytes <num of bytes> | <variable-name> , offset <offset>, oper <operator>, rvalue <rvalue>, \
result <result_var> [, relative] [, endian <endian>] [, string <number-type>] \
[, dce] [, bitmask <value>];
+-----------------------+-----------------------------------------------------------------------+
| <num of bytes> | The number of bytes selected from the packet |
| | or the name of a byte_extract variable. |
+-----------------------+-----------------------------------------------------------------------+
| <offset> | Number of bytes into the payload |
+-----------------------+-----------------------------------------------------------------------+
| oper <operator> | Mathematical operation to perform: +, -, \*, /, <<, >> |
+-----------------------+-----------------------------------------------------------------------+
| rvalue <rvalue> | Value to perform the math operation with |
+-----------------------+-----------------------------------------------------------------------+
| result <result-var> | Where to store the computed value |
+-----------------------+-----------------------------------------------------------------------+
| [relative] | Offset relative to last content match |
+-----------------------+-----------------------------------------------------------------------+
| [endian <type>] | - big (Most significant byte at lowest address) |
| | - little (Most significant byte at the highest address) |
| | - dce (Allow the DCE module to determine the byte order) |
+-----------------------+-----------------------------------------------------------------------+
| [string <num_type>] | |
| | - hex Converted data is represented in hex |
| | - dec Converted data is represented in decimal |
| | - oct Converted data is represented as octal |
+-----------------------+-----------------------------------------------------------------------+
| [dce] | Allow the DCE module to determine the byte order |
+-----------------------+-----------------------------------------------------------------------+
| [bitmask] <value> | The AND operator will be applied to the extracted value |
| | The result will be right shifted by the number of bits equal to the |
| | number of trailing zeros in the mask |
+-----------------------+-----------------------------------------------------------------------+
Example::
alert tcp any any -> any any \
(msg:"Testing bytemath_body"; \
content:"|00 04 93 F3|"; \
content:"|00 00 00 07|"; distance:4; within:4; \
byte_math:bytes 4, offset 0, oper +, rvalue \
248, result var, relative;)
alert udp any any -> any any \
(byte_extract: 1, 0, extracted_val, relative; \
byte_math: bytes 1, offset 1, oper +, rvalue extracted_val, result var; \
byte_test: 2, =, var, 13; \
msg:"Byte extract and byte math with byte test verification";)
byte_jump
---------
The ``byte_jump`` keyword allows for the ability to select a ``<num of bytes>`` from an ``<offset>`` and moves the detection pointer to that position. Content matches will then be based off the new position.
Format::
byte_jump:<num of bytes> | <variable-name>, <offset> [, relative][, multiplier <mult_value>] \
[, <endian>][, string, <num_type>][, align][, from_beginning][, from_end] \
[, post_offset <value>][, dce][, bitmask <value>];
+-----------------------+-----------------------------------------------------------------------+
| <num of bytes> | The number of bytes selected from the packet to be converted |
| | or the name of a byte_extract/byte_math variable. |
+-----------------------+-----------------------------------------------------------------------+
| <offset> | Number of bytes into the payload |
+-----------------------+-----------------------------------------------------------------------+
| [relative] | Offset relative to last content match |
+-----------------------+-----------------------------------------------------------------------+
| [multiplier] <value> | Multiple the converted byte by the <value> |
+-----------------------+-----------------------------------------------------------------------+
| [endian] | - big (Most significant byte at lowest address) |
| | - little (Most significant byte at the highest address) |
+-----------------------+-----------------------------------------------------------------------+
| [string] <num_type> | |
| | - hex Converted data is represented in hex |
| | - dec Converted data is represented in decimal |
| | - oct Converted data is represented as octal |
+-----------------------+-----------------------------------------------------------------------+
| [align] | Rounds the number up to the next 32bit boundary |
+-----------------------+-----------------------------------------------------------------------+
| [from_beginning] | Jumps forward from the beginning of the packet, instead of |
| | where the detection pointer is set |
+-----------------------+-----------------------------------------------------------------------+
| [from_end] | Jump will begin at the end of the payload, instead of |
| | where the detection point is set |
+-----------------------+-----------------------------------------------------------------------+
| [post_offset] <value> | After the jump operation has been performed, it will |
| | jump an additional number of bytes specified by <value> |
+-----------------------+-----------------------------------------------------------------------+
| [dce] | Allow the DCE module to determine the byte order |
+-----------------------+-----------------------------------------------------------------------+
| [bitmask] <value> | The AND operator will be applied by <value> and the |
| | converted bytes, then jump operation is performed |
+-----------------------+-----------------------------------------------------------------------+
Example::
alert tcp any any -> any any \
(msg:"Byte_Jump Example"; \
content:"Alice"; byte_jump:2,0; content:"Bob";)
alert tcp any any -> any any \
(msg:"Byte_Jump Multiple Jumps"; \
byte_jump:2,0; byte_jump:2,0,relative; content:"foobar"; distance:0; within:6;)
alert tcp any any -> any any \
(msg:"Byte_Jump From the End -8 Bytes"; \
byte_jump:0,0, from_end, post_offset -8; \
content:"|6c 33 33 74|"; distance:0 within:4;)
byte_extract
------------
The ``byte_extract`` keyword extracts ``<num of bytes>`` at a particular ``<offset>`` and stores it in ``<var_name>``. The value in ``<var_name>`` can be used in any modifier that takes a number as an option and in the case of ``byte_test`` it can be used as a value.
Format::
byte_extract:<num of bytes>, <offset>, <var_name>, [,relative] [,multiplier <mult-value>] \
[,<endian>] [, dce] [, string [, <num_type>] [, align <align-value];
+--------------------+--------------------------------------------------------------------------+
| <num of bytes> | The number of bytes selected from the packet to be extracted |
+--------------------+--------------------------------------------------------------------------+
| <offset> | Number of bytes into the payload |
+--------------------+--------------------------------------------------------------------------+
| <var_name> | The name of the variable in which to store the value |
+--------------------+--------------------------------------------------------------------------+
| [relative] | Offset relative to last content match |
+--------------------+--------------------------------------------------------------------------+
| multiplier <value> | multiply the extracted bytes by <mult-value> before storing |
+--------------------+--------------------------------------------------------------------------+
| [endian] | Type of number being read: |
| | - big (Most significant byte at lowest address) |
| | - little (Most significant byte at the highest address) |
+--------------------+--------------------------------------------------------------------------+
| [string] <num> | |
| | - hex - Converted string represented in hex |
| | - dec - Converted string represented in decimal |
| | - oct - Converted string represented in octal |
+--------------------+--------------------------------------------------------------------------+
| [dce] | Allow the DCE module to determine the byte order |
+--------------------+--------------------------------------------------------------------------+
| align <align-value>| Round the extracted value up to the next |
| | <align-value> byte boundary post-multiplication (if any) |
| | ; <align-value> may be 2 or 4 |
+--------------------+--------------------------------------------------------------------------+
============== ==================================
Keyword Modifier
============== ==================================
content offset,depth,distance,within
byte_test offset,value
byte_math rvalue
byte_jump offset
isdataat offset
============== ==================================
Example::
alert tcp any any -> any any \
(msg:"Byte_Extract Example Using distance"; \
content:"Alice"; byte_extract:2,0,size; content:"Bob"; distance:size; within:3; sid:1;)
alert tcp any any -> any any \
(msg:"Byte_Extract Example Using within"; \
flow:established,to_server; content:"|00 FF|"; \
byte_extract:1,0,len,relative; content:"|5c 00|"; distance:2; within:len; sid:2;)
alert tcp any any -> any any \
(msg:"Byte_Extract Example Comparing Bytes"; \
flow:established,to_server; content:"|00 FF|"; \
byte_extract:2,0,cmp_ver,relative; content:"FooBar"; distance:0; byte_test:2,=,cmp_ver,0; sid:3;)
rpc
---
The rpc keyword can be used to match in the SUNRPC CALL on the RPC
procedure numbers and the RPC version.
You can modify the keyword by using a wild-card, defined with * With
this wild-card you can match on all version and/or procedure numbers.
RPC (Remote Procedure Call) is an application that allows a computer
program to execute a procedure on another computer (or address
space). It is used for inter-process communication. See
http://en.wikipedia.org/wiki/Inter-process_communication
Format::
rpc:<application number>, [<version number>|*], [<procedure number>|*]>;
Example of the rpc keyword in a rule:
.. container:: example-rule
alert udp $EXTERNAL_NET any -> $HOME_NET 111 (msg:"RPC portmap request yppasswdd"; :example-rule-emphasis:`rpc:100009,*,*;` reference:bugtraq,2763; classtype:rpc-portmap-decode; sid:1296; rev:4;)
replace
-------
The replace content modifier can only be used in ips. It adjusts
network traffic. It changes the content it follows ('abc') into
another ('def'), see example:
.. image:: payload-keywords/replace.png
.. image:: payload-keywords/replace1.png
The replace modifier has to contain as many characters as the content
it replaces. It can only be used with individual packets. It will not
work for :ref:`rules-normalized-buffers` like HTTP uri or a content match in
the reassembled stream.
The checksums will be recalculated by Suricata and changed after the
replace keyword is being used.
pcre (Perl Compatible Regular Expressions)
------------------------------------------
.. role:: example-rule-emphasis
The keyword pcre matches specific on regular expressions. More
information about regular expressions can be found here
http://en.wikipedia.org/wiki/Regular_expression.
The complexity of pcre comes with a high price though: it has a
negative influence on performance. So, to mitigate Suricata from
having to check pcre often, pcre is mostly combined with 'content'. In
that case, the content has to match first, before pcre will be
checked.
Format of pcre::
pcre:"/<regex>/opts";
Example of pcre. In this example there will be a match if the payload contains six
numbers following::
pcre:"/[0-9]{6}/";
Example of pcre in a signature:
.. container:: example-rule
drop tcp $HOME_NET any -> $EXTERNAL_NET any (msg:"ET TROJAN Likely Bot Nick in IRC (USA +..)"; flow:established,to_server; flowbits:isset,is_proto_irc; content:"NICK "; :example-rule-emphasis:`pcre:"/NICK .*USA.*[0-9]{3,}/i";` reference:url,doc.emergingthreats.net/2008124; classtype:trojan-activity; sid:2008124; rev:2;)
There are a few qualities of pcre which can be modified:
* By default pcre is case-sensitive.
* The . (dot) is a part of regex. It matches on every byte except for
newline characters.
* By default the payload will be inspected as one line.
These qualities can be modified with the following characters::
i pcre is case insensitive
s pcre does check newline characters
m can make one line (of the payload) count as two lines
These options are perl compatible modifiers. To use these modifiers,
you should add them to pcre, behind regex. Like this::
pcre: "/<regex>/i";
*Pcre compatible modifiers*
There are a few pcre compatible modifiers which can change the
qualities of pcre as well. These are:
* ``A``: A pattern has to match at the beginning of a buffer. (In pcre
^ is similar to A.)
* ``E``: Ignores newline characters at the end of the buffer/payload.
* ``G``: Inverts the greediness.
.. note:: The following characters must be escaped inside the content:
``;`` ``\`` ``"``
Suricata's modifiers
~~~~~~~~~~~~~~~~~~~~
Suricata has its own specific pcre modifiers. These are:
* ``R``: Match relative to the last pattern match. It is similar to distance:0;
* ``U``: Makes pcre match on the normalized uri. It matches on the
uri_buffer just like uricontent and content combined with http_uri.U
can be combined with /R. Note that R is relative to the previous
match so both matches have to be in the HTTP-uri buffer. Read more
about :ref:`HTTP URI Normalization <rules-http-uri-normalization>`.
.. image:: pcre/pcre3.png
.. image:: pcre/pcre4.png
.. image:: pcre/pcre5.png
.. image:: pcre/pcre6.png
* ``I``: Makes pcre match on the HTTP-raw-uri. It matches on the same
buffer as http_raw_uri. I can be combined with /R. Note that R is
relative to the previous match so both matches have to be in the
HTTP-raw-uri buffer. Read more about :ref:`HTTP URI Normalization <rules-http-uri-normalization>`.
* ``P``: Makes pcre match on the HTTP- request-body. So, it matches on
the same buffer as http_client_body. P can be combined with /R. Note
that R is relative to the previous match so both matches have to be
in the HTTP-request body.
* ``Q``: Makes pcre match on the HTTP- response-body. So, it matches
on the same buffer as http_server_body. Q can be combined with
/R. Note that R is relative to the previous match so both matches
have to be in the HTTP-response body.
* ``H``: Makes pcre match on the HTTP-header. H can be combined with
/R. Note that R is relative to the previous match so both matches have
to be in the HTTP-header body.
* ``D``: Makes pcre match on the unnormalized header. So, it matches
on the same buffer as http_raw_header. D can be combined with
/R. Note that R is relative to the previous match so both matches
have to be in the HTTP-raw-header.
* ``M``: Makes pcre match on the request-method. So, it matches on the
same buffer as http_method. M can be combined with /R. Note that R
is relative to the previous match so both matches have to be in the
HTTP-method buffer.
* ``C``: Makes pcre match on the HTTP-cookie. So, it matches on the
same buffer as http_cookie. C can be combined with /R. Note that R
is relative to the previous match so both matches have to be in the
HTTP-cookie buffer.
* ``S``: Makes pcre match on the HTTP-stat-code. So, it matches on the
same buffer as http_stat_code. S can be combined with /R. Note that
R is relative to the previous match so both matches have to be in
the HTTP-stat-code buffer.
* ``Y``: Makes pcre match on the HTTP-stat-msg. So, it matches on the
same buffer as http_stat_msg. Y can be combined with /R. Note that
R is relative to the previous match so both matches have to be in
the HTTP-stat-msg buffer.
* ``B``: You can encounter B in signatures but this is just for
compatibility. So, Suricata does not use B but supports it so it
does not cause errors.
* ``O``: Overrides the configures pcre match limit.
* ``V``: Makes pcre match on the HTTP-User-Agent. So, it matches on
the same buffer as http_user_agent. V can be combined with /R. Note
that R is relative to the previous match so both matches have to be
in the HTTP-User-Agent buffer.
* ``W``: Makes pcre match on the HTTP-Host. So, it matches on the same
buffer as http_host. W can be combined with /R. Note that R is
relative to the previous match so both matches have to be in the
HTTP-Host buffer.
.. _pcre-update-v1-to-v2:
Changes from PCRE1 to PCRE2
~~~~~~~~~~~~~~~~~~~~~~~~~~~
The upgrade from PCRE1 to PCRE2 changes the behavior for some
PCRE expressions.
- ``\I`` is a valid pcre in PCRE1, with a useless escape, so
equivalent to ``I``, but it is no longer the case in PCRE2.
There are other characters than I exhibiting this pattern
- ``[\d-a]`` is a valid pcre in PCRE1, with either a digit,
a dash or the character ``a``, but the dash must now be escaped
with PCRE2 as ``[\d\-a]`` to get the same behavior
- ``pcre2_substring_copy_bynumber`` now returns an error
``PCRE2_ERROR_UNSET`` instead of ``pcre_copy_substring`` returning
no error and giving an empty string. If the behavior of some use
case is no longer the expected one, please let us know.
|