Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fuzzer App: Edit Manifests
  • Loading branch information
gid9798 committed Jun 6, 2023
commit caab7c8e1092ca7f090ec828ce9857b8197c1950
14 changes: 6 additions & 8 deletions applications/external/pacs_fuzzer/application.fam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
App(
appid="pacs_fuzzer",
name="Fuzzer Gui",
appid="pacs_fuzzer_ibtn",
name="iButton Fuzzer [B]",
apptype=FlipperAppType.EXTERNAL,
entry_point="fuzzer_start_ibtn",
requires=[
Expand All @@ -10,8 +10,7 @@ App(
"input",
"notification",
],
stack_size=2 * 1024,
order=15,
stack_size=1 * 1024,
fap_icon="icons/rfid_10px.png",
fap_category="Debug",
fap_private_libs=[
Expand All @@ -25,8 +24,8 @@ App(
)

App(
appid="pacs_rfid_fuzzer",
name="Fuzzer Gui rfid",
appid="pacs_fuzzer_rfid",
name="RFID Fuzzer [B]",
apptype=FlipperAppType.EXTERNAL,
entry_point="fuzzer_start_rfid",
requires=[
Expand All @@ -36,8 +35,7 @@ App(
"input",
"notification",
],
stack_size=2 * 1024,
order=15,
stack_size=1 * 1024,
fap_icon="icons/125_10px.png",
fap_category="Debug",
fap_private_libs=[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ bool fuzzer_scene_attack_on_event(void* context, SceneManagerEvent event) {
scene_manager_get_scene_state(app->scene_manager, FuzzerSceneAttack) ==
FuzzerAttackStateRunning) {
// Pause if attack running
fuzzer_worker_pause(app->worker); // XXX
fuzzer_worker_pause(app->worker);

fuzzer_scene_attack_set_state(app, FuzzerAttackStateIdle);
}
Expand Down
1 change: 1 addition & 0 deletions applications/external/pacs_fuzzer/todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
- [x] Description and buttons in `field_editor` view
- [ ] Protocol carousel in `main_menu`
- [x] prototype
- [ ] Add the ability to edit emulation time and downtime separately
- [x] UID
- [x] Simplify the storage and exchange of `uids.data` `uid.data_size` in `views`
- [x] `UID_MAX_SIZE`
Expand Down