https://github.com/shelld3v/shellpy
Remote shell tool for both Windows and Unix
https://github.com/shelld3v/shellpy
Last synced: about 1 month ago
JSON representation
Remote shell tool for both Windows and Unix
- Host: GitHub
- URL: https://github.com/shelld3v/shellpy
- Owner: shelld3v
- Created: 2020-06-26T12:50:23.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-27T06:00:18.000Z (almost 5 years ago)
- Last Synced: 2025-03-14T23:04:57.467Z (about 2 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Shellpy
A computer networking utility for create shell from or connect shell to servers.
This is the best, simplest, smallest, easiest and friendliest tool that can support
enough basic features for remote shell. Athough the options still less and simple, but if
Github community likes this tool, I will grow this more with more features and cleaner
work.## Usage
Bind shell: `python[3] sp.py PORT`
Reverse shell: `python[3] sp.py HOST PORT`## UI
#### Bind:
```shell
shelld3v@sh1:~$ python sp.py 4242
Listening on 4242 ...
Connected from 127.0.0.1 to [0.0.0.0] 4242
```
```shell
shelld3v@sh2:~$ nc 127.0.1 4242
sh: limited access in this shell
sh-1.0$ whoami
shelld3v
sh-1.0$ ls
crypto.sh
dirsearch
exploit.py
exploit.sh
flunym0us
frag.c
frag.sh
gitlab
go
go1.12.9.linux-amd64.tar.gz
HTTP
nginxrce.py
oracle2.py
oracle.py
phprce.py
richfaces-elinjection.py
wordpress9978.py
sh-1.0$ uname -a
Linux sh1 4.4.0-17763-Microsoft #1217-Microsoft Mon May 05 16:09:00 PST 2020 x86_64 GNU/Linux
sh-1.0$ w
20:09:33 up 3:32, 0 users, load average: 0.52, 0.58, 0.59
USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT
sh-1.0$ exit
exit
```
#### Reverse:
```shell
shelld3v@sh1:~$ python sp.py 127.0.1 4242
Connected from 0.0.0.0 to [127.0.0.1] 4242
```
```shell
shelld3v@sh2:~$ nc -lvp 4242
listening on [any] 4242 ...
connect to [127.0.0.1] from sh1 [127.0.0.1] 32634
sh: limited access in this shell
sh-1.0$ whoami
shelld3v
sh-1.0$ ls
crypto.sh
dirsearch
exploit.py
exploit.sh
flunym0us
frag.c
frag.sh
gitlab
go
go1.12.9.linux-amd64.tar.gz
HTTP
nginxrce.py
oracle2.py
oracle.py
phprce.py
richfaces-elinjection.py
wordpress9978.py
sh-1.0$ uname -a
Linux sh1 4.4.0-17763-Microsoft #1217-Microsoft Mon May 05 16:09:00 PST 2020 x86_64 GNU/Linux
sh-1.0$ w
20:09:33 up 3:32, 0 users, load average: 0.52, 0.58, 0.59
USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT
sh-1.0$ exit
exit
```