Skip to content

Commit

Permalink
Merge pull request #7 from tclahr/v1.1.1
Browse files Browse the repository at this point in the history
V1.1.1
  • Loading branch information
tclahr authored Jun 16, 2020
2 parents cd5ccd6 + 99d13f4 commit 41a5557
Show file tree
Hide file tree
Showing 5 changed files with 146 additions and 136 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

## 1.1.1 (2020-06-16)

### Fixed
- Operating system error message being sent to terminal if an invalid directory is used as destination ([#5](https://github.com/tclahr/uac/issues/5)).
- hash_running_processes collector and hash_exec extension not working on AIX 6 ([#6](https://github.com/tclahr/uac/issues/6)).

## 1.1.0 (2020-05-27)

### Added
Expand Down Expand Up @@ -93,7 +99,7 @@ All notable changes to this project will be documented in this file.
## 1.0.1 (2020-03-26)

### Fixed
- running UAC and quickly terminating the process was making it to propose the user to delete the root folder "/" [#1](https://github.com/tclahr/uac/issues/1)
- running UAC and quickly terminating the process was making it to propose the user to delete the root folder "/" ([#1](https://github.com/tclahr/uac/issues/1)).

## 1.0.0 (2020-02-04)
- Initial Release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Run [chkrootkit](http://www.chkrootkit.org) tool (if available).
Note that chrootkit tool is not provided by UAC. You need to either have it available on the target system or download and compile it, and make its static binary file available through ```bin``` directory. Please refer to ```bin/README.txt``` for more information.

### fls
Run Sleuth Kit [fls](http://wiki.sleuthkit.org/index.php?title=Fls) tool (if available) against all mounted file systems.
Run Sleuth Kit [fls](http://wiki.sleuthkit.org/index.php?title=Fls) tool (if available) against all mounted block devices.
Note that fls tool is not provided by UAC. You need to either have it available on the target system or download and compile it, and make its static binary file available through ```bin``` directory. Please refer to ```bin/README.txt``` for more information.

### hash_exec
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.1.1
5 changes: 5 additions & 0 deletions lib/init_vars.lib
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@ init_vars() {
eval echo "uac" | eval digest -a md5 > /dev/null 2> /dev/null
if [ $? -eq 0 ]; then
MD5SUM_TOOL="digest -v -a md5"
else
eval csum -h MD5 "$CWD/uac" > /dev/null 2> /dev/null
if [ $? -eq 0 ]; then
MD5SUM_TOOL="csum -h MD5"
fi
fi
fi

Expand Down
Loading

0 comments on commit 41a5557

Please sign in to comment.