Results 1 to 7 of 7

Thread: TrueCrypt removed from Kali 2.0

  1. #1
    Join Date
    2015-Aug
    Posts
    2

    TrueCrypt removed from Kali 2.0

    Hey all. I noticed that Truecrypt 7.1a is no longer bundled with Kali 2.0. I checked the bug-tracker and it was still an open issue (0002432). Is there any reason for its removal?

  2. #2
    Join Date
    2015-Aug
    Location
    The Pits
    Posts
    87
    I feel your pain, tocktick, I ~love~ Truecrypt! Way back when I saved all the installers, and have added it to my Kali, but I haven't found any way to associate .tc files to it. Instead I have to do Applications - Accessories - Truecrypt and browse to a .tc within the program. It works.
    As an aside, I guess you can open a .tc using "cryptsetup" but I haven't tried that yet.

  3. #3
    Yes Veracrypt should be included

  4. #4
    Join Date
    2015-May
    Posts
    25
    What is the 'recommended' way to create (smallish [few gig]) encrypted volumes/images now that Truecrypt is no longer secure?

    I used to keep a lot of my sensitive directories in a Truecrypt volume/image (mount after boot) that I would symlink to. Made backing up & transporting my sensitive material on removable media a breeze...

    Any help on this would be most welcome.

    Cheers, aG
    Last edited by aGravity; 2015-08-24 at 12:32. Reason: PS. I think Truecrypt called the 'volumes'/'images' I'm talking about "encrypted file containers"... Thanks!

  5. #5
    Name Taken Guest
    You can use dm-crypt in conjunction with a loop device.

    Code:
    fallocate -l 1G container
    losetup -f container
    cryptsetup luksFormat /dev/loop0
    cryptsetup open /dev/loop0 anything
    mkfs.ext4 /dev/mapper/anything
    mount /dev/mapper/anything /mnt
    
    umount /mnt
    cryptsetup close anything
    losetup -d /dev/loop0

  6. #6
    Join Date
    2015-May
    Posts
    25
    Quote Originally Posted by Name Taken View Post
    You can use dm-crypt in conjunction with a loop device.

    Code:
    fallocate -l 1G container
    losetup -f container
    cryptsetup luksFormat /dev/loop0
    cryptsetup open /dev/loop0 anything
    mkfs.ext4 /dev/mapper/anything
    mount /dev/mapper/anything /mnt
    
    umount /mnt
    cryptsetup close anything
    losetup -d /dev/loop0
    Thank you Name Taken, I look forward to checking out dm-crypt as per your suggestion, aG.

  7. #7
    Join Date
    2014-Jun
    Location
    Arendonk, Belgium
    Posts
    10
    Quote Originally Posted by pamamolf View Post
    Yes Veracrypt should be included
    I love VeraCrypt... It should be included in Kali 2. I believe it is the best maintained version of TrueCrypt.
    You can download it form https://veracrypt.codeplex.com/releases/view/616110, unpack the installer and run the installer in Terminal.
    redN00ws @ Cleveridge - Ethical Hacking Lab

Similar Threads

  1. TrueCrypt with dual boot (Kali 2.0 & Windows 10)
    By buggie in forum General Archive
    Replies: 4
    Last Post: 2016-01-05, 03:01
  2. Kali Encrypted + Windows 7 TrueCrypt on 1 HD cant get two both
    By LuSat666 in forum Installing Archive
    Replies: 0
    Last Post: 2013-11-25, 19:40
  3. Kali Linux Truecrypt Dualboot
    By Weidong in forum Installing Archive
    Replies: 1
    Last Post: 2013-09-20, 10:02
  4. dualboot kali with a truecrypt windows
    By tom in forum Installing Archive
    Replies: 2
    Last Post: 2013-04-09, 09:28

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •