mirror of
https://github.com/activecm/rita
synced 2026-06-08 13:02:45 +00:00
2bd5475e76
* Disable permission flag checks on imported logs (#86) * Disable permission flag checks on imported logs * Display individual log errors even if there are no viable logs --------- Co-authored-by: Naomi Kramer <naomi@activecountermeasures.com> * Installer Import Logic Updates (#89) * rename sshprep to sshprep.sh * installer updates removed mass upgrades, cleaned up installer, removed references to unsupported OS's, improved error handling and usage messages * threat intel feed error handling * cleaned up installer scripts and improved helper functions * Update ansible-installer.sh --------- Co-authored-by: Naomi Kramer <naomi@activecountermeasures.com>
10 lines
251 B
Bash
Executable File
10 lines
251 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
apt-get update
|
|
apt-get install -y libfaketime
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
export LD_PRELOAD=/usr/lib/$(uname -m)-linux-gnu/faketime/libfaketime.so.1
|
|
export FAKETIME="-15d"
|
|
export FAKETIME_DONT_RESET=1
|
|
export DONT_FAKE_MONOTONIC=1 |