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.
- Host: GitHub
- URL: https://github.com/deadf00d/netshell
- Owner: DEADF00D
- Created: 2020-06-18T14:10:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-20T12:34:58.000Z (over 5 years ago)
- Last Synced: 2025-07-05T04:04:50.252Z (6 months ago)
- Topics: hacking, netcat, pentest, shell
- Language: C
- Homepage:
- Size: 13.7 KB
- Stars: 10
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
```