0.0.28 • Published 12 years ago

jailkeeper v0.0.28

Weekly downloads
2
License
-
Repository
github
Last release
12 years ago

JailKeeper

JailKeeper was created for my needs on SpanDeX.io. SpanDeX and similar cloud services must run otherwise-unsecured shell scripts (in our case, LaTeX code which is turing-complete and can access the filesystem). Obviously this has huge security implications. Chroot jails make me a little uneasy and seem quite difficult to manage, and easy to break out of (though I'm open to decent, lightweight alternatives). SmartOS zones seem like a better choice but I don't understand them yet ;)

Thus, this is my first attempt at an alternative solution, which is to use truss or dtrace (Solaris/SmartOS or Mac OS X, respectively) to monitor all the input/output of a spawned child process. We can immediately see if a process attempts to open a file that it shouldn't, kill the process, and notify the user (and server admins) that something funny is going on.

Installation

You know the drill:

npm install jailkeeper

Usage

var spawn = require('child_process').spawn;
var childProcess = spawn('echo "hello world"', [], { cwd: './tmp/jail1' });
var jail = new JailKeeper(childProcess);

JailKeeper attaches itself to that child process and ensures that only files within the child's initial CWD are read or written to.

You can allow a jailed process more rights:

var jail = new JailKeeper(childProcess, { read: ['/usr/bin'], write: './tmp/jail2' });

This allows the jail to access binaries in /usr/bin and write to ./tmp/jail2.

JailKeeper is an EventEmitter so you can attach to this event:

jail.on('jailbreak', function (message) { // Super sad! console.log('User tried to jailbreak by attempting to "' + message.mode + '" from the file ' + message.file); }); jail.on('exit', function (code) { });

The JailKeeper itself dies upon jailbreak, or when the child process otherwise executes.

Contact

Please contact me with any security concerns or ideas to make this more awesome:

josh@spandex.io
0.0.28

12 years ago

0.0.27

12 years ago

0.0.26

12 years ago

0.0.25

12 years ago

0.0.24

12 years ago

0.0.23

12 years ago

0.0.22

12 years ago

0.0.21

12 years ago

0.0.20

12 years ago

0.0.19

12 years ago

0.0.18

12 years ago

0.0.17

12 years ago

0.0.16

12 years ago

0.0.15

12 years ago

0.0.14

12 years ago

0.0.13

12 years ago

0.0.12

12 years ago

0.0.10

12 years ago

0.0.9

12 years ago

0.0.8

12 years ago

0.0.7

12 years ago

0.0.6

12 years ago

0.0.5

12 years ago

0.0.4

12 years ago

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago