File size: 1,782 Bytes
86614b9
8083ca2
86614b9
5ac84de
 
 
86614b9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8083ca2
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
from fastapi import FastAPI, WebSocket
from fastapi.responses import HTMLResponse
import subprocess

app = FastAPI()

# HTML template for the terminal interface
index_html = """
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Web Terminal</title>
    <style>
        /* Add CSS styles to customize the appearance of the terminal */
    </style>
</head>
<body>
    <div id="terminal"></div>
    <script>
        const terminal = document.getElementById("terminal");
        const ws = new WebSocket("ws://" + window.location.host + "/terminal");

        ws.onmessage = function(event) {
            terminal.innerText += event.data + "\\n";
        };

        function sendCommand() {
            const command = prompt("Enter command:");
            ws.send(command);
        }
    </script>
</body>
</html>
"""

# Store active websocket connections
connections = []

@app.websocket("/terminal")
async def terminal(websocket: WebSocket):
    await websocket.accept()
    connections.append(websocket)
    try:
        while True:
            data = await websocket.receive_text()
            # Execute the command and send the result back to the client
            result = await execute_command(data)
            await websocket.send_text(result)
    finally:
        connections.remove(websocket)

async def execute_command(command: str) -> str:
    try:
        # Execute the command using subprocess
        result = subprocess.check_output(command, shell=True, text=True)
    except subprocess.CalledProcessError as e:
        result = f"Error: {e.output}"
    return result

@app.get("/")
async def index():
    return HTMLResponse(content=index_html, status_code=200)