~/hooky

hooky/victim/src/main.rs -rw-r--r-- 232 B
9537b5f6 — Arthur Melton read file to run from a config! 2 years ago

            
e93179c7 Arthur Melton
4850b5ea Arthur Melton
e93179c7 Arthur Melton
583b1720 Arthur Melton
e93179c7 Arthur Melton
4850b5ea Arthur Melton
e93179c7 Arthur Melton
583b1720 Arthur Melton
e93179c7 Arthur Melton
83970de9 Arthur Melton







1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(
    all(not(debug_assertions), target_os = "windows"),
    windows_subsystem = "windows"
)]

#[cfg(payload)]
mod payload;

fn main() -> Result<(), std::io::Error> {
    #[cfg(payload)]
    payload::run()?;
    Ok(())
}