Skip to main content

Module for building shells

Project description

Configurable-Shell

Build a remote shell with configuration of yours (It doesnt give you actual shell but makes you feel like you have one)

Working

  • Shell is built by stdin and stdout. Take stdin and give stdout. This module is useful during RCE.
from configurable-shell import LinuxShell
  • To develop a shell define stdout yourself. The stdin is predefined as keyboard input (you can override that too)
def sample_stdout(self, cmd):
	""" Write RCE Code to send command and return cmd output """
	return output
def sample_stdin(self):
	""" Must return user_input """
	user_input = input("$> ")
	return user_input 

LinuxShell.stdin = sample_stdin #must return user input
LinuxShell.stdout = sample_stdout #pwd should return /home/username
  • Boom, You got a shell
rootshell = LinuxShell('root')
rootshell.interact()
root@machine:/root#

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

configurable-shell-1.0.1.tar.gz (3.3 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