You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, thank you for the project. I looked around a little bit but cannot find responsible snippet at the codebase for APIs. I want generator to only generate specific APIs or add some if there aren't any which I'm looking for. Could you point me in a direction?
Thanks,
The text was updated successfully, but these errors were encountered:
I've just started researching this fuzzer, it looks pretty interesting, and thanks for the authors.
And it looks like I have an answer to your question. You may define your classes which must inherit the APITemplate and API classes. At your API child class you must define arguments, how to generate values for arguments for the function that you want to use, and how to generate js code from this class. Your APITemplate class must define a method to create an instance of API and check for satiable. For example, you can look at the js/misc.py file, there are some APIs already defined for example GC and SetTimeout. After creating your APIs you would need to register it in function initialize_misc_apis like this: add_api(YourApiTemplate())
Hello,
First of all, thank you for the project. I looked around a little bit but cannot find responsible snippet at the codebase for APIs. I want generator to only generate specific APIs or add some if there aren't any which I'm looking for. Could you point me in a direction?
Thanks,
The text was updated successfully, but these errors were encountered: