mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
Add fully randomized names to blespam (#2207)
* Add fully randomized names to blespam * fix for all * fix warning
This commit is contained in:
parent
f13756d4c7
commit
2fdd531fe7
@ -327,6 +327,52 @@ void BLESpamView::createNameSpamPacket() {
|
|||||||
std::copy(res.begin(), res.end(), advertisementData);
|
std::copy(res.begin(), res.end(), advertisementData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char BLESpamView::randomNameChar() {
|
||||||
|
int randVal = rand() % 62; // 26 uppercase + 26 lowercase + 10 digits
|
||||||
|
if (randVal < 26) {
|
||||||
|
return 'A' + randVal; // Uppercase letters
|
||||||
|
} else if (randVal < 52) {
|
||||||
|
return 'a' + (randVal - 26); // Lowercase letters
|
||||||
|
} else {
|
||||||
|
return '0' + (randVal - 52); // Digits
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void BLESpamView::createNameRandomPacket() {
|
||||||
|
char name[] = " ";
|
||||||
|
|
||||||
|
uint8_t name_len = strlen(name);
|
||||||
|
for (uint8_t i = 0; i < name_len; ++i) {
|
||||||
|
name[i] = randomNameChar();
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t size = 12 + name_len;
|
||||||
|
uint8_t i = 0;
|
||||||
|
|
||||||
|
packet[i++] = 2; // Size
|
||||||
|
packet[i++] = 0x01; // AD Type (Flags)
|
||||||
|
packet[i++] = 0x06; // Flags
|
||||||
|
|
||||||
|
packet[i++] = name_len + 1; // Size
|
||||||
|
packet[i++] = 0x09; // AD Type (Complete Local Name)
|
||||||
|
memcpy(&packet[i], name, name_len); // Device Name
|
||||||
|
i += name_len;
|
||||||
|
|
||||||
|
packet[i++] = 3; // Size
|
||||||
|
packet[i++] = 0x02; // AD Type (Incomplete Service UUID List)
|
||||||
|
packet[i++] = 0x12; // Service UUID (Human Interface Device)
|
||||||
|
packet[i++] = 0x18; // ...
|
||||||
|
|
||||||
|
packet[i++] = 2; // Size
|
||||||
|
packet[i++] = 0x0A; // AD Type (Tx Power Level)
|
||||||
|
packet[i++] = 0x00; // 0dBm
|
||||||
|
|
||||||
|
// size, packet
|
||||||
|
std::string res = to_string_hex_array(packet, size);
|
||||||
|
memset(advertisementData, 0, sizeof(advertisementData));
|
||||||
|
std::copy(res.begin(), res.end(), advertisementData);
|
||||||
|
}
|
||||||
|
|
||||||
void BLESpamView::createIosPacket(bool crash = false) {
|
void BLESpamView::createIosPacket(bool crash = false) {
|
||||||
uint8_t ios_packet_sizes[18] = {0, 0, 0, 0, 0, 24, 0, 31, 0, 12, 0, 0, 20, 0, 12, 11, 11, 17};
|
uint8_t ios_packet_sizes[18] = {0, 0, 0, 0, 0, 24, 0, 31, 0, 12, 0, 0, 20, 0, 12, 11, 11, 17};
|
||||||
ContinuityType type;
|
ContinuityType type;
|
||||||
@ -550,6 +596,7 @@ void BLESpamView::createAnyPacket(bool safe) {
|
|||||||
ATK_WINDOWS,
|
ATK_WINDOWS,
|
||||||
ATK_SAMSUNG,
|
ATK_SAMSUNG,
|
||||||
ATK_NAMESPAM,
|
ATK_NAMESPAM,
|
||||||
|
ATK_NAMERANDOM,
|
||||||
ATK_IOS_CRASH};
|
ATK_IOS_CRASH};
|
||||||
ATK_TYPE attackType = type[rand() % (COUNT_OF(type) - (1 ? safe : 0))];
|
ATK_TYPE attackType = type[rand() % (COUNT_OF(type) - (1 ? safe : 0))];
|
||||||
createPacket(attackType);
|
createPacket(attackType);
|
||||||
@ -572,6 +619,9 @@ void BLESpamView::createPacket(ATK_TYPE attackType) {
|
|||||||
case ATK_NAMESPAM:
|
case ATK_NAMESPAM:
|
||||||
createNameSpamPacket();
|
createNameSpamPacket();
|
||||||
break;
|
break;
|
||||||
|
case ATK_NAMERANDOM:
|
||||||
|
createNameRandomPacket();
|
||||||
|
break;
|
||||||
case ATK_ALL_SAFE:
|
case ATK_ALL_SAFE:
|
||||||
createAnyPacket(true);
|
createAnyPacket(true);
|
||||||
break;
|
break;
|
||||||
|
@ -51,6 +51,7 @@ enum ATK_TYPE {
|
|||||||
ATK_WINDOWS,
|
ATK_WINDOWS,
|
||||||
ATK_SAMSUNG,
|
ATK_SAMSUNG,
|
||||||
ATK_NAMESPAM,
|
ATK_NAMESPAM,
|
||||||
|
ATK_NAMERANDOM,
|
||||||
ATK_ALL_SAFE,
|
ATK_ALL_SAFE,
|
||||||
ATK_ALL
|
ATK_ALL
|
||||||
};
|
};
|
||||||
@ -129,8 +130,9 @@ class BLESpamView : public View {
|
|||||||
{"Windows", 3},
|
{"Windows", 3},
|
||||||
{"Samsung", 4},
|
{"Samsung", 4},
|
||||||
{"NameSpam", 5},
|
{"NameSpam", 5},
|
||||||
{"All-Safe", 6},
|
{"NameRandom", 6},
|
||||||
{"All", 7}}};
|
{"All-Safe", 7},
|
||||||
|
{"All", 8}}};
|
||||||
|
|
||||||
bool is_running{false};
|
bool is_running{false};
|
||||||
|
|
||||||
@ -155,6 +157,7 @@ class BLESpamView : public View {
|
|||||||
void createSamsungPacket();
|
void createSamsungPacket();
|
||||||
void createWindowsPacket();
|
void createWindowsPacket();
|
||||||
void createNameSpamPacket();
|
void createNameSpamPacket();
|
||||||
|
void createNameRandomPacket();
|
||||||
void createAnyPacket(bool safe);
|
void createAnyPacket(bool safe);
|
||||||
void createPacket(ATK_TYPE attackType);
|
void createPacket(ATK_TYPE attackType);
|
||||||
void changePacket(bool forced);
|
void changePacket(bool forced);
|
||||||
@ -163,6 +166,7 @@ class BLESpamView : public View {
|
|||||||
uint64_t get_freq_by_channel_number(uint8_t channel_number);
|
uint64_t get_freq_by_channel_number(uint8_t channel_number);
|
||||||
void randomizeMac();
|
void randomizeMac();
|
||||||
void randomChn();
|
void randomChn();
|
||||||
|
char randomNameChar();
|
||||||
|
|
||||||
void furi_hal_random_fill_buf(uint8_t* buf, uint32_t len);
|
void furi_hal_random_fill_buf(uint8_t* buf, uint32_t len);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user