No description
  • Python 50.3%
  • HTML 49.7%
Find a file
2026-04-26 21:46:54 +05:00
card Added necessary URLs and Views 2026-04-26 17:29:00 +05:00
mifarekit Removed prefix, was useless 2026-04-26 21:46:54 +05:00
.gitignore Ignoring pycache 2026-04-26 17:29:15 +05:00
LICENSE git init -b main 2026-04-26 04:46:35 +05:00
manage.py django setup 2026-04-26 04:52:38 +05:00
README.md added docs 2026-04-26 17:51:09 +05:00
requirements.txt pip freeze > requirements.txt 2026-04-26 17:34:18 +05:00

MIFAREkit

Note

This has only been tested with FM11RF08 Chinese Card which is seemingly a clone of Mifare Classic

Why did I make this?

I was having trouble finding resources on smart cards and had access to a couple of chinese cards (FM11RF08) which is a Mifareclass clone. So I made a UI so that I can easily read and write to cards. The card I have does not have exposed chip (IC) but has NFC.

How To Start

Clone the repo

git clone https://github.com/raahimfareed/mifarekit.git
cd mifarekit

Create a virtual environment

python -m venv .venv

Activate the virtual environment

# On Windows Powershell
.\.venv\Scripts\Activate.ps1

# On POSIX
source ./.venv/bin/activate

Install dependencies

pip install -r requirements.txt

Run the dev server

# This starts the server @ localhost:8000
python manage.py runserver