From e6db4049a44e59d488c90df1c1adb3729a8c8979 Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Tue, 19 Aug 2014 13:42:05 +0200 Subject: [PATCH] Fix non-escaped characters in documentation --- docs/modules/cuckoo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/cuckoo b/docs/modules/cuckoo index 91ad542dfa..6855563abd 100644 --- a/docs/modules/cuckoo +++ b/docs/modules/cuckoo @@ -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 @@ -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/) }