Skip to content

Commit

Permalink
Version 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
glv2 committed Mar 1, 2024
1 parent 0a9ee21 commit 788d637
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 5 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2024-03-01 Guillaume LE VAILLANT <glv@posteo.net>
Version 1.4.1
Fix some possible deadlock and race condition.

2019-11-18 Guillaume LE VAILLANT <glv@posteo.net>
Version 1.4.0
Add support for LUKS2 volumes.
Expand Down
8 changes: 8 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,11 @@ SUBDIRS = tests
bin_PROGRAMS = bruteforce-luks
bruteforce_luks_SOURCES = src/bruteforce-luks.c src/version.h
dist_man_MANS = doc/bruteforce-luks.1
EXTRA_DIST = \
tests/crack-volume1.sh \
tests/crack-volume2.sh \
tests/crack-volume3.sh \
tests/dict.txt \
tests/volume1-header \
tests/volume2-header \
tests/volume3-header
4 changes: 4 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 1.4.1
2024-03-01
Fix some possible deadlock and race condition.

Version 1.4.0
2019-11-18
Add support for LUKS2 volumes.
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT(bruteforce-luks, 1.4.0)
AC_INIT(bruteforce-luks, 1.4.1)
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR(src/bruteforce-luks.c)

Expand Down
5 changes: 3 additions & 2 deletions doc/bruteforce-luks.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH BRUTEFORCE-LUKS "1" "November 2019" "BRUTEFORCE-LUKS 1.4.0" "Bruteforce LUKS encrypted volume"
.TH BRUTEFORCE-LUKS "1" "March 2024" "BRUTEFORCE-LUKS 1.4.1" "Bruteforce LUKS encrypted volume"
.SH NAME
bruteforce-luks - try to find the password of a LUKS volume
.SH SYNOPSIS
Expand Down Expand Up @@ -101,7 +101,8 @@ Instead of passing a block device to the program, you can copy the beginning
of the LUKS volume to a file and pass this file to the program:
.sp
.nf
sudo dd if=/dev/sda1 of=/tmp/luks-header bs=1M count=10
sudo cryptsetup luksHeaderBackup --header-backup-file /tmp/luks-header /dev/sda1
sudo chown $USER /tmp/luks-header
bruteforce-luks -t 4 -l 5 -m 5 /tmp/luks-header
.P
.fi
Expand Down
4 changes: 2 additions & 2 deletions src/version.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Bruteforce a LUKS volume.
Copyright 2014-2019 Guillaume LE VAILLANT
Copyright 2014-2024 Guillaume LE VAILLANT
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand All @@ -20,6 +20,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef VERSION_H
#define VERSION_H 1

#define VERSION_NUMBER "1.4.0"
#define VERSION_NUMBER "1.4.1"

#endif

0 comments on commit 788d637

Please sign in to comment.