Skip to main content

AST based Obfuscator for Python

Project description

build status pypi python versions twitter twitter

bobskater

An AST based Python obfuscator that robustly mangles names and other obfuscations of Python code

Current limitations:

  • DOES NOT SUPPORT: Annotations, evals, templated strings, imports of the form import xxx.yyy
  • Very little configuration currently and instead takes a cautious approach in determining what identifiers to mangle. Globals, kwargs, class namespace identifiers, and others are not obfuscated but type of obfuscations should be use selected in the future.
  • It is only tested with Python v3.5 and might not work with other AST versions
  • Scoping for comprehensions are kind of hacky (and basically follows Python 2 comprehension scope leaking methodology)

Installation

pip install bobskater

Usage

bobskater provides a few mechanisms for direct use.

  • obfuscateString("") obfuscates a string of source code.
  • obfuscateFile('myfile.py') will obfuscate an entire file and overwrite the original

Both take keyword arguments for configuration:

  • removeDocstrings will remove docstrings by replacing them with pass statements (to handle even cases where a function has only a docstring). Defaults to True
  • obfuscateNames will obfuscate all names except globally scoped variables, kwargs, builtins, and identifiers in a class namespace. Defaults to True

There are no other obfuscations performed than the two mentioned above currently in bobskater

Example

from bobskater import obfuscateString

myFileContents = open('myfile.py', 'r').read()

#Will obfuscate myFileContents and return it into output. Names will not be mangled, only docstrings will be removed
output = obfuscateString(myFileContents, obfuscateNames=False)

Contributing

Testing:

pytest - Runs all the tests

Releasing:

Refer to the python docs on packaging for clarification. Make sure you've updated setup.py, and have installed twine, setuptools, and wheel python3 setup.py sdist bdist_wheel - Create a source distribution and a binary wheel distribution into dist/ twine upload dist/bobskater-x.x.x* - Upload all dist/ files to PyPI of a given version Make sure to tag the commit you released

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bobskater-0.2.1.tar.gz (9.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bobskater-0.2.1-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file bobskater-0.2.1.tar.gz.

File metadata

  • Download URL: bobskater-0.2.1.tar.gz
  • Upload date:
  • Size: 9.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.8

File hashes

Hashes for bobskater-0.2.1.tar.gz
Algorithm Hash digest
SHA256 9f9f9c1895e97e3aef05852006180d1cb85889a29728ddfcab236f813e4127af
MD5 1b86f47cc987b675f5d8e6888bd9552d
BLAKE2b-256 e93c871961352f5eac15b5da8ee40958c1d40c731d0a676a9af966004f8c306d

See more details on using hashes here.

File details

Details for the file bobskater-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: bobskater-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 11.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.8

File hashes

Hashes for bobskater-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c274adba22380cd91b7b920c8dd6b7ac9f48b1cbccf5191ba0d4705e76fa9ad5
MD5 1af036d3d17bc93a55221f217b9fcee1
BLAKE2b-256 d817228439747409fe93144b076a060d14c125d3198d0d00d73d5d5497856815

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page