mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-28 03:00:29 -04:00
* fix(security): add authentication and input validation to API routes * moved utils * remove extraneous commetns * removed unused dep
108 lines
3.4 KiB
TypeScript
108 lines
3.4 KiB
TypeScript
import { randomUUID } from 'crypto'
|
|
import { createLogger } from '@sim/logger'
|
|
import { type NextRequest, NextResponse } from 'next/server'
|
|
import { z } from 'zod'
|
|
import { checkHybridAuth } from '@/lib/auth/hybrid'
|
|
import { createSSHConnection, escapeShellArg, executeSSHCommand } from '@/app/api/tools/ssh/utils'
|
|
|
|
const logger = createLogger('SSHExecuteScriptAPI')
|
|
|
|
const ExecuteScriptSchema = z.object({
|
|
host: z.string().min(1, 'Host is required'),
|
|
port: z.coerce.number().int().positive().default(22),
|
|
username: z.string().min(1, 'Username is required'),
|
|
password: z.string().nullish(),
|
|
privateKey: z.string().nullish(),
|
|
passphrase: z.string().nullish(),
|
|
script: z.string().min(1, 'Script content is required'),
|
|
interpreter: z.string().default('/bin/bash'),
|
|
workingDirectory: z.string().nullish(),
|
|
})
|
|
|
|
export async function POST(request: NextRequest) {
|
|
const requestId = randomUUID().slice(0, 8)
|
|
|
|
try {
|
|
const auth = await checkHybridAuth(request)
|
|
if (!auth.success || !auth.userId) {
|
|
logger.warn(`[${requestId}] Unauthorized SSH execute script attempt`)
|
|
return NextResponse.json({ error: auth.error || 'Unauthorized' }, { status: 401 })
|
|
}
|
|
|
|
const body = await request.json()
|
|
const params = ExecuteScriptSchema.parse(body)
|
|
|
|
if (!params.password && !params.privateKey) {
|
|
return NextResponse.json(
|
|
{ error: 'Either password or privateKey must be provided' },
|
|
{ status: 400 }
|
|
)
|
|
}
|
|
|
|
logger.info(`[${requestId}] Executing SSH script on ${params.host}:${params.port}`)
|
|
|
|
const client = await createSSHConnection({
|
|
host: params.host,
|
|
port: params.port,
|
|
username: params.username,
|
|
password: params.password,
|
|
privateKey: params.privateKey,
|
|
passphrase: params.passphrase,
|
|
})
|
|
|
|
try {
|
|
const scriptPath = `/tmp/sim_script_${requestId}.sh`
|
|
const escapedScriptPath = escapeShellArg(scriptPath)
|
|
const escapedInterpreter = escapeShellArg(params.interpreter)
|
|
|
|
let command = `cat > '${escapedScriptPath}' << 'SIMEOF'
|
|
${params.script}
|
|
SIMEOF
|
|
chmod +x '${escapedScriptPath}'`
|
|
|
|
if (params.workingDirectory) {
|
|
const escapedWorkDir = escapeShellArg(params.workingDirectory)
|
|
command += `
|
|
cd '${escapedWorkDir}'`
|
|
}
|
|
|
|
command += `
|
|
'${escapedInterpreter}' '${escapedScriptPath}'
|
|
exit_code=$?
|
|
rm -f '${escapedScriptPath}'
|
|
exit $exit_code`
|
|
|
|
const result = await executeSSHCommand(client, command)
|
|
|
|
logger.info(`[${requestId}] Script executed successfully with exit code ${result.exitCode}`)
|
|
|
|
return NextResponse.json({
|
|
stdout: result.stdout,
|
|
stderr: result.stderr,
|
|
exitCode: result.exitCode,
|
|
success: result.exitCode === 0,
|
|
scriptPath: scriptPath,
|
|
message: `Script executed with exit code ${result.exitCode}`,
|
|
})
|
|
} finally {
|
|
client.end()
|
|
}
|
|
} catch (error) {
|
|
if (error instanceof z.ZodError) {
|
|
logger.warn(`[${requestId}] Invalid request data`, { errors: error.errors })
|
|
return NextResponse.json(
|
|
{ error: 'Invalid request data', details: error.errors },
|
|
{ status: 400 }
|
|
)
|
|
}
|
|
|
|
const errorMessage = error instanceof Error ? error.message : 'Unknown error occurred'
|
|
logger.error(`[${requestId}] SSH script execution failed:`, error)
|
|
|
|
return NextResponse.json(
|
|
{ error: `SSH script execution failed: ${errorMessage}` },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
}
|