├── .gitignore ├── README.md ├── pybeacon ├── __init__.py ├── metadata.py └── tasks.py ├── register.py ├── requirements.txt ├── stager-decode.py └── tasktool.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/pybeacon/HEAD/README.md -------------------------------------------------------------------------------- /pybeacon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pybeacon/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/pybeacon/HEAD/pybeacon/metadata.py -------------------------------------------------------------------------------- /pybeacon/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/pybeacon/HEAD/pybeacon/tasks.py -------------------------------------------------------------------------------- /register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/pybeacon/HEAD/register.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | M2Crypto==0.35.2 2 | requests==2.22.0 -------------------------------------------------------------------------------- /stager-decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/pybeacon/HEAD/stager-decode.py -------------------------------------------------------------------------------- /tasktool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/pybeacon/HEAD/tasktool.py --------------------------------------------------------------------------------