One Hat Cyber Team
Your IP :
216.73.216.240
Server IP :
162.240.106.28
Server :
Linux server.ganesand.com 3.10.0-1160.80.1.el7.x86_64 #1 SMP Tue Nov 8 15:48:59 UTC 2022 x86_64
Server Software :
Apache
PHP Version :
7.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
thoa
/
www
/
admin
/
support
/
includes
/
View File Name :
alterStandard.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Manage Users</title> <link rel="stylesheet" type="text/css" media="all" href="../css/global.css" /> </head> <body> <div id="padded_box"> <?php if(!empty($_GET)) { include "base.php"; $get_info = mysql_query("SELECT * FROM users WHERE username = '".$_GET['edit']."' "); $info = mysql_fetch_array($get_info); ?> <form method="post" action="users.php"> <label for="name">Name</label><br /> <input type="text" name="name" id="name" class="input_field" size="40" value="<?php echo $info['name'];?>"><br /> <label for="password">Password ( leave blank if you wish to keep current password )</label><br /> <input type="password" name="password" id="password" class="input_field" size="40"><br /> <label for="email">Email Address</label><br /> <input type="text" name="email" id="email" class="input_field" size="40" value="<?php echo $info['email'];?>"><br /> <input type="hidden" name="username" id="username" class="input_field" size="40" value="<?php echo $info['username'];?>"><br /> <input type="submit" name="update_user" id="update_user" value="Update User" class="input_field submit"/> </form> <?php } ?> </div> </body> </html>