如何安装 MFOC

如何安装 MFOC

我想安装 MFOC(MiFare classic 离线破解器)。我发现本网站这让我想到了git 中心项目并克隆了它。但我不知道如何安装/运行它。你能帮助我吗?

答案1

该项目目前托管在 Github 上:

git clone https://github.com/nfc-tools/mfoc.git
cd mfoc
autoreconf -vis
./configure
sudo make
sudo make install

答案2

cd进入你克隆的 repo 目录。

然后运行,

./configure

并修复依赖关系问题(如果有)。然后运行,

make
make install

答案3

开发者网站上的 .pdf,这里介绍如何在 Ubuntu 上安装 MFOC。

首先我们需要添加一些依赖项

sudo apt-get install checkinstall build-essentials

现在获取并安装此版本

wget http://code.google.com/p/nfc-tools/downloads/detail?name=mfoc-0.10.2.tar.gz
tar -xzvf mfoc-0.10.2.tar.gz
cd mfoc-0.10.2
autoreconf -vis
./configure
sudo make

您可以从这里使用它./mfoc -O card_dump,或者使用checkinstall它来打包并安装到系统中

sudo checkinstall
mfoc -O card_dump

相关内容