microsoft / restler-fuzzer

RESTler is the first stateful REST API fuzzing tool for automatically testing cloud services through their REST APIs and finding security and reliability bugs in these services.
MIT License
2.59k stars 296 forks source link

How does restler analyze dependencies #635

Open taylorThunderbolt opened 2 years ago

taylorThunderbolt commented 2 years ago

Description

Hi, I compiled swagger. json under the demo_server directory, and restler can analyze the dependency well. However, when I change /api/blog/posts/{postId} to /api/blog/posts/{post} , restler cannot recognize their dependencies. Changing the postId to id or Id can still analyze the dependency successfully. So I'm curious about how restler parses dependencies. Can you tell me more details about parsing, or just tell me where to find restler's source code for resolving dependencies

Thanks