Added initial code.
This commit is contained in:
parent
5808d2f805
commit
1f7a9b0566
22 changed files with 309132 additions and 1 deletions
19
htb/challenges/web-looking-glass/index.php
Normal file
19
htb/challenges/web-looking-glass/index.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
function getUserIp()
|
||||
{
|
||||
return $_SERVER['REMOTE_ADDR'];
|
||||
}
|
||||
|
||||
function runTest($test, $ip_address)
|
||||
{
|
||||
if ($test === 'ping')
|
||||
{
|
||||
system("ping -c4 ${ip_address}");
|
||||
}
|
||||
if ($test === 'traceroute')
|
||||
{
|
||||
system("traceroute ${ip_address}");
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue