-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create mac osx directory and add rickroll
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# RickRoll prank for WHID Injector | ||
|
||
* Author: Phish | ||
* Version: Version 0.1 | ||
* Target: Mac-OSX | ||
|
||
# Description | ||
|
||
A simple rickroll script to prank the victim. Opens the terminal app and issues a command to open Rick Astley in a browser. | ||
|
||
# Notes | ||
|
||
## `nohup` | ||
|
||
Runs a command with hangup signals (SIGHUP) ignored, so that the command can continue running in the background after you log out. _Note:_ `nohup` does not automatically background the command, so you need to end the command with an `&` to run it in the background. | ||
|
||
## Keys Used | ||
|
||
The following keys presses are emulated: | ||
|
||
| Key | In English | What it does | | ||
| --- | ------------ | ---------- | | ||
| 131+32 | Command (⌘) + Spacebar | Opens spotlight | | ||
| 176 | Enter | Press enter | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Press:131+32 | ||
Print:terminal | ||
Press:176 | ||
CustomDelay:100 | ||
Print:osascript -e "set Volume 10" | ||
Press:176 | ||
Print:nohup open 'https://www.youtube.com/watch?v=dQw4w9WgXcQ' &>/dev/null & ; exit | ||
Press:176 |