├── .gitignore ├── README.md ├── patch.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .idea/ 3 | .vscode/ 4 | libcoldstart* 5 | *.so -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsarpaul/FBUnpinner/HEAD/README.md -------------------------------------------------------------------------------- /patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsarpaul/FBUnpinner/HEAD/patch.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyelftools 2 | --------------------------------------------------------------------------------