Skip to content

Commit

Permalink
Merge pull request #17 from brunoooost/patch-1
Browse files Browse the repository at this point in the history
Create Text_Someone_Message_With_iPhone by bst04
  • Loading branch information
aleff-github authored Oct 29, 2024
2 parents 4189bf6 + b90180f commit 25719bd
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 0 deletions.
56 changes: 56 additions & 0 deletions iOS/Execution/Text_Someone_Message_With_iPhone-by_bst04/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Send Message iOS - by bst04

<div align=center>

<img src="https://github.com/aleff-github/my-flipper-shits/blob/main/img/logo-repository-2_0.gif" width="600" /><br><img src="https://github.com/aleff-github/my-flipper-shits/blob/main/img/DISCLAIMER.png" width="600" />

</div>

## Description

This script, created by bst04, is designed to work on iOS systems. It opens the Messages app, navigates to a specific contact, and sends a predefined text message.

---

## Technical Explanation

1. **Initialization**:
- `DELAY 2000`: Waits for 2 seconds to ensure the system is ready.
- `GUI h`: Simulates pressing "Command" + "h" to hide the current application.
- `DELAY 150`: Waits for 0.15 seconds.
- `GUI SPACE`: Simulates pressing "Command" + "Space" to open Spotlight Search.
- `DELAY 150`: Waits for 0.15 seconds for Spotlight to open.
- `BACKSPACE`: Clears any existing text in the search bar.

2. **Open Messages App**:
- `DELAY 500`: Waits for 0.5 seconds.
- `STRING Messages`: Types "Messages" to search for the Messages app.
- `DELAY 250`: Waits for 0.25 seconds.
- `ENTER`: Opens the Messages app.

3. **Navigate to Contact**:
- `DELAY 1500`: Waits for 1.5 seconds to ensure the Messages app is fully opened.
- `GUI n`: Simulates pressing "Command" + "n" to start a new message.
- `DELAY 250`: Waits for 0.25 seconds.
- `STRING [persona]`: Types the name of the contact (replace `[persona]` with the actual name).
- `DELAY 500`: Waits for 0.5 seconds.
- `ENTER`: Selects the contact.
- `DELAY 250`: Waits for 0.25 seconds.
- `TAB`: Navigates to the message input field.
- `ENTER`: Confirms the selection.
- `DOWNARROW`: Moves to the message input field.

4. **Send Text Message**:
- `DELAY 500`: Waits for 0.5 seconds.
- `STRING [texto]`: Types the predefined message (replace `[texto]` with the actual text).
- `DELAY 500`: Waits for 0.5 seconds.
- `ENTER`: Sends the message.

---

## Usage

1. Copy the payload script to your DuckyScript-enabled device.
2. Ensure the device is connected to an iOS system.
3. Execute the payload to open the Messages app, navigate to a specific contact, and send the predefined text message.

Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
REM ==================================
REM iOS - devices
REM made by **bst04**
REM change [person] and [text]
REM ==================================

DELAY 1500
GUI h
DELAY 150
GUI SPACE
DELAY 150
BACKSPACE
DELAY 500
STRING Messages
DELAY 250
ENTER
DELAY 1500
GUI n
DELAY 250
STRING [person]
DELAY 500
ENTER
DELAY 250
TAB
ENTER
DOWNARROW
DELAY 500
STRING [text]
DELAY 500
ENTER
1 change: 1 addition & 0 deletions iOS/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
|![iOS](https://img.shields.io/badge/iOS-000000?style=for-the-badge&logo=ios&logoColor=white)|Prank|[Call Someone With An iPhone](https://github.com/aleff-github/my-flipper-shits/tree/main/iOS/Prank/Call_Someone_With_An_iPhone)|🟡|
|![iOS](https://img.shields.io/badge/iOS-000000?style=for-the-badge&logo=ios&logoColor=white)|Prank|[Edit A Reminder With An iPhone](https://github.com/aleff-github/my-flipper-shits/tree/main/iOS/Prank/Edit_A_Reminder_With_An_iPhone)|🟡|
|![iOS](https://img.shields.io/badge/iOS-000000?style=for-the-badge&logo=ios&logoColor=white)|Prank|[Delete A Reminder With An iPhone](https://github.com/aleff-github/my-flipper-shits/tree/main/iOS/Prank/Delete_A_Reminder_With_An_iPhone)|🟡|
|![iOS](https://img.shields.io/badge/iOS-000000?style=for-the-badge&logo=ios&logoColor=white)|Prank|[Text Someone Message With iPhone - By bst04](https://github.com/aleff-github/my-flipper-shits/tree/main/iOS/Execution/Text_Someone_Message_With_iPhone-by_bst04)|🟡|


## Credits
Expand Down

0 comments on commit 25719bd

Please sign in to comment.