File size: 8,842 Bytes
40f3dcd fea43a6 40f3dcd bb3c1b4 b15a70c bb3c1b4 b15a70c bb3c1b4 40f3dcd bb3c1b4 53024fd 40f3dcd bb3c1b4 40f3dcd bb3c1b4 40f3dcd bb3c1b4 40f3dcd bb3c1b4 b15a70c bb3c1b4 40f3dcd bb3c1b4 40f3dcd bb3c1b4 53024fd fea43a6 bb3c1b4 40f3dcd bb3c1b4 40f3dcd 53024fd b15a70c bb3c1b4 53024fd 7ef8775 fea43a6 bb3c1b4 b15a70c 7ef8775 bb3c1b4 fea43a6 53024fd bb3c1b4 a172f1d bb3c1b4 a172f1d bb3c1b4 40f3dcd bb3c1b4 92018fe bb3c1b4 b15a70c bb3c1b4 53024fd bb3c1b4 fea43a6 53024fd fea43a6 53024fd 40f3dcd fea43a6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI-Powered Hacker's Python Terminal</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: 'Courier New', monospace;
background-color: #000;
color: #0f0;
overflow: hidden;
}
.container {
display: flex;
height: 100%;
}
.terminal {
flex: 1;
padding: 20px;
overflow-y: auto;
box-sizing: border-box;
}
.file-explorer {
width: 200px;
background-color: #111;
padding: 10px;
overflow-y: auto;
display: none;
}
#output {
margin-bottom: 20px;
white-space: pre-wrap;
}
#input-line {
display: flex;
align-items: center;
}
#prompt {
margin-right: 10px;
}
#code-input {
flex: 1;
background-color: transparent;
border: none;
color: #0f0;
font-family: 'Courier New', monospace;
font-size: 16px;
outline: none;
}
.file-item {
cursor: pointer;
padding: 5px;
transition: background-color 0.3s;
}
.file-item:hover {
background-color: #222;
}
#file-editor {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80%;
height: 80%;
background-color: #111;
border: 1px solid #0f0;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}
#editor-textarea {
width: 100%;
height: calc(100% - 40px);
background-color: #000;
color: #0f0;
border: none;
resize: none;
font-family: 'Courier New', monospace;
font-size: 14px;
}
#save-button {
margin-top: 10px;
padding: 5px 10px;
background-color: #0f0;
color: #000;
border: none;
cursor: pointer;
}
.ai-executed {
color: #ff00ff;
}
@keyframes glitch {
0% {
text-shadow: 0.05em 0 0 #00fffc, -0.05em -0.025em 0 #fc00ff,
0.025em 0.05em 0 #fffc00;
}
14% {
text-shadow: 0.05em 0 0 #00fffc, -0.05em -0.025em 0 #fc00ff,
0.025em 0.05em 0 #fffc00;
}
15% {
text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.025em 0 #fc00ff,
-0.05em -0.05em 0 #fffc00;
}
49% {
text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.025em 0 #fc00ff,
-0.05em -0.05em 0 #fffc00;
}
50% {
text-shadow: 0.025em 0.05em 0 #00fffc, 0.05em 0 0 #fc00ff,
0 -0.05em 0 #fffc00;
}
99% {
text-shadow: 0.025em 0.05em 0 #00fffc, 0.05em 0 0 #fc00ff,
0 -0.05em 0 #fffc00;
}
100% {
text-shadow: -0.025em 0 0 #00fffc, -0.025em -0.025em 0 #fc00ff,
-0.025em -0.05em 0 #fffc00;
}
}
.glitch {
animation: glitch 1s linear infinite;
}
</style>
</head>
<body>
<div class="container">
<div class="terminal">
<div id="output"></div>
<div id="input-line">
<span id="prompt" class="glitch">></span>
<input type="text" id="code-input" autofocus>
</div>
</div>
<div class="file-explorer">
<h3 class="glitch">Files</h3>
<div id="file-list"></div>
</div>
</div>
<div id="file-editor">
<textarea id="editor-textarea"></textarea>
<button id="save-button">Save</button>
</div>
<script>
const outputDiv = document.getElementById('output');
const codeInput = document.getElementById('code-input');
const fileList = document.getElementById('file-list');
const fileExplorer = document.querySelector('.file-explorer');
const fileEditor = document.getElementById('file-editor');
const editorTextarea = document.getElementById('editor-textarea');
const saveButton = document.getElementById('save-button');
let currentEditingFile = '';
function addToOutput(text, isAiExecuted = false) {
if (isAiExecuted) {
outputDiv.innerHTML += `<span class="ai-executed">${text}</span>\n`;
} else {
outputDiv.innerHTML += text + '\n';
}
outputDiv.scrollTop = outputDiv.scrollHeight;
}
function executeCode() {
const command = codeInput.value;
addToOutput(`> ${command}`);
fetch("/execute", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ code: command }),
})
.then(response => response.json())
.then(data => {
if (data.result.startsWith("AI Executed:")) {
addToOutput(data.result, true);
} else {
addToOutput(data.result);
}
if (data.action === "edit") {
currentEditingFile = data.filename;
editorTextarea.value = '';
fileEditor.style.display = 'block';
} else {
updateFileList();
}
})
.catch(error => {
addToOutput(`Error: ${error}`);
});
codeInput.value = '';
}
function updateFileList() {
fetch("/list_files")
.then(response => response.json())
.then(data => {
fileList.innerHTML = '';
data.files.forEach(file => {
const fileItem = document.createElement('div');
fileItem.className = 'file-item';
fileItem.textContent = file;
fileItem.onclick = () => downloadFile(file);
fileList.appendChild(fileItem);
});
});
}
function downloadFile(filename) {
window.location.href = `/download/${filename}`;
}
function cleanup() {
fetch("/cleanup", { method: "POST" })
.then(response => response.json())
.then(data => {
addToOutput(data.result);
updateFileList();
});
}
saveButton.addEventListener('click', function() {
fetch("/save_file", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ filename: currentEditingFile, content: editorTextarea.value }),
})
.then(response => response.json())
.then(data => {
addToOutput(data.result);
fileEditor.style.display = 'none';
updateFileList();
});
});
codeInput.addEventListener('keydown', function(event) {
if (event.key === 'Enter') {
executeCode();
}
});
window.addEventListener('load', updateFileList);
window.addEventListener('beforeunload', cleanup);
// Initial message
addToOutput("Welcome to the AI-Powered Hacker's Python Terminal. Type your commands below.");
addToOutput("Available commands:");
addToOutput("- AI: <your request>: Use AI to understand and execute your command");
addToOutput("- show files: Display the file explorer");
addToOutput("- hide files: Hide the file explorer");
addToOutput("- new file <filename>: Create a new file");
addToOutput("- edit <filename>: Edit an existing file");
addToOutput("- cd <directory>: Change directory");
addToOutput("- !<shell command>: Execute a shell command");
addToOutput("- pip install <package>: Install a Python package");
addToOutput("- git <command>: Execute a git command");
addToOutput("- <python code>: Execute Python code");
</script>
</body>
</html>
|