Skip to content

Commit 54c853b

Browse files
authored
Merge pull request #53 from hashtopolis/fix-healthcheck
Fix healthcheck
2 parents 79dcb2e + 66c3616 commit 54c853b

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v0.7.3-> v0.7.x
2+
3+
### bugfixes
4+
5+
* Fixed bug in healthcheck on windows #hashtopolis/server/1019
6+
17
## v0.7.2 -> v0.7.3
28

39
### Bugfixes

htpclient/hashcat_cracker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ def run_health_check(self, attack, hashlist_alias):
724724
args += " --restore-disable --potfile-disable --session=health "
725725
args += update_files(attack).replace(hashlist_alias, "'" + self.config.get_value('hashlists-path') + "/health_check.txt'")
726726
args += " -o '" + self.config.get_value('hashlists-path') + "/health_check.out'"
727-
full_cmd = f"'{self.callPath}'" + args
727+
full_cmd = f"{self.callPath}" + args
728728
if Initialize.get_os() == 1:
729729
full_cmd = full_cmd.replace("/", '\\')
730730
logging.debug(f"CALL: {''.join(full_cmd)}")

0 commit comments

Comments
 (0)