mirror of
https://github.com/RfidResearchGroup/ChameleonUltra.git
synced 2026-05-12 11:22:59 -07:00
Merge pull request #352 from suut/fix_bad_missing_tools_warning
Fix bad missing tools warning
This commit is contained in:
@@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
|
||||
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
||||
|
||||
## [unreleased][unreleased]
|
||||
- Fix bad missing tools warning (@suut)
|
||||
- Fix for FAST_READ command for nfc - mf0 tags
|
||||
- Rewrite of the dynamic and static locks logic for NTAG213, NTAG215 and NTAG216; we shouldn't take into account the block lock bits
|
||||
- Fixed an issue where we wouldn't be able to change CFG0 and CFG1 for NTAG213, NTAG215 and NTG216 once a password was added even if the cfg bit was reset.
|
||||
|
||||
@@ -67,12 +67,11 @@ def load_dic_file(import_dic, keys):
|
||||
|
||||
|
||||
def check_tools():
|
||||
bin_dir = Path.cwd() / "bin"
|
||||
missing_tools = []
|
||||
|
||||
for tool in ("staticnested", "nested", "darkside", "mfkey32v2", "staticnested_1nt",
|
||||
"staticnested_2x1nt_rf08s", "staticnested_2x1nt_rf08s_1key"):
|
||||
if any(bin_dir.glob(f"{tool}*")):
|
||||
if any(default_cwd.glob(f"{tool}*")):
|
||||
continue
|
||||
else:
|
||||
missing_tools.append(tool)
|
||||
|
||||
Reference in New Issue
Block a user