2023-12-06 08:35:23 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
|
|
|
|
* Copyright (C) 2017 Furrtek
|
|
|
|
*
|
|
|
|
* This file is part of PortaPack.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Code from https://github.com/Flipper-XFW/Xtreme-Apps/tree/04c3a60093e2c2378e79498b4505aa8072980a42/ble_spam/protocols
|
|
|
|
// Thanks for the work of the original creators!
|
|
|
|
// Saying thanks in the main view!
|
|
|
|
|
|
|
|
#ifndef __UI_BLESPAM_H__
|
|
|
|
#define __UI_BLESPAM_H__
|
|
|
|
|
2023-12-26 01:16:54 -05:00
|
|
|
#define BLESPMUSECONSOLE 1
|
|
|
|
|
2023-12-06 08:35:23 -05:00
|
|
|
#include "ui.hpp"
|
2023-12-12 10:55:50 -05:00
|
|
|
#include "ui_language.hpp"
|
2023-12-06 08:35:23 -05:00
|
|
|
#include "ui_navigation.hpp"
|
|
|
|
#include "ui_transmitter.hpp"
|
|
|
|
#include "ui_freq_field.hpp"
|
|
|
|
#include "ui_record_view.hpp"
|
|
|
|
#include "app_settings.hpp"
|
|
|
|
#include "radio_state.hpp"
|
|
|
|
#include "log_file.hpp"
|
|
|
|
#include "utility.hpp"
|
|
|
|
|
|
|
|
using namespace ui;
|
|
|
|
|
|
|
|
namespace ui::external_app::blespam {
|
|
|
|
|
|
|
|
enum ATK_TYPE {
|
|
|
|
ATK_ANDROID,
|
|
|
|
ATK_IOS,
|
|
|
|
ATK_IOS_CRASH,
|
|
|
|
ATK_WINDOWS,
|
2024-03-18 04:13:10 -04:00
|
|
|
ATK_SAMSUNG,
|
2024-03-18 16:45:45 -04:00
|
|
|
ATK_NAMESPAM,
|
2024-07-24 03:53:41 -04:00
|
|
|
ATK_NAMERANDOM,
|
2024-03-18 04:13:10 -04:00
|
|
|
ATK_ALL_SAFE,
|
|
|
|
ATK_ALL
|
2023-12-06 08:35:23 -05:00
|
|
|
};
|
|
|
|
enum PKT_TYPE {
|
|
|
|
PKT_TYPE_INVALID_TYPE,
|
|
|
|
PKT_TYPE_RAW,
|
|
|
|
PKT_TYPE_DISCOVERY,
|
|
|
|
PKT_TYPE_IBEACON,
|
|
|
|
PKT_TYPE_ADV_IND,
|
|
|
|
PKT_TYPE_ADV_DIRECT_IND,
|
|
|
|
PKT_TYPE_ADV_NONCONN_IND,
|
|
|
|
PKT_TYPE_ADV_SCAN_IND,
|
|
|
|
PKT_TYPE_SCAN_REQ,
|
|
|
|
PKT_TYPE_SCAN_RSP,
|
|
|
|
PKT_TYPE_CONNECT_REQ,
|
|
|
|
PKT_TYPE_LL_DATA,
|
|
|
|
PKT_TYPE_LL_CONNECTION_UPDATE_REQ,
|
|
|
|
PKT_TYPE_LL_CHANNEL_MAP_REQ,
|
|
|
|
PKT_TYPE_LL_TERMINATE_IND,
|
|
|
|
PKT_TYPE_LL_ENC_REQ,
|
|
|
|
PKT_TYPE_LL_ENC_RSP,
|
|
|
|
PKT_TYPE_LL_START_ENC_REQ,
|
|
|
|
PKT_TYPE_LL_START_ENC_RSP,
|
|
|
|
PKT_TYPE_LL_UNKNOWN_RSP,
|
|
|
|
PKT_TYPE_LL_FEATURE_REQ,
|
|
|
|
PKT_TYPE_LL_FEATURE_RSP,
|
|
|
|
PKT_TYPE_LL_PAUSE_ENC_REQ,
|
|
|
|
PKT_TYPE_LL_PAUSE_ENC_RSP,
|
|
|
|
PKT_TYPE_LL_VERSION_IND,
|
|
|
|
PKT_TYPE_LL_REJECT_IND,
|
|
|
|
PKT_TYPE_NUM_PKT_TYPE
|
|
|
|
};
|
|
|
|
|
|
|
|
class BLESpamView : public View {
|
|
|
|
public:
|
|
|
|
BLESpamView(NavigationView& nav);
|
|
|
|
~BLESpamView();
|
|
|
|
|
|
|
|
void focus() override;
|
|
|
|
|
|
|
|
std::string title() const override {
|
|
|
|
return "BLESpam";
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
NavigationView& nav_;
|
|
|
|
TxRadioState radio_state_{
|
|
|
|
2'402'000'000 /* frequency */,
|
|
|
|
4'000'000 /* bandwidth */,
|
|
|
|
4'000'000 /* sampling rate */
|
|
|
|
};
|
|
|
|
TxFrequencyField field_frequency{
|
|
|
|
{0 * 8, 0 * 16},
|
|
|
|
nav_};
|
|
|
|
TransmitterView2 tx_view{
|
|
|
|
{11 * 8, 0 * 16},
|
|
|
|
/*short_ui*/ true};
|
|
|
|
app_settings::SettingsManager settings_{
|
|
|
|
"tx_blespam", app_settings::Mode::TX};
|
|
|
|
|
|
|
|
Button button_startstop{
|
|
|
|
{0, 3 * 16, 96, 24},
|
2023-12-12 10:55:50 -05:00
|
|
|
LanguageHelper::currentMessages[LANG_START]};
|
2023-12-06 08:35:23 -05:00
|
|
|
Checkbox chk_randdev{{100, 16}, 10, "Rnd device", true};
|
|
|
|
|
2023-12-26 01:16:54 -05:00
|
|
|
#ifdef BLESPMUSECONSOLE
|
2023-12-06 08:35:23 -05:00
|
|
|
Console console{
|
|
|
|
{0, 70, 240, 220}};
|
2023-12-26 01:16:54 -05:00
|
|
|
#endif
|
2023-12-06 08:35:23 -05:00
|
|
|
OptionsField options_atkmode{
|
|
|
|
{0 * 8, 2 * 8},
|
|
|
|
10,
|
|
|
|
{{"Android", 0},
|
|
|
|
{"iOs", 1},
|
|
|
|
{"iOs crash", 2},
|
|
|
|
{"Windows", 3},
|
2024-03-18 04:13:10 -04:00
|
|
|
{"Samsung", 4},
|
2024-03-18 16:45:45 -04:00
|
|
|
{"NameSpam", 5},
|
2024-07-24 03:53:41 -04:00
|
|
|
{"NameRandom", 6},
|
|
|
|
{"All-Safe", 7},
|
|
|
|
{"All", 8}}};
|
2023-12-06 08:35:23 -05:00
|
|
|
|
|
|
|
bool is_running{false};
|
|
|
|
|
|
|
|
uint8_t counter = 0; // for packet change
|
|
|
|
uint8_t displayCounter = 0; // for packet display
|
|
|
|
|
|
|
|
ATK_TYPE attackType = ATK_ANDROID;
|
|
|
|
|
|
|
|
bool randomMac{true};
|
|
|
|
bool randomDev{true};
|
|
|
|
|
|
|
|
uint8_t channel_number = 37;
|
2023-12-26 01:16:54 -05:00
|
|
|
char mac[13] = "010203040407";
|
2023-12-06 08:35:23 -05:00
|
|
|
char advertisementData[63] = {"03032CFE06162CFED5A59E020AB4\0"};
|
|
|
|
PKT_TYPE pduType = {PKT_TYPE_DISCOVERY};
|
|
|
|
|
|
|
|
void start();
|
|
|
|
void stop();
|
|
|
|
void reset();
|
|
|
|
void createFastPairPacket();
|
|
|
|
void createIosPacket(bool crash);
|
|
|
|
void createSamsungPacket();
|
|
|
|
void createWindowsPacket();
|
2024-03-18 16:45:45 -04:00
|
|
|
void createNameSpamPacket();
|
2024-07-24 03:53:41 -04:00
|
|
|
void createNameRandomPacket();
|
2024-03-18 04:13:10 -04:00
|
|
|
void createAnyPacket(bool safe);
|
|
|
|
void createPacket(ATK_TYPE attackType);
|
2023-12-06 08:35:23 -05:00
|
|
|
void changePacket(bool forced);
|
2023-12-09 03:24:02 -05:00
|
|
|
void on_tx_progress(const bool done);
|
|
|
|
|
2023-12-06 08:35:23 -05:00
|
|
|
uint64_t get_freq_by_channel_number(uint8_t channel_number);
|
|
|
|
void randomizeMac();
|
|
|
|
void randomChn();
|
2024-07-24 03:53:41 -04:00
|
|
|
char randomNameChar();
|
2023-12-06 08:35:23 -05:00
|
|
|
|
|
|
|
void furi_hal_random_fill_buf(uint8_t* buf, uint32_t len);
|
|
|
|
|
2023-12-09 03:24:02 -05:00
|
|
|
MessageHandlerRegistration message_handler_tx_progress{
|
|
|
|
Message::ID::TXProgress,
|
|
|
|
[this](const Message* const p) {
|
|
|
|
const auto message = *reinterpret_cast<const TXProgressMessage*>(p);
|
|
|
|
this->on_tx_progress(message.done);
|
2023-12-06 08:35:23 -05:00
|
|
|
}};
|
|
|
|
|
2023-12-26 01:16:54 -05:00
|
|
|
uint8_t packet[80];
|
|
|
|
|
2023-12-06 08:35:23 -05:00
|
|
|
// continuity
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
PayloadModeRandom,
|
|
|
|
PayloadModeValue,
|
|
|
|
PayloadModeBruteforce,
|
|
|
|
} PayloadMode;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
ContinuityTypeAirDrop = 0x05,
|
|
|
|
ContinuityTypeProximityPair = 0x07,
|
|
|
|
ContinuityTypeAirplayTarget = 0x09,
|
|
|
|
ContinuityTypeHandoff = 0x0C,
|
|
|
|
ContinuityTypeTetheringSource = 0x0E,
|
|
|
|
ContinuityTypeNearbyAction = 0x0F,
|
|
|
|
ContinuityTypeNearbyInfo = 0x10,
|
|
|
|
|
|
|
|
ContinuityTypeCustomCrash,
|
|
|
|
ContinuityTypeCOUNT
|
|
|
|
} ContinuityType;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
ContinuityPpBruteforceModel,
|
|
|
|
ContinuityPpBruteforceColor,
|
|
|
|
} ContinuityPpBruteforce;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint8_t value;
|
|
|
|
// const char* name;
|
|
|
|
} ContinuityColor;
|
|
|
|
|
|
|
|
static const uint8_t pp_prefixes_count;
|
|
|
|
|
|
|
|
static const uint8_t na_actions_count;
|
|
|
|
static const uint8_t pp_models_count;
|
|
|
|
static const ContinuityColor colors_beats_studio_buds_[];
|
|
|
|
static const ContinuityColor colors_beats_fit_pro[];
|
|
|
|
static const ContinuityColor colors_beats_studio_pro[];
|
|
|
|
static const ContinuityColor colors_beats_studio_3[];
|
|
|
|
static const ContinuityColor colors_beats_x[];
|
|
|
|
static const ContinuityColor colors_beats_studio_buds[];
|
|
|
|
static const ContinuityColor colors_beats_solo_pro[];
|
|
|
|
static const ContinuityColor colors_powerbeats_pro[];
|
|
|
|
static const ContinuityColor colors_powerbeats_3[];
|
|
|
|
static const ContinuityColor colors_beats_solo_3[];
|
|
|
|
static const ContinuityColor colors_beats_flex[];
|
|
|
|
static const ContinuityColor colors_airpods_max[];
|
|
|
|
static const ContinuityColor colors_white[];
|
|
|
|
typedef struct {
|
|
|
|
uint16_t value;
|
|
|
|
// const char* name;
|
|
|
|
const ContinuityColor* colors;
|
|
|
|
const uint8_t colors_count;
|
|
|
|
} contiModels;
|
|
|
|
static const contiModels pp_models[];
|
|
|
|
typedef struct {
|
|
|
|
uint8_t value;
|
|
|
|
} contiU8;
|
|
|
|
static const contiU8 pp_prefixes[];
|
|
|
|
static const contiU8 na_actions[];
|
|
|
|
|
|
|
|
// fastpair:
|
|
|
|
|
|
|
|
static const uint16_t fastpairModels_count;
|
|
|
|
typedef struct {
|
|
|
|
uint32_t value;
|
2023-12-26 01:16:54 -05:00
|
|
|
// const char* name; // could be moved too
|
2023-12-06 08:35:23 -05:00
|
|
|
} fpUi32;
|
|
|
|
static const fpUi32 fastpairModels[];
|
|
|
|
|
|
|
|
// easysetup:
|
|
|
|
static const uint8_t watch_models_count;
|
|
|
|
typedef struct {
|
|
|
|
uint8_t value;
|
|
|
|
} easyU8;
|
|
|
|
typedef struct {
|
|
|
|
uint32_t value;
|
|
|
|
} easyU32;
|
|
|
|
typedef enum {
|
|
|
|
EasysetupTypeBuds = 0x01, // Skip 0 as it means unset
|
|
|
|
EasysetupTypeWatch,
|
|
|
|
EasysetupTypeCOUNT,
|
|
|
|
} EasysetupType;
|
|
|
|
static const easyU8 watch_models[];
|
|
|
|
static const uint8_t buds_models_count;
|
|
|
|
static const easyU32 buds_models[];
|
|
|
|
};
|
|
|
|
}; // namespace ui::external_app::blespam
|
|
|
|
|
|
|
|
#endif /*__UI_BLESPAM_H__*/
|