Installation

You can install LFIMap using one of the following streamlined methods:

Deb Package

download iconDownload and install the .deb package with these commands:

wget https://github.com/relunsec/LFIMap/releases/download/v1.0.0/lfimap_1.0.0_amd64.deb
sudo dpkg -i lfimap_1.0.0_amd64.deb
lfimap --help

From Source

source code iconClone the repository and install dependencies:

git clone https://gitlab.com/relunsec/lfimap.git
cd lfimap
pip3 install -r requirements.txt
cd lfimap
python3 cli.py

Using PIP

python iconInstall via Python package manager:

pip3 install lfimap-ng

Precompiled Binary (Linux Only)

tar file iconDownload, extract, and install the precompiled tarball:

wget https://gitlab.com/-/project/71368735/uploads/7f44612d870707c7660e809de209d465/lfimap_1.0.0.tar
mkdir -p lfimap/
cd lfimap
tar -xf ../lfimap_1.0.0.tar
sudo make install
lfimap --help

SourceForge.net Binary (Linux Only)

external link iconDownload the standalone binary and run:

wget "https://master.dl.sourceforge.net/project/lfimap/lfimap/lfimap" -O lfimap
chmod +x lfimap
./lfimap --help