Track the GPS location of the user's smartphone or PC and capture a picture of the target, along with IP and device information.
$mkdir -p ~/docker/HackerTools/r4ven/{src,docker,data}
$cd ~/docker/HackerTools/r4ven
$cd ~/docker/HackerTools/r4ven/src
$git clone https://github.com/spyboy-productions/r4ven.git .
$cd ~/docker/HackerTools/r4ven
$nano Dockerfile
FROM python:3.11-slim
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
python3-tk tk tcl tk-dev tcl-dev libx11-6 libxext6 libxrender1 \
ca-certificates gcc build-essential wget git \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY src/ /app/
RUN python -m pip install --upgrade pip setuptools wheel \
&& if [ -f /app/requirements.txt ]; then pip install --no-cache-dir -r /app/requirements.txt; fi
RUN useradd -m appuser && chown -R appuser:appuser /app
USER appuser
ENV HOME /home/appuser
WORKDIR /app
CMD ["python3", "r4ven.py"]
$sudo docker build -t crabcrypt:local .
$xhost +local:docker
run:
↳
sudo docker run --rm -it --name r4ven_gui \
-e DISPLAY=$DISPLAY \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-v ~/docker/HackerTools/r4ven/data:/app/data \
-u $(id -u):$(id -g) \
r4ven:local






0 Comments