Update script

pull/353/head
Alessandro Greco 2024-08-30 11:04:59 +02:00
parent 76b023efa3
commit c11425f7fd
2 changed files with 69 additions and 28 deletions

View File

@ -1,15 +1,11 @@
# Change Github Profile Settings
This script can be used to prank your friends by editing their Github account or editing your own to speed up the editing process.
**Category**: Execution
## Description
This script can be used to prank your friends by editing their Github account or editing your own to speed up the editing process.
This script can be used to edit Github account settings speeding up the editing process.
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.
**Category**: Execution
## Getting Started
### Dependencies
@ -23,46 +19,46 @@ The script will run a shell and open the default browser in `https://github.com/
- Here you should define the new name
```DuckyScript
[17] DEFINE #NAME example
[19] DEFINE #NAME example
```
- Here you should define the new Biography
```DuckyScript
[18] DEFINE #BIO example
[20] DEFINE #BIO example
```
- Here you should define the custom pronouns
```DuckyScript
[19] DEFINE #CUSTOM-PRONOUNS example
[21] DEFINE #CUSTOM-PRONOUNS example
```
- Here you should define the new personal website url
```DuckyScript
[20] DEFINE #URL example
[22] 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
[23] DEFINE #SOCIAL-ACCOUNT-1 example
[24] DEFINE #SOCIAL-ACCOUNT-2 example
[25] DEFINE #SOCIAL-ACCOUNT-3 example
[26] DEFINE #SOCIAL-ACCOUNT-4 example
```
- Here you should define the new company
```DuckyScript
[25] DEFINE #COMPANY example
[27] DEFINE #COMPANY example
```
- Here you should define the new location
```DuckyScript
[26] DEFINE #LOCATION example
[28] DEFINE #LOCATION example
```
## Credits

View File

@ -1,13 +1,14 @@
REM ###################################################
REM # |
REM # Title : Change Github Profile Settings |
REM # Author : Aleff |
REM # Version : 1.0 |
REM # Category : Execution |
REM # Target : Windows 10/11 |
REM # |
REM ###################################################
REM_BLOCK
###################################################
# #
# Title : Change Github Profile Settings #
# Author : Aleff #
# Version : 1.0 #
# Category : Execution #
# Target : Windows 10/11 #
# #
###################################################
END_REM
REM Requirements:
REM - Internet connection
@ -26,7 +27,51 @@ DEFINE #SOCIAL-ACCOUNT-4 example
DEFINE #COMPANY example
DEFINE #LOCATION example
DELAY 1000
EXTENSION PASSIVE_WINDOWS_DETECT
REM VERSION 1.1
REM AUTHOR: Korben
REM_BLOCK DOCUMENTATION
Windows fully passive OS Detection and passive Detect Ready
Includes its own passive detect ready.
Does not require additional extensions.
USAGE:
Extension runs inline (here)
Place at beginning of payload (besides ATTACKMODE) to act as dynamic
boot delay
$_OS will be set to WINDOWS or NOT_WINDOWS
See end of payload for usage within payload
END_REM
REM CONFIGURATION:
DEFINE #MAX_WAIT 150
DEFINE #CHECK_INTERVAL 20
DEFINE #WINDOWS_HOST_REQUEST_COUNT 2
DEFINE #NOT_WINDOWS 7
$_OS = #NOT_WINDOWS
VAR $MAX_TRIES = #MAX_WAIT
WHILE(($_RECEIVED_HOST_LOCK_LED_REPLY == FALSE) && ($MAX_TRIES > 0))
DELAY #CHECK_INTERVAL
$MAX_TRIES = ($MAX_TRIES - 1)
END_WHILE
IF ($_HOST_CONFIGURATION_REQUEST_COUNT > #WINDOWS_HOST_REQUEST_COUNT) THEN
$_OS = WINDOWS
END_IF
REM_BLOCK EXAMPLE USAGE AFTER EXTENSION
IF ($_OS == WINDOWS) THEN
STRING HELLO WINDOWS!
ELSE
STRING HELLO WORLD!
END_IF
END_REM
END_EXTENSION
GUI r
DELAY 500
STRINGLN powershell