Skip to content

Commit

Permalink
Fix non-escaped characters in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Aug 19, 2014
1 parent 2dd8274 commit e6db404
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/modules/cuckoo
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ executable file to YARA, and write a rule like this::
rule evil_doer
{
condition:
cuckoo.network.http_request(/http://someone\.doingevil\.com/)
cuckoo.network.http_request(/http:\/\/someone\.doingevil\.com/)
}

Of course you can mix your behavior-related conditions with good old
Expand All @@ -54,7 +54,7 @@ string-based conditions::

condition:
$some_string and
cuckoo.network.http_request(/http://someone\.doingevil\.com/)
cuckoo.network.http_request(/http:\/\/someone\.doingevil\.com/)
}


Expand Down

0 comments on commit e6db404

Please sign in to comment.