Skip to content

Commit

Permalink
Add a password and fix an undefined bug
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroSteiner committed Nov 29, 2017
1 parent 8f8bdd6 commit 8b4dca6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/termineter/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def import_module(self, module_path, reload_module=False):
module_instance = module.Module(self)
except Exception as err:
self.logger.error('failed to load module: ' + module_path, exc_info=True)
raise FrameworkRuntimeError(message)
raise FrameworkRuntimeError('failed to load module: ' + module_path)
return module_instance

def print_exception(self, error):
Expand Down
4 changes: 3 additions & 1 deletion lib/termineter/data/smeter_passwords.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
000102030405060708090a0b0c0d0f1011121314
000102030405060708090a0b0c0d0e0f10111213
000102030405060708090a0b0c0d0e0f10111213
0102030405060708090a0b0c0d0f101112131415
00112233445566778899aabbccddeeff00112233
112233445566778899aabbccddeeff0011223344
4d41535445525f30313200000000000000000000
5245414445525f30313200000000000000000000
435553544f4d45525f3000000000000000000000
aabbccddeeff0011223320202020202020202020
0000000000000000000000000000000000000000
0101010101010101010101010101010101010101
0202020202020202020202020202020202020202
Expand Down

0 comments on commit 8b4dca6

Please sign in to comment.