An open API service indexing awesome lists of open source software.

https://github.com/deadf00d/netshell

A small network utility tool to manage remote shell connections.
https://github.com/deadf00d/netshell

hacking netcat pentest shell

Last synced: 6 months ago
JSON representation

A small network utility tool to manage remote shell connections.

Awesome Lists containing this project

README

          

# NetSHELL

NetShell is a small network utility tool to manage remote shell connections from tools like netcat, or any tool which redirect shell `stdout` / `stdin` to tcp stream. It disable shell echoing, and redirect control keys to your remote shell. Allowing you to use `CTRL+C` in your shell, or fire up `ssh` or `less`. It use `python -c 'import pty; pty.spawn("/bin/bash")'` for shell spawn.

## Usage

Connect to a remote server (bind):
```
ns 127.0.0.1 1337
```
Setup a server for remote connections (reverse)
```
ns -l 1337
```

## How to build ?

```
cd src/
make
```

## How to install ?

```
cp ns /usr/bin/
ns
```