Initial version

This commit is contained in:
Samuel Sloniker 2022-04-07 19:00:29 -07:00
parent 0e5f23d1c5
commit 82bba3540c
3 changed files with 21 additions and 0 deletions

3
demo_script.sh Normal file
View File

@ -0,0 +1,3 @@
whoami
ls -l
touch testfile

18
netrun.py Normal file
View File

@ -0,0 +1,18 @@
import requests
import subprocess
import sys
url = sys.argv[1]
content = requests.get(url).content
subprocess.run(['less'], input=content)
while True:
response = input('Do you want to run this script? [y/n] ').lower().strip()[0]
if response == 'y':
subprocess.run(['bash'], input=content)
break
elif response == 'n':
print('Script not run.')
break

0
testfile Normal file
View File