-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adding update to spec * Update README.md * add description to relationships * removing ctibutler * add description to more rels #28 * Update ai_session.py * Update ai_session.py * Update ai_session.py * adding vulmatch and ctibutler spec * Update stix-mapping.md * reordering tests directory * fixing some lookups * Update test_cases.yaml * change remote lookup #36+#31 * replace txt2stix notes with DEBUG log #35 * add --report_id flag #33 --------- Co-authored-by: Fadl <[email protected]>
- Loading branch information
1 parent
2814534
commit 63ff37c
Showing
134 changed files
with
6,266 additions
and
6,846 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
INPUT_TOKEN_LIMIT=50 # [REQUIRED] keep in mind the token limit for selected model (which includes both input AND output tokens). For example, if your input limit is 50,000 characters, this could incur up to 25,000 tokens. Assuming your selected model allows for 64,000 tokens, you will therefore be able to obtain an output of over 39,000 tokens. | ||
INPUT_TOKEN_LIMIT=50 # [REQUIRED] for AI modes. keep in mind the token limit for selected model (which includes both input AND output tokens). For example, if your input limit is 50,000 characters, this could incur up to 25,000 tokens. Assuming your selected model allows for 64,000 tokens, you will therefore be able to obtain an output of over 39,000 tokens. | ||
OPENAI_API_KEY= # [REQUIRED IF USING AI MODES] get it from https://platform.openai.com/api-keys | ||
OPENAI_MODEL=gpt-4 # [REQUIRED IF USING AI MODES] choose an OpenAI model of your choice. Ensure the input/output token count meets requirements (and adjust INPUT_TOKEN_LIMIT accordingly). List of models here: https://platform.openai.com/docs/models | ||
ARANGODB_HOST_URL=https://database.ctibutler.com:8529 # [REQUIRED] user can also self host | ||
ARANGODB_USERNAME= # [REQUIRED] user must have write privileges | ||
ARANGODB_USERNAME= # [REQUIRED] user must have write privileges to the ARANGODB_DATABASE specified | ||
ARANGODB_PASSWORD= # [REQUIRED] password for specified username | ||
ARANGODB_DATABASE=cti_database # [REQUIRED] database where collections are held, if using CTI Butler is cti_database | ||
BIN_LIST_API_KEY= #[OPTIONAL] needed for extracting credit card information | ||
BIN_LIST_API_KEY= #[OPTIONAL] needed for extracting credit card information | ||
## CTIBUTLER FOR ATT&CK, CAPEC, AND CWE LOOKUPS | ||
CTIBUTLER_HOST= # [REQUIRED] e.g. http://localhost:8006/ | ||
CTIBUTLER_APIKEY= #[OPTIONAL] if using https://app.ctibutler.com | ||
## VULMATCH FOR CVE AD CPE LOOKUPS | ||
VULMATCH_HOST= # [REQUIRED] e.g. http://localhost:8005/ | ||
VULMATCH_APIKEY= #[OPTIONAL] if using https://app.vulmatch.com |
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.