Skip to main content

Parasitic Computing Framework

Project description

https://raw.githubusercontent.com/BBVA/brainslug/master/assets/images/brainslug.png https://img.shields.io/pypi/v/brainslug.svg https://img.shields.io/circleci/project/github/BBVA/brainslug/master.svg https://readthedocs.org/projects/brainslug/badge/?version=latest License Apache

BrainSlug is a framework for parasitic computing. Allowing you to write programs which code and logic live in a computer but actions or side-effects are performed on another.

Example:

from brainslug import run, slug, body

@slug(remote=body.platform == 'linux')
def get_root_shell(remote):
    with remote.open('/etc/passwd', 'r') as passwd:
        for line in passwd:
            if line.startswith('root'):
                return line.split(':')[-1]

run(get_root_shell)

This code should be run in a computer we call slug. Running this code will open the port 8080 and stop execution until a body connects to it.

To connect a body, in a remote system run the following:

$ curl http://<slug-ip>:8080/boot/python | python

This will spawn the body to life and connect it with the slug.

The program continues running in the slug, but the file reads are performed in the body.

More examples on the example section.

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

brainslug-0.0.2.tar.gz (6.0 kB view hashes)

Uploaded Source

Supported by

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