Roel Storms
Roel Storms
I had the problem with kendo where they followed "how to do it wrong" from this "tutorial". http://developer.telerik.com/featured/using-ui-libraries-without-the-bloat/
I notice that you run your scanners in docker using: `usr/bin/python3 /usr/bin/gunicorn engine-nmap:app -b 0.0.0.0:5001 --access-logfile -` which makes it hard to debug the issue. Maybe gunicorn is writing an...
No further remarks. Looks good.
I might need to add that this feature makes no sense when working with HttpServletRequest and HttpServletResponse. But your code only depends on request.getHeader and response.setHeader so I would not...
HttpCookie: https://docs.oracle.com/javase/7/docs/api/java/net/HttpCookie.html It is basically the client-side version of you Java-Cookie but it doesn't support the newest specification which has been an open issue since 2012: https://java.net/jira/browse/SERVLET_SPEC-37 My personal use-case...
The more I am trying to generate before/after code to support my usecase, the more I realize it's not that easy. I should somehow extract the setting and getting of...
Neither am I. I'm not entirely sure where you are going with this. By encoding/decoding algorithm you mean extracting the encode and decode methods? Why should they be retrieved using...
I see your point on but am still unclear on how to extract the encoding and decoding from Cookies. It's not just the encoding/decoding that changes but also the validity...
If create a cookie from the 'cookie' header, no attributes are available since this header doesn't carry attributes. So you will just set them to defaults then? 2015-12-11 19:14 GMT+01:00...
Not yet, I am currently working on something else and I hope to come back to the java Cookie within the next few weeks. If you have a design in...