mirror of https://github.com/hak5/omg-payloads.git
commit
99ebe530fa
|
@ -0,0 +1,62 @@
|
|||
# Edit A Reminder With An iPhone
|
||||
|
||||
This script can be used to change a reminder name really fast using an iPhone, so iOS system.
|
||||
|
||||
**Category**: Prank
|
||||
|
||||
## Description
|
||||
|
||||
This script can be used to change a reminder name really fast using an iPhone, so iOS system.
|
||||
|
||||
Open search bar, then open the REMINDER app (I used the italian name so 'Promemoria'), then delete what is (hidden) stored and write the number, then call it.
|
||||
|
||||
## Dependencies
|
||||
|
||||
* The phone must be unlocked
|
||||
|
||||
## Test
|
||||
|
||||
- iPhone 14
|
||||
- iOS 16.4.1
|
||||
|
||||
## Settings
|
||||
|
||||
- You need to change the name of the application according to the language you have on your phone.
|
||||
|
||||
```DuckyScript
|
||||
[20] DEFINE #REMINDER-APP-NAME
|
||||
```
|
||||
|
||||
- You should know the old name of the reminder that you want to change
|
||||
|
||||
```DuckyScript
|
||||
[22] DEFINE #OLD-REMINDER-NAME example
|
||||
```
|
||||
|
||||
- Here you should set the new reminder name
|
||||
|
||||
```DuckyScript
|
||||
[24] DEFIN #NEW-REMINDER-NAME example
|
||||
```
|
||||
|
||||
## Credits
|
||||
|
||||
<h2 align="center"> Aleff :octocat: </h2>
|
||||
<div align=center>
|
||||
<table>
|
||||
<tr>
|
||||
<td align="center" width="96">
|
||||
<a href="https://github.com/aleff-github">
|
||||
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/github.png?raw=true width="48" height="48" />
|
||||
</a>
|
||||
<br>Github
|
||||
</td>
|
||||
<td align="center" width="96">
|
||||
<a href="https://www.linkedin.com/in/alessandro-greco-aka-aleff/">
|
||||
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/linkedin.png?raw=true width="48" height="48" />
|
||||
</a>
|
||||
<br>Linkedin
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
|
@ -0,0 +1,40 @@
|
|||
REM ###################################################
|
||||
REM # |
|
||||
REM # Title : Edit A Reminder With An iPhone |
|
||||
REM # Author : Aleff |
|
||||
REM # Version : 1.0 |
|
||||
REM # Category : Prank |
|
||||
REM # Target : iPhone |
|
||||
REM # |
|
||||
REM ###################################################
|
||||
|
||||
|
||||
REM Requirements:
|
||||
REM - The phone must be unlocked
|
||||
|
||||
REM Tested on:
|
||||
REM - iPhone 14
|
||||
REM - iOS 16.4.1
|
||||
|
||||
REM You need to change the name of the application according to the language you have on your phone.
|
||||
DEFINE #REMINDER-APP-NAME example
|
||||
REM You should know the old name of the reminder that you want to change
|
||||
DEFINE #OLD-REMINDER-NAME example
|
||||
REM Here you should set the new reminder name
|
||||
DEFIN #NEW-REMINDER-NAME example
|
||||
|
||||
GUI SPACE
|
||||
DELAY 300
|
||||
STRINGLN #REMINDER-APP-NAME
|
||||
DELAY 2000
|
||||
GUI f
|
||||
DELAY 1000
|
||||
STRING #OLD-REMINDER-NAME
|
||||
DELAY 500
|
||||
TAB
|
||||
DELAY 500
|
||||
GUI a
|
||||
BACKSPACE
|
||||
STRINGLN #NEW-REMINDER-NAME
|
||||
DELAY 500
|
||||
GUI h
|
Loading…
Reference in New Issue