I want to run a scan on my simple website (no java scripts, all static content, no authentication) but am running into some issues.
I am doing this on windows 2012 server. I have installed all pre-requisites/requirements (ZAP 2.6) and am using Python 3.6.
I launched the zap daemon as "zap -daemon -port 8080 -config api.disablekey=true"
Confirmed that zap is active and is capturing traffic on above port fine.
I then browsed, from within browser, to my target website. It loaded fine and I accessed a few other pages on the website.
Then ran "...\api\sdlc-integration\run_session_setup.py" as below.
It seems to run ok but in the zap.log it generates these errors (also attached is the complete zap.log file).
2017-07-03 14:43:10,401 [ZAP-ProxyThread-14] WARN API - ApiException while handling API request:
Missing Parameter (missing_parameter) : ids
at org.zaproxy.zap.extension.api.API.handleApiRequest(Unknown Source)
at org.parosproxy.paros.core.proxy.ProxyThread.processHttp(Unknown Source)
at org.parosproxy.paros.core.proxy.ProxyThread.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
2017-07-03 14:43:11,417 [ZAP-ProxyThread-15] WARN API - ApiException while handling API request:
Missing Parameter (missing_parameter) : ids
at org.zaproxy.zap.extension.api.API.handleApiRequest(Unknown Source)
at org.parosproxy.paros.core.proxy.ProxyThread.processHttp(Unknown Source)
at org.parosproxy.paros.core.proxy.ProxyThread.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Pl also find the output produced by the run_session_setup script on command prompt (run_session_setup_output.log).
Do I need to be using Mozilla firefox browser only? I am using IE and ZAP seems to capture/see the traffic ok.