mirror of
https://github.com/activecm/rita
synced 2026-06-08 13:02:45 +00:00
906f53b3e5
Co-Authored-By: Liza Tsibur <liza@activecountermeasures.com>
10 lines
243 B
Bash
Executable File
10 lines
243 B
Bash
Executable File
#!/bin/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 |