-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Rust: Add tests for web frameworks as taint sources #19466
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
310c02f
e56519d
49ff967
19f86fd
08fcf61
bf8cdff
402a84f
7c98fa8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,199 @@ | ||
#![allow(deprecated)] | ||
geoffw0 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
fn sink<T>(_: T) { } | ||
|
||
// --- tests --- | ||
|
||
mod poem_test { | ||
use poem::{get, handler, web::Path, web::Query, Route, Server, listener::TcpListener}; | ||
use serde::Deserialize; | ||
use crate::web_frameworks::sink; | ||
geoffw0 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
#[handler] | ||
fn my_poem_handler_1(Path(a): Path<String>) -> String { // $ Alert[rust/summary/taint-sources] | ||
sink(a.as_str()); // $ MISSING: hasTaintFlow | ||
sink(a.as_bytes()); // $ MISSING: hasTaintFlow | ||
sink(a); // $ MISSING: hasTaintFlow | ||
|
||
"".to_string() | ||
} | ||
|
||
#[handler] | ||
fn my_poem_handler_2(Path((a, b)): Path<(String, String)>) -> String { // $ Alert[rust/summary/taint-sources] | ||
sink(a); // $ MISSING: hasTaintFlow | ||
sink(b); // $ MISSING: hasTaintFlow | ||
|
||
"".to_string() | ||
} | ||
|
||
#[handler] | ||
fn my_poem_handler_3(path: Path<(String, String)>) -> String { // $ MISSING: Alert[rust/summary/taint-sources] | ||
sink(&path.0); // $ MISSING: hasTaintFlow | ||
sink(&path.1); // $ MISSING: hasTaintFlow | ||
|
||
"".to_string() | ||
} | ||
|
||
#[derive(Deserialize)] | ||
struct MyStruct { | ||
a: String, | ||
b: String, | ||
} | ||
|
||
#[handler] | ||
fn my_poem_handler_4(Path(MyStruct {a, b}): Path<MyStruct>) -> String { // $ Alert[rust/summary/taint-sources] | ||
sink(a); // $ MISSING: hasTaintFlow | ||
sink(b); // $ MISSING: hasTaintFlow | ||
|
||
"".to_string() | ||
} | ||
|
||
#[handler] | ||
fn my_poem_handler_5(Path(ms): Path<MyStruct>) -> String { // $ Alert[rust/summary/taint-sources] | ||
sink(ms.a); // $ MISSING: hasTaintFlow | ||
sink(ms.b); // $ MISSING: hasTaintFlow | ||
|
||
"".to_string() | ||
} | ||
|
||
#[handler] | ||
fn my_poem_handler_6( | ||
Query(a): Query<String>, // $ Alert[rust/summary/taint-sources] | ||
) -> String { | ||
sink(a); // $ MISSING: hasTaintFlow | ||
|
||
"".to_string() | ||
} | ||
|
||
async fn test_poem() { | ||
let app = Route::new() | ||
.at("/1/:a", get(my_poem_handler_1)) | ||
.at("/2/:a/:b", get(my_poem_handler_2)) | ||
.at("/3/:a/:b", get(my_poem_handler_3)) | ||
.at("/4/:a/:b", get(my_poem_handler_4)) | ||
.at("/4/:a/:b", get(my_poem_handler_5)) | ||
geoffw0 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
.at("/5/:a/", get(my_poem_handler_6)); | ||
|
||
_ = Server::new(TcpListener::bind("0.0.0.0:3000")).run(app).await.unwrap(); | ||
geoffw0 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
// ... | ||
} | ||
} | ||
|
||
mod actix_test { | ||
use actix_web::{get, web, App, HttpServer}; | ||
geoffw0 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
use crate::web_frameworks::sink; | ||
geoffw0 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
async fn my_actix_handler_1(path: web::Path<String>) -> String { // $ MISSING: Alert[rust/summary/taint-sources] | ||
let a = path.into_inner(); | ||
sink(a.as_str()); // $ MISSING: hasTaintFlow | ||
sink(a.as_bytes()); // $ MISSING: hasTaintFlow | ||
sink(a); // $ MISSING: hasTaintFlow | ||
|
||
"".to_string() | ||
} | ||
|
||
async fn my_actix_handler_2(path: web::Path<(String, String)>) -> String { // $ MISSING: Alert[rust/summary/taint-sources] | ||
let (a, b) = path.into_inner(); | ||
|
||
sink(a); // $ MISSING: hasTaintFlow | ||
sink(b); // $ MISSING: hasTaintFlow | ||
|
||
"".to_string() | ||
} | ||
|
||
async fn my_actix_handler_3(web::Query(a): web::Query<String>) -> String { // $ MISSING: Alert[rust/summary/taint-sources] | ||
sink(a); // $ MISSING: hasTaintFlow | ||
|
||
"".to_string() | ||
} | ||
|
||
#[get("/4/{a}")] | ||
async fn my_actix_handler_4(path: web::Path<String>) -> String { // $ MISSING: Alert[rust/summary/taint-sources] | ||
let a = path.into_inner(); | ||
sink(a); // $ MISSING: hasTaintFlow | ||
|
||
"".to_string() | ||
} | ||
|
||
async fn test_actix() { | ||
let app = App::new() | ||
.route("/1/{a}", web::get().to(my_actix_handler_1)) | ||
.route("/2/{a}/{b}", web::get().to(my_actix_handler_2)) | ||
.route("/3/{a}", web::get().to(my_actix_handler_3)) | ||
.service(my_actix_handler_4); | ||
|
||
// ... | ||
} | ||
} | ||
|
||
mod axum_test { | ||
use axum::Router; | ||
use axum::routing::get; | ||
use axum::extract::{Path, Query, Request, Json}; | ||
use std::collections::HashMap; | ||
use crate::web_frameworks::sink; | ||
|
||
async fn my_axum_handler_1(Path(a): Path<String>) -> &'static str { // $ MISSING: Alert[rust/summary/taint-sources] | ||
sink(a.as_str()); // $ MISSING: hasTaintFlow | ||
sink(a.as_bytes()); // $ MISSING: hasTaintFlow | ||
sink(a); // $ MISSING: hasTaintFlow | ||
|
||
"" | ||
} | ||
|
||
async fn my_axum_handler_2(Path((a, b)): Path<(String, String)>) -> &'static str { // $ MISSING: Alert[rust/summary/taint-sources] | ||
sink(a); // $ MISSING: hasTaintFlow | ||
sink(b); // $ MISSING: hasTaintFlow | ||
|
||
"" | ||
} | ||
|
||
async fn my_axum_handler_3(Query(params): Query<HashMap<String, String>>) -> &'static str { // $ MISSING: Alert[rust/summary/taint-sources] | ||
for (key, value) in params { | ||
sink(key); // $ MISSING: hasTaintFlow | ||
sink(value); // $ MISSING: hasTaintFlow | ||
} | ||
|
||
"" | ||
} | ||
|
||
async fn my_axum_handler_4(request: Request) -> &'static str { // $ MISSING: Alert[rust/summary/taint-sources] | ||
sink(request.body()); // $ MISSING: hasTaintFlow | ||
request.headers().get("header").unwrap(); // $ MISSING: hasTaintFlow | ||
sink(request.into_body()); // $ MISSING: hasTaintFlow | ||
|
||
"" | ||
} | ||
|
||
async fn my_axum_handler_5(Json(payload): Json<serde_json::Value>) -> &'static str { // $ MISSING: Alert[rust/summary/taint-sources] | ||
sink(payload.as_str()); // $ MISSING: hasTaintFlow | ||
sink(payload); // $ MISSING: hasTaintFlow | ||
|
||
"" | ||
} | ||
|
||
async fn my_axum_handler_6(body: String) -> &'static str { // $ MISSING: Alert[rust/summary/taint-sources] | ||
sink(body); // $ MISSING: hasTaintFlow | ||
|
||
"" | ||
} | ||
|
||
async fn my_axum_handler_7(body: String) -> &'static str { // $ MISSING: Alert[rust/summary/taint-sources] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For these Axum handlers that are just functions without any attributes I guess we'll have to find the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we have the choice to match either the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks. Though in this particular case it seems that we only have the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep, I think you might be right it'll be the trickiest one to model for that reason. Even if we don't succeed, the test serves to document that gap and potential for future improvement. |
||
sink(body); // $ MISSING: hasTaintFlow | ||
|
||
"" | ||
} | ||
|
||
async fn test_axum() { | ||
let app = Router::<()>::new() | ||
.route("/foo/{a}", get(my_axum_handler_1)) | ||
.route("/bar/{a}/{b}", get(my_axum_handler_2)) | ||
.route("/1/:a", get(my_axum_handler_3)) | ||
.route("/2/:a", get(my_axum_handler_4)) | ||
.route("/3/:a", get(my_axum_handler_5)) | ||
.route("/4/:a", get(my_axum_handler_6).get(my_axum_handler_7)); | ||
|
||
// ... | ||
} | ||
} |
Uh oh!
There was an error while loading. Please reload this page.