18 lines
580 B
Markdown
18 lines
580 B
Markdown
# netrun
|
|
|
|
Run scripts from the Internet in a way that is safer and more secure than
|
|
running `curl <url> | bash`
|
|
|
|
## Work in Progress
|
|
|
|
`netrun` is still experimental; don't rely on its working properly. In
|
|
particular, HTTP response codes are ignored (see #1).
|
|
|
|
## Try it
|
|
|
|
git clone https://git.kj7rrv.com/kj7rrv/netrun
|
|
cd netrun
|
|
pip3 install -r requirements.txt
|
|
python3 netrun.py https://git.kj7rrv.com/kj7rrv/netrun/raw/branch/master/demos/shell.sh
|
|
python3 netrun.py --interpreter=python3 https://git.kj7rrv.com/kj7rrv/netrun/raw/branch/master/demos/python.py
|