mirage icon indicating copy to clipboard operation
mirage copied to clipboard

Usage on modern OS

Open ikarus23 opened this issue 1 year ago • 2 comments

If you still want to use this tool on an up to date OS (e.g. Arch Linux) it will not work. I found what is needed to make it work. Maybe this helps someone:

  • You need Python 3.11 (lower might also work, Python 3.12 will not work)
  • The setup.py installs scapy without specifying a version. If you used python setup.py install in a virtual environment just
    • pip uninstall scapy
    • pip install scapy==2.5.0

That's it.

ikarus23 avatar Oct 22 '24 19:10 ikarus23

Documentation ca be found here: https://web.archive.org/web/20221001111937/https://homepages.laas.fr/rcayre/mirage-documentation/index.html

ikarus23 avatar Oct 25 '24 12:10 ikarus23

Using uv (https://github.com/astral-sh/uv):

  • uv venv --python 3.11
  • source .venv/bin/activate
  • uv pip install setuptools
  • uv run python setup.py install
  • uv pip install scapy==2.5.0
  • sudo uv run ./mirage_launcher

ikarus23 avatar Feb 10 '25 11:02 ikarus23