diff --git a/ChangeLog b/ChangeLog index a24aaf1..ac4bcd5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -Version 1.63b: +Version 1.64b: -------------- - Changed param injection check slightly to work better with WordPress. diff --git a/Makefile b/Makefile index 9c55c40..4fd80a4 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ # PROGNAME = skipfish -VERSION = 1.63b +VERSION = 1.64b OBJFILES = http_client.c database.c crawler.c analysis.c report.c INCFILES = alloc-inl.h string-inl.h debug.h types.h http_client.h \ diff --git a/config.h b/config.h index 833da3f..e0899a8 100644 --- a/config.h +++ b/config.h @@ -245,6 +245,7 @@ static const char* form_suggestion[][2] = { { "desc" , "skipfish" }, { "title" , "skipfish" }, { "subject" , "skipfish" }, + { "message" , "skipfish" }, { NULL , "1" } }; diff --git a/crawler.c b/crawler.c index 41fdc7c..8e39d6d 100644 --- a/crawler.c +++ b/crawler.c @@ -1130,14 +1130,14 @@ schedule_next: n = req_copy(RPREQ(req), req->pivot, 1); if (!is_num) SET_VECTOR(orig_state, n, "9 - 1"); - else APPEND_VECTOR(orig_state, n, "- 0 - 0"); + else APPEND_VECTOR(orig_state, n, " - 0 - 0"); n->callback = inject_check7_callback; n->user_val = 6; async_request(n); n = req_copy(RPREQ(req), req->pivot, 1); if (!is_num) SET_VECTOR(orig_state, n, "9 1 -"); - else APPEND_VECTOR(orig_state, n, "0 0 - -"); + else APPEND_VECTOR(orig_state, n, " 0 0 - -"); n->callback = inject_check7_callback; n->user_val = 7; async_request(n);