diff --git a/CHANGELOG b/CHANGELOG index 68f9a4fe..afc6562a 100755 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,14 @@ +LaZagne 1.5 (01/08/2016) +- Only Windows: + * New modules (thanks to righettod => https://github.com/righettod): + * Maven java build tool + * Apache Directory Studio + * "OpenSSH" application + +LaZagne 1.4 (21/07/2016) +- Only Windows: + * New module: Git for Windows (thanks to righettod => https://github.com/righettod) + LaZagne 1.3 (02/07/2016) - Only Windows See "User impersonnation" in README for more information diff --git a/Windows/src/LaZagne/config/constant.py b/Windows/src/LaZagne/config/constant.py index cbc1e7bb..1677ebdd 100755 --- a/Windows/src/LaZagne/config/constant.py +++ b/Windows/src/LaZagne/config/constant.py @@ -3,7 +3,7 @@ class constant(): folder_name = 'results' file_name_results = 'credentials' # the extention is added depending on the user output choice MAX_HELP_POSITION = 27 - CURRENT_VERSION = '1.3' + CURRENT_VERSION = '1.5' output = None file_logger = None diff --git a/Windows/src/LaZagne/laZagne.py b/Windows/src/LaZagne/laZagne.py index 9e23d12b..3625c7a5 100755 --- a/Windows/src/LaZagne/laZagne.py +++ b/Windows/src/LaZagne/laZagne.py @@ -513,7 +513,7 @@ def error(self, message): os.remove(dst) rev2self() except Exception as e: - print_debug('ERROR', 'Not enough privileges to get system rights: %s' % e) + print_debug('WARNING', 'Not enough privileges to get system rights: %s' % e) # Is not system and is not elevated # Realize a normal execution stopExecute = False diff --git a/Windows/src/LaZagne/softwares/git/gitforwindows.py b/Windows/src/LaZagne/softwares/git/gitforwindows.py index 40a70eeb..c0401ae1 100644 --- a/Windows/src/LaZagne/softwares/git/gitforwindows.py +++ b/Windows/src/LaZagne/softwares/git/gitforwindows.py @@ -65,5 +65,4 @@ def run(self): duplicates_track.append(pwd_id) # Print the results - if len(final_pwd_found) > 0: - print_output(title, final_pwd_found) + print_output(title, final_pwd_found)