About 3,410,000 results
Open links in new tab
  1. benchmarking - POST request with wrk? - Stack Overflow

    Mar 7, 2013 · I started to try wrk. It's very simple to use and very hard on the server, but I don't know how to perform other kind of request such as POST. In fact, I don't even know if this tool allows it. The

  2. OWASP/ZAP dangling when trying to scan - Stack Overflow

    Feb 15, 2019 · The reason for that is, if you use -r parameter, zap will attempt to generate the file report.html at location /zap/wrk/. In order to make this work, we have to mount a directory to this …

  3. From wrk to k6: equivalent parameters and testing methodology

    Jan 1, 2024 · The concept of -c in wrk appears similar to the 'vus' concept in k6, but the documentation is somewhat ambiguous. The k6 documentation contains related options such as 'batch', 'rps', and …

  4. wrk - How to send <n> requests (instead of sending for duration <d ...

    Nov 6, 2018 · 1 Current wrk configuration allows sending continuous requests for seconds (duration parameter). Is there a way to use wrk to send requests and then exit. My use case: I want to create …

  5. ZAP baseline scan doesn't generate report - Stack Overflow

    Dec 1, 2023 · So its a file permissions problem :) Creating the /zap/wrk directory will not help - thats the directory you will be mapping to so it should not exist. Instead create the testreport.html file in your …

  6. Is there a way to pass parameters to GET request using wrk?

    Nov 5, 2015 · I need to benchmark a REST API that takes parameters as input. I wondering if there is a way to do it using wrk. Right now I don't see such an option: user@Ubuntu-K56CA:~/wrk$ ./wrk …

  7. wrk with lua script - generating multiple POST requests with different ...

    Jul 21, 2021 · wrk executes script single time and uses the identical request for all requests. Luckily, script has overridable functions, particulary request, which gets called for every request.

  8. Using wrk to test a sequence of requests - Stack Overflow

    Oct 3, 2022 · I'm currently trying to stress-test a web application that allows simple user login, logout and other functionalities with wrk but am really struggling to correctly write a script that allows me to chain …

  9. How to integrate OWASP ZAP into GCP Cloud Build CI/CD

    Jan 24, 2023 · It looks like ZAP cannot update the directory mapped to /zap/wrk/ - this will cause you lots of problems. Try running docker run -v $(pwd):/zap/wrk/:rw -t owasp/zap2docker-stable touch …

  10. Go HTTP server testing ab vs wrk so much difference in result

    Jul 2, 2015 · The main difference is that by default ab uses HTTP/1.0, so close each transmission after each request, whereas wrk uses HTTP/1.1, so keep alive the connection and reuse it for the next …