cobaltstrike-beacon-rust
cobaltstrike-beacon-rust copied to clipboard
CobaltStrike beacon in rust
Results
2
cobaltstrike-beacon-rust issues
Sort by
recently updated
recently updated
newest added
看了一下代码,你的数据是直接放在body里面吗? ``` pub fn http_post( url: &str, cookie: &str, user_agent: &str, data: Vec, ) -> Result { let client = reqwest::blocking::Client::new(); client .post(url) .header(COOKIE, cookie) .header(USER_AGENT, user_agent) .body(data) .send() }...
bof加载会报错并直接退出呢师傅 