├── .gitignore ├── LICENSE ├── README ├── README.md ├── beefapi.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | build/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/BeEF-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/BeEF-API/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/BeEF-API/HEAD/README.md -------------------------------------------------------------------------------- /beefapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/BeEF-API/HEAD/beefapi.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/BeEF-API/HEAD/setup.py --------------------------------------------------------------------------------