-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: rename agent to repeater (#69)
BREAKING CHANGES: * **agent**: `agent` command has been renamed to `repeater`. It affected all its options and arguments. Before: ```bash 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: ```bash 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: ```bash nexploit-cli archive:generate \ --archive archive.har \ --target url-tested-application \ --mockfile .nexmock \ --header "Authorization: Bearer my-jwt-authentication-token" ``` After: ```bash 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: ```bash nexploit-cli scan:run \ --name scan-name \ --archive received-archive-id \ --api-key my-jwt-authentication-token ``` After: ```bash nexploit-cli scan:run \ --name scan-name \ --archive received-archive-id \ --token my-jwt-authentication-token ``` closes #68
- Loading branch information
Showing
16 changed files
with
255 additions
and
245 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.