Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update references from Mongo 3.6 to 4.2 #661

Merged
merged 2 commits into from
Jul 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ docker-check:
.PHONY: integration-test
integration-test: docker-check
# docker run should only get executed once on initialization using the cache trick
integration-test: MONGO_EXE = $(shell docker run --rm -d mongo:3.6)
integration-test: MONGO_EXE = $(shell docker run --rm -d mongo:4.2)
integration-test: MONGO_ID = $(call cache,MONGO_EXE)
integration-test: MONGO_IP = $(shell docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(MONGO_ID))
integration-test:
Expand Down
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![RITA Logo](rita-logo.png)](https://www.activecountermeasures.com/free-tools/rita/)

If you get value out of RITA and would like to go a step further with hunting automation, futuristic visualizations, and data encrichment take a look at [AI-Hunter](https://www.activecountermeasures.com/).
If you get value out of RITA and would like to go a step further with hunting automation, futuristic visualizations, and data encrichment take a look at [AC-Hunter](https://www.activecountermeasures.com/).

Sponsored by [Active Countermeasures](https://activecountermeasures.com/).

Expand Down
4 changes: 2 additions & 2 deletions docs/Docker Usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ export LOGS=/path/to/your/zeek/logs
docker-compose run --rm rita import /logs your-dataset
```

Note: If you'd like to use a different version of RITA than the default `latest` you can do so using the `VERSION` variable.
Note: If you'd like to use a specific version of RITA than the default `latest` you can do so using the `VERSION` variable.

```
export VERSION=v3.0.6
export VERSION=v4.3.0
docker-compose run --rm rita --version
```

Expand Down
6 changes: 3 additions & 3 deletions docs/Manual Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ Installing Zeek is recommended. RITA needs Zeek logs as input so if you already

#### MongoDB

RITA requires Mongo for storing and processing data. The current recommended version is 3.6, but anything >= 3.2.0 and < 3.7.0 should work.
RITA requires Mongo for storing and processing data. The current supported version is 4.2, but anything >= 4.0.0 may work.

1. Follow the MongoDB installation guide at https://docs.mongodb.com/v3.6/installation/
* Alternatively, this is a direct link to the [download page](https://www.mongodb.com/try/download/community). Be sure to choose version 3.6
1. Follow the MongoDB installation guide at https://docs.mongodb.com/v4.2/installation/
* Alternatively, this is a direct link to the [download page](https://www.mongodb.com/try/download/community). Be sure to choose version 4.2
1. Ensure MongoDB is running before running RITA.

#### RITA
Expand Down
2 changes: 1 addition & 1 deletion docs/System Requirements.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# System Requirements

* Operating System - The preferred platform is 64-bit Ubuntu 16.04 LTS. The system should be patched and up to date using apt-get.
* Operating System - The preferred platform is 64-bit Ubuntu 18.04 LTS. The system should be patched and up to date using apt-get.
* The automated installer will also support Security Onion and CentOS 7. You can install on other operating systems using [docker](Docker%20Usage.md) or our [manual installation](Manual%20Installation.md).

If RITA is used on a separate system from Zeek our recommended specs are:
Expand Down