Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
matusf
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
matusf
4y ago
It's more of a cure of symptoms rather than a cause, but these uBlock Origin filters work for me. They hide the signup popup. There is also a filer list called EasyList Cookie[0], which hides the cookies popup. twitter.com##div#lay
2.
▲
by
matusf
5y ago
Thanks for the report. However, without more information I'm not able to help you. What is your setup? How did you run it? could you please share the specification file? Also, let's probably move this discussion to GitHub issues:
3.
▲
by
matusf
5y ago
Yes, we looked into it. There is a chapter in my thesis[0] about RESTler and comparison with OpenAPI fuzzer. The main difference between those two fuzzer is that RESTler is a statefull fuzzer and OpenAPI fuzzer is a stateless fuzzer. Thanks
4.
▲
by
matusf
5y ago
Right now, it's probably not well suited for use in CI, since it runs until it's terminated. But I definitely plan to add a support for better usage in CI along with some examples. Thanks for the suggestion. I'll look into it
5.
▲
by
matusf
5y ago
No, it does not. As for the parsing of the OAS, it relies on openapiv3[0], which does not yet support it. 0: https://github.com/glademiller/openapiv3
6.
▲
by
matusf
5y ago
Hi HN, I'd like to share with you a fuzzer I've been working on. It is a black-box, smart, generation-based fuzzer, that fuzzes APIs based on OpenAPI specification. It all started as a bachelor thesis[0], when I wanted to do somet
7.
▲
Show HN: OpenAPI fuzzer – fuzzing APIs based on OpenAPI specification
(github.com)
76 points
by
matusf
5y ago
|
22 comments
8.
▲
by
matusf
5y ago
Python 3.6 added f-strings which are rather popular and they cause syntax error in previous versions of Python.
9.
▲
Project Hyper-as-a-HTTP-back end-in-curl
(github.com)
1 points
by
matusf
6y ago
|
0 comments
10.
▲
by
matusf
8y ago
The complexity is of recursive implementation of fibonacci is O(golden ratio ^ n). If it was O(n ^ 2) it would run under 0.1s. By the way, the nimpy looks cool. Thanks for sharing.