🔘Pynt for JMeter

Integrate Pynt with Go to enhance API security testing. Automate security scans within your JMeter test suites to detect and mitigate vulnerabilities effectively.

To integrate Pynt with JMeter, you can use the following command to run your JMeter test from Pynt:

pynt command --cmd "./jmeter -E http -H 127.0.0.1 -P 6666 -n -t <your jmx file>"

This command directs JMeter to execute the specified test plan (test.jmx) in non-GUI mode and logs the results to results.jtl.

The -E http -H 127.0.0.1 -P 6666 parameters tell JMeter to direct its traffic to the proxy started by the pynt command during scanning.

Example

  • Download goat.jmx example from here or get it:

wget https://raw.githubusercontent.com/pynt-io/pynt/main/goat_functional_tests/goat.jmx
  • Run it with Pynt:

pynt command --cmd "jmeter -E http -H 127.0.0.1 -P 6666 -n -t goat.jmx"

Last updated