Improve some of the obfuscation

This commit is contained in:
Michael Mikovsky
2025-12-14 13:08:36 -07:00
parent a7cd65f7ae
commit 3691dc18f1
7 changed files with 111 additions and 87 deletions
+2 -13
View File
@@ -1,22 +1,11 @@
#![no_std]
#![no_main]
enum TestEnum {
Test = 135,
}
#[unsafe(no_mangle)]
pub fn test() -> i32 {
let a = TestEnum::Test;
a as i32
}
#[unsafe(no_mangle)]
fn main() {
let a = 5;
let a = 135;
unshell_obfuscate::junk_asm!(0.1);
unshell_obfuscate::junk_asm!(15.);
unsafe { libc::exit(a as i32) }
}