What it does! This program tries to mount an encrypted file using a wordlist file and truecrypt. I have forgotten my password and have already built a custom wordlist generator that i think should be able to generate the password. It combines arrays, IE
first part could be, this this or this
second part could be, this this or this
and it goes one, taking the variables, then generates all possible combinations. I just need this to apply it. I thought this was gonna take 20 minutes to write :confused: I can't seem to figure out how it works, even after looking at examples online.
namespace ConsoleApplication9
{
class Program
{
static void Main(string[] args)
{
//System.IO.StreamReader file = new System.IO.StreamReader("list.txt");
// string line;
string encfile;
encfile = Console.ReadLine();
/*
while ((line = file.ReadLine()) != null)
{
System.Diagnostics.Process.Start("truecrypt.exe" +
"/q background /s /p " + line + " /e /m ro /m rm /v " + encfile);
}
*/
System.Diagnostics.Process.Start("CMD.exe","/C \"C:\\program files\\truecrypt\\truecrypt.exe\" /q background /s /p 111qqqaaa /e /m ro /m rm /v License.txt");
System.Diagnostics.Process.Start("CMD.exe", "msconfig");
// Console.WriteLine("\"C:\\program files\\truecrypt\\truecrypt.exe\" /q background /s /p 111qqqaaa /e /m ro /m rm /v License.txt");
Console.ReadLine();
}
}
}
Edited by serpant, 07 August 2009 - 05:21 AM.
forgot code tags


Sign In
Create Account


Back to top









