diff --git a/applications/external/apple_ble_spam/apple_ble_spam.c b/applications/external/apple_ble_spam/apple_ble_spam.c index 73c80a247..cfdb5fe95 100644 --- a/applications/external/apple_ble_spam/apple_ble_spam.c +++ b/applications/external/apple_ble_spam/apple_ble_spam.c @@ -15,9 +15,11 @@ typedef struct { } Payload; // Hacked together by @Willy-JL +// Custom adv logic by @Willy-JL and @xMasterX +// Extensive testing and research on behavior and parameters by @Willy-JL and @ECTO-1A // Structures docs and Nearby Action IDs from https://github.com/furiousMAC/continuity/ // Proximity Pair IDs from https://github.com/ECTO-1A/AppleJuice/ -// Custom adv logic and Airtag ID from https://techryptic.github.io/2023/09/01/Annoying-Apple-Fans/ +// Airtag ID from https://techryptic.github.io/2023/09/01/Annoying-Apple-Fans/ static Payload payloads[] = { #if false diff --git a/applications/external/apple_ble_spam/application.fam b/applications/external/apple_ble_spam/application.fam index a76a181ee..55cd762fe 100644 --- a/applications/external/apple_ble_spam/application.fam +++ b/applications/external/apple_ble_spam/application.fam @@ -13,7 +13,7 @@ App( name="continuity", ), ], - fap_author="@Willy-JL & @techryptic", + fap_author="@Willy-JL", # Plus research from @ECTO-1A @xMasterX and @techryptic fap_version="1.0", fap_description="Spam Apple devices with annoying popups and notifications via BLE packets", ) diff --git a/applications/external/apple_ble_spam/lib/continuity/continuity.c b/applications/external/apple_ble_spam/lib/continuity/continuity.c index 99513f379..852fa8ccc 100644 --- a/applications/external/apple_ble_spam/lib/continuity/continuity.c +++ b/applications/external/apple_ble_spam/lib/continuity/continuity.c @@ -2,9 +2,11 @@ #include // Hacked together by @Willy-JL +// Custom adv logic by @Willy-JL and @xMasterX +// Extensive testing and research on behavior and parameters by @Willy-JL and @ECTO-1A // Structures docs and Nearby Action IDs from https://github.com/furiousMAC/continuity/ // Proximity Pair IDs from https://github.com/ECTO-1A/AppleJuice/ -// Custom adv logic and Airtag ID from https://techryptic.github.io/2023/09/01/Annoying-Apple-Fans/ +// Airtag ID from https://techryptic.github.io/2023/09/01/Annoying-Apple-Fans/ static const char* continuity_type_names[ContinuityTypeCount] = { [ContinuityTypeAirDrop] = "AirDrop", diff --git a/applications/external/apple_ble_spam/lib/continuity/continuity.h b/applications/external/apple_ble_spam/lib/continuity/continuity.h index e1789f16f..98c3df67d 100644 --- a/applications/external/apple_ble_spam/lib/continuity/continuity.h +++ b/applications/external/apple_ble_spam/lib/continuity/continuity.h @@ -4,9 +4,11 @@ #include // Hacked together by @Willy-JL +// Custom adv logic by @Willy-JL and @xMasterX +// Extensive testing and research on behavior and parameters by @Willy-JL and @ECTO-1A // Structures docs and Nearby Action IDs from https://github.com/furiousMAC/continuity/ // Proximity Pair IDs from https://github.com/ECTO-1A/AppleJuice/ -// Custom adv logic and Airtag ID from https://techryptic.github.io/2023/09/01/Annoying-Apple-Fans/ +// Airtag ID from https://techryptic.github.io/2023/09/01/Annoying-Apple-Fans/ typedef enum { ContinuityTypeAirDrop = 0x05,