LeDav1 / Unlock_bit

1 stars 0 forks source link

VM Setup (Windows 10) #1

Open LeDav1 opened 1 year ago

LeDav1 commented 1 year ago
mateopc commented 11 months ago

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

mateopc commented 11 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 10 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{ } }