multi_fuzzer 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. commit 2ecfcd857da54b7a08014d14d7b46eb235b72695
  2. Author: MX <10697207+xMasterX@users.noreply.github.com>
  3. Date: Thu Jun 13 01:08:02 2024 +0300
  4. limit TD to fix crash and bump version
  5. worker not resetting to idle when TD is 0.0
  6. diff --git a/.gitignore b/.gitignore
  7. index e2a15a10a..fd6c84ea7 100644
  8. --- a/.gitignore
  9. +++ b/.gitignore
  10. @@ -1,4 +1,5 @@
  11. dist/*
  12. .vscode
  13. .clang-format
  14. -.editorconfig
  15. \ No newline at end of file
  16. +.editorconfig
  17. +.DS_Store
  18. diff --git a/CHANGELOG.md b/CHANGELOG.md
  19. index 67ef71b64..9d4c8a752 100644
  20. --- a/CHANGELOG.md
  21. +++ b/CHANGELOG.md
  22. @@ -1,3 +1,5 @@
  23. +## v1.4
  24. +- Fix worker being not in LFRFIDWorkerIdle before next key (limit TD to 0.1)
  25. ## v1.3
  26. - New systems in RFID Fuzzer:
  27. - IoProxXSF
  28. diff --git a/application.fam b/application.fam
  29. index 4e56c92c3..6416775cb 100644
  30. --- a/application.fam
  31. +++ b/application.fam
  32. @@ -13,7 +13,7 @@ App(
  33. stack_size=2 * 1024,
  34. fap_author="gid9798 xMasterX",
  35. fap_weburl="https://github.com/DarkFlippers/Multi_Fuzzer",
  36. - fap_version="1.3",
  37. + fap_version="1.4",
  38. targets=["f7"],
  39. fap_description="Fuzzer for ibutton readers",
  40. fap_icon="icons/ibutt_10px.png",
  41. @@ -43,7 +43,7 @@ App(
  42. stack_size=2 * 1024,
  43. fap_author="gid9798 xMasterX",
  44. fap_weburl="https://github.com/DarkFlippers/Multi_Fuzzer",
  45. - fap_version="1.3",
  46. + fap_version="1.4",
  47. targets=["f7"],
  48. fap_description="Fuzzer for lfrfid readers",
  49. fap_icon="icons/rfid_10px.png",
  50. diff --git a/views/attack.c b/views/attack.c
  51. index 4748c3686..86d2c6d2b 100644
  52. --- a/views/attack.c
  53. +++ b/views/attack.c
  54. @@ -438,7 +438,7 @@ FuzzerViewAttack* fuzzer_view_attack_alloc() {
  55. FuzzerViewAttackModel * model,
  56. {
  57. model->time_delay = fuzzer_proto_get_def_idle_time();
  58. - model->time_delay_min = 0; // model->time_delay;
  59. + model->time_delay_min = 1; // model->time_delay;
  60. model->emu_time = fuzzer_proto_get_def_emu_time();