LeDav1 / Unlock_bit

1 stars 0 forks source link

VM Setup (Windows 10) #1

Open LeDav1 opened 7 months ago

LeDav1 commented 7 months ago
mateopc commented 6 months ago

Set up of a virtual machine which runs a Windows 10 OS with Forensics tools such as DumpIt or Volatility

mateopc commented 6 months ago

Hibernation mode isn’t available on virtual machine nor on Sandbox...

Currently considering whether to go ahead with the project and use other ways of dumping memory (snapshot, vm sleep mode, ...).⚠However, these techniques may not be as reliable as dumping the hibernation file. Another solution is to try out our tests on a real machine rather than a VM.

mateopc commented 5 months ago

First rust code to try to recover the string into the dump memory from the snapshot :

// rustc main.rs -o /outputs/prog fn main() { let i: &str = "unlockbitrecover"; loop{ } }