Skip to content

Commit

Permalink
add skimmer detector command
Browse files Browse the repository at this point in the history
  • Loading branch information
jaylikesbunda committed Dec 6, 2024
1 parent 2b18e22 commit 1667031
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Add back EAPOL capture command
- Added BLE Raw Capture command
- Added Stop BLE Raw Capture command
- Added BLE Skimmer Detection command
- Expanded Stop on Back to include all stop commands
- Added wrap-around scrolling in command menus
- Add Scan Local command to scan for devices on connected network
Expand Down
18 changes: 18 additions & 0 deletions src/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -514,6 +514,24 @@ static const MenuCommand wifi_commands[] = {

// BLE menu command definitions
static const MenuCommand ble_commands[] = {
{
.label = "Skimmer Detection",
.command = "capture -skimmer\n",
.capture_prefix = "skimmer_scan",
.file_ext = "pcap",
.folder = GHOST_ESP_APP_FOLDER_PCAPS,
.needs_input = false,
.input_text = NULL,
.needs_confirmation = false,
.confirm_header = NULL,
.confirm_text = NULL,
.details_header = "Skimmer Scanner",
.details_text = "Detects potential\n"
"card skimmers by\n"
"analyzing BLE\n"
"signatures and\n"
"known patterns.\n",
},
{
.label = "Find the Flippers",
.command = "blescan -f\n",
Expand Down

0 comments on commit 1667031

Please sign in to comment.