I am new to Zabbix.
Trying to create Web Scenario that verifies web login with ViewState. so trying to query VIEWSTATE from a login page with regex (so I can pass it when I am logging in) like this:

This is what I am trying to query:
Questions:
Is this the correct way of doing authentications that require VIEWSTATE hash to be passed with the login? or is there some other method?
Is my regex correct?
How can I easily verify if Zabbix took my regex correctly?
How can I see the output of {VIEWSTATE} variable?
Trying to create Web Scenario that verifies web login with ViewState. so trying to query VIEWSTATE from a login page with regex (so I can pass it when I am logging in) like this:
Code:
regex:id="__VIEWSTATE\" value="(.*)
This is what I am trying to query:
Code:
<input type="hidden" name="__VIEWSTATE" value="5000_character_long_hash">
Questions:
Is this the correct way of doing authentications that require VIEWSTATE hash to be passed with the login? or is there some other method?
Is my regex correct?
How can I easily verify if Zabbix took my regex correctly?
How can I see the output of {VIEWSTATE} variable?
Comment