Skip to content

Commit

Permalink
slave -> emissary renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
binarymist committed Jan 13, 2021
1 parent e3b0762 commit c63d2e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ npm install
Copy the config/config.example.json to config/config.local.json.
Use the config/config.js for documentation and further examples.

**`outcomes.dir`** Configure this value. This needs to be a directory of your choosing that both the orchestrator and app-scanner containers use. The `outcomes.dir` value should be the same as the testers `slave.report.dir` and `results.dir` value. The directory you choose and configure needs group `rwx` permissions applied to it becuase the orchestrator and tester containers share the same group, they also read, write and delete outcome files within this directory.
**`outcomes.dir`** Configure this value. This needs to be a directory of your choosing that both the orchestrator and app-scanner containers use. The `outcomes.dir` value should be the same as the testers `emissary.report.dir` and `results.dir` value. The directory you choose and configure needs group `rwx` permissions applied to it becuase the orchestrator and tester containers share the same group, they also read, write and delete outcome files within this directory.

**`testerFeedbackComms.medium`** Long Polling `lp` is supported in both `local` and `cloud` environments. Server Sent Events `sse` is only supported in the `local` environment due to AWS limitations. Both `lp` and `sse` are real-time. Both implementations have their pros and cons.

Expand Down
2 changes: 1 addition & 1 deletion config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const schema = {
},
outcomes: {
dir: {
doc: 'The directory that stores Tester results and Slave reports. This directory needs group rwx permissions.',
doc: 'The directory that stores Tester results and Emissary reports. This directory needs group rwx permissions.',
format: String,
default: '/var/log/purpleteam/outcomes/'
},
Expand Down
2 changes: 1 addition & 1 deletion src/api/orchestration/schemas/buildUserConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const schema = {
'version'
],
title: 'DataAttributes',
errorMessage: { properties: { loggedInIndicator: 'A loggedInIndicator is required by the App slave in order to know if a login was successful' } }
errorMessage: { properties: { loggedInIndicator: 'A loggedInIndicator is required by the App emissary in order to know if a login was successful' } }
},
SutAuthentication: {
type: 'object',
Expand Down

1 comment on commit c63d2e5

@binarymist
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.