Skip to content

Instantly share code, notes, and snippets.

View RVijay007's full-sized avatar
🎯
Focusing

RVijay007

🎯
Focusing
View GitHub Profile
@RVijay007
RVijay007 / How to bruteforce a TrueCrypt volume
Last active April 28, 2021 06:45 — forked from christiangenco/How to bruteforce a TrueCrypt volume
Brute force a TrueCrypt volume password with a known list on Mac OS X (works similarly on linux/ubuntu)
# First you need to know the name of your TrueCrypt disk. In this example, after running the `diskutil list` command,
# you can see that my 2TB TrueCrypt disk is mounted at /dev/disk2, and the encrypted partition is named "disk2s1"
# (see the IDENTIFIER column). That's the name I need to use in the ruby script.
$ diskutil list
/dev/disk0
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *251.0 GB disk0
1: EFI EFI 209.7 MB disk0s1
2: Apple_CoreStorage 250.1 GB disk0s2
@RVijay007
RVijay007 / 0_reuse_code.js
Created October 19, 2016 21:45
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console