Skip to content

Releases: NeuraLegion/bright-cli

v6.0.3

27 Aug 12:54
5e0ef7f
Compare
Choose a tag to compare

6.0.3 (2020-08-27)

Documents

v6.0.2

27 Aug 12:45
ed048ce
Compare
Choose a tag to compare

6.0.2 (2020-08-27)

Performance Improvements

v6.0.1

22 Aug 19:04
Compare
Choose a tag to compare

6.0.1 (2020-08-22)

Docs

  • readme: remove commands reference (06fcd5f4)

v6.0.0

21 Aug 20:10
c0bb81c
Compare
Choose a tag to compare

6.0.0 (2020-08-21)

Features

BREAKING CHANGES

  • agent: agent command has been renamed to repeater. It affected all its options and arguments.

    Before:

    docker run neuralegion/agent \
    -e 'AGENT_API_KEY=my-api-tey' \
    -e 'AGENT_ID=my-agent-id' \
    -e 'AGENT_HEADERS={ "X-Header": "my-header" }'
    -e 'AGENT_PROXY=socks5://my-proxy:1080/'

    After:

    docker run neuralegion/repeater \
      -e 'REPEATER_TOKEN=my-api-tey' \
      -e 'REPEATER_AGENT=my-agent-id' \
      -e 'REPEATER_HEADERS={ "X-Header": "my-header" }'
      -e 'REPEATER_PROXY=socks5://my-proxy:1080/'
  • archive:generate: command has been reworking to accept mockfile as positional argument. archive options has been renamed to output.

    Before:

    nexploit-cli archive:generate \
        --archive archive.har \
        --target url-tested-application \
        --mockfile .nexmock \
        --header "Authorization: Bearer my-jwt-authentication-token"

    After:

    nexploit-cli archive:generate \
        --output archive.har \
        --target url-tested-application \
        --header "Authorization: Bearer my-jwt-authentication-token" \
        .nexmock
  • api-key option has been removed. You should use token option instead.

    Before:

    nexploit-cli scan:run \
        --name scan-name \
        --archive received-archive-id \
        --api-key my-jwt-authentication-token

    After:

    nexploit-cli scan:run \
          --name scan-name \
          --archive received-archive-id \
          --token my-jwt-authentication-token

v5.2.2

20 Aug 17:57
a38df39
Compare
Choose a tag to compare

5.2.2 (2020-08-20)

Bug Fixes

v5.2.1

20 Aug 17:28
da2e959
Compare
Choose a tag to compare

5.2.1 (2020-08-20)

Bug Fixes

  • bus: prevent re-connecting on fatal errors (#66) (da2e959), closes #65

v5.2.0

20 Aug 09:54
759ae4c
Compare
Choose a tag to compare

5.2.0 (2020-08-20)

Features

  • bus: support both unicast and multicast (#64) (759ae4c), closes #63

v5.1.3

19 Aug 21:09
d266dba
Compare
Choose a tag to compare

5.1.3 (2020-08-19)

Bug Fixes

v5.1.2

19 Aug 20:41
982282e
Compare
Choose a tag to compare

5.1.2 (2020-08-19)

Bug Fixes

  • bus: better error handling on disconnect (#60) (982282e)

v5.1.1

19 Aug 18:26
Compare
Choose a tag to compare

5.1.1 (2020-08-19)

Docs