mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-24 20:28:06 +02:00
[pitboss] phase 17: Track L.15 — Gin / Echo / Fiber / Chi adapters + Axum / Actix / Rocket / Warp adapters
This commit is contained in:
parent
5393fe22f2
commit
2b96c6005b
33 changed files with 3247 additions and 27 deletions
13
tests/dynamic_fixtures/rust_frameworks/rocket/benign.rs
Normal file
13
tests/dynamic_fixtures/rust_frameworks/rocket/benign.rs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
//! Phase 17 (Track L.15) — rocket benign control fixture.
|
||||
|
||||
use rocket::get;
|
||||
use std::process::Command;
|
||||
|
||||
#[get("/run?<cmd>")]
|
||||
pub fn run(cmd: String) -> &'static str {
|
||||
let allow = ["ls", "ps"];
|
||||
if allow.contains(&cmd.as_str()) {
|
||||
let _ = Command::new(&cmd).status();
|
||||
}
|
||||
"ok"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue