wallarm / gotestwaf

An open-source project in Golang to asess different API Security tools and WAF for detection logic and bypasses
https://lab.wallarm.com/test-your-waf-before-hackers/
MIT License
1.53k stars 208 forks source link

Issue with report names containing numbers #211

Closed eguillotin closed 1 year ago

eguillotin commented 1 year ago

When we specify a report name with numbers (e.g. report-10-July-2023), the numbers are changed (e.g. report-70-July-10109). (context : last GoTestWaf bin version, but seen in previous versions as well).

svkirillov commented 1 year ago

Hi!

GoTestWAF supports golang date templates in report name: https://github.com/wallarm/gotestwaf#report-name

To get a report named report-10-July-2023 you need to specify the option --reportName with the report-02-January-2006 value.

eguillotin commented 1 year ago

Ok. Got it. Thanks.