modified: frida_server/src/server.rs

This commit is contained in:
Michael Wain 2025-02-11 05:28:17 +03:00
parent 9474cb8652
commit 218bcf775b

View File

@ -238,7 +238,7 @@ pub async fn server_mode(server_config: ServerConfiguration, s_interface: Option
let nonce = Nonce::clone_from_slice(&packet.nonce[..]);
match aes.decrypt(&nonce, &packet.data[..]) {
Ok(decrypted) => {
info!("Start of packet: {:#?} from {}", decrypted[..3].to_vec(), addr);
info!("Start of packet: {:#?} from {}", decrypted[..12].to_vec(), addr);
let _ = send2tun.send(decrypted);
},
Err(error) => error!("Decryption error! {:?}", error)