GUI CSS: Refactored wato styles to nested structure meeting sasslint requirements...
[check_mk.git] / checkman / check_form_submit
blob84ed9a05c1bbbc96a8405d281fb66906a088e51d
1 title: HTTP Form Check
2 agents: active
3 catalog: agentless
4 license: GPL
5 distribution: check_mk
6 description:
7  This check performs HTTP requests with some advanced features like
8  a) Detecting, populating and submitting HTML forms
9  b) Accepts and uses cookies
10  c) Follos HTTP redirects
11  d) Extends HTTP headers
13  Several hosts may be specified at once. For this case warning an critical levels may
14  be given and are applied to the number of successful responses.
16  This check can be configured by WATO.
18  See the {usage} page of the check for details about the invocation on the command line.
20 Examples:
21  Call the page test.php, find the single form on that page and
22  submit it with default values:
24   ./check_form_submit -I localhost -u /test.php
26  Same as above, but expect the string "Hello" in the response
27  of the form:
29  ./check_form_submit -I localhost -u /test.php -e "Hello"
31  Login as omdadmin with password omd, in the OMD site named /event,
32  let the login redirect to the wato.py and expect the string WATO
33  in this response:
35  ./check_form_submit -I localhost -u /event -q '_origtarget=wato.py&_username=omdadmin&_password=omd' -e 'WATO'