Skip to content

Releases: NeuraLegion/bright-cli

v4.2.0

17 Feb 22:29
abbdd7f
Compare
Choose a tag to compare

4.2.0 (2020-02-17)

Features

v4.1.0

24 Jan 13:45
ad3c3d2
Compare
Choose a tag to compare

4.1.0 (2020-01-24)

Features

  • scan: add the ability to select tests to run (#27) (ad3c3d2), closes #26

v4.0.0

23 Oct 12:02
Compare
Choose a tag to compare

4.0.0 (2019-10-23)

Features

  • commands: remove type and protocol options (#22) (6a634bd), closes #21

v2.4.0

19 Sep 12:19
5b6cacc
Compare
Choose a tag to compare

Features

Provides the ability to split nexmock into multiply HAR files. For this purpose, you should specify -s, --split parameter, that accepts the number of chunks.

$ nexploit-cli archive:generate \
  -m .nexmock \
  -f archive.har \
  -t https://example.com/ \
  -s 4

That's it, nexploit-cli will create 4 HAR files which comply with following pattern: <basename>(_<number>)?.<extension>. E.g. archive.har, archive_2.har and etc.

v2.3.0

19 Sep 12:17
56d17c9
Compare
Choose a tag to compare

Features

Allows to configure a polling of scan status. For this purpose, you should specify --polling and --failure-on parameters.
Where failure-on is the predefined failure strategy that allows to finish process nexploit-cli with exit code 50 only after fulfilling the condition.
failure-on accepts following values: first-issue, first-medium-severity-issue, first-high-severity-issue.

$ nexploit-cli scan:run \
  -f archive.har \
  -K asvuesbe.dsfsdfjvnosd \
  -n test_scan \
  --polling --failure-on first-medium-severity-issue

nexploit-cli will run the scan and check its status most of the time. If the scan find at least of one medium severity issue, nexploit-cli will finish with exit code 50.