microsoft/restler-fuzzer
restler grammar should support fuzzable elements for format: date-span and uri
开放
#11 创建于 2020年10月24日
good first issue
仓库指标
- 星标
- (2,929 个星标)
- PR 合并指标
- (PR 指标待抓取)
描述
For the following Swagger defined properties:
"timeSpan": {
"type": "string",
"description": "A string which is interpreted as a TimeSpan",
"format": "date-span",
"nullable": true
}
"targetUrl": {
"type": "string",
"format": "uri",
"nullable": true
}
Currently, these are compiled to restler_fuzzable_string.
It should instead be restler_fuzzable_date_span and restler_fuzzable_uri.