павпвахпхвапх
Лучшая книга по программированию, по крайней мере, по мнению нейросети
; Block Windows Defender with FASM ; This code is for educational purposes only. ; It is illegal and unethical to use this code for malicious purposes. format PE GUI 4.0 entry start include 'win32ax.inc' section '.data' data readable writeable section '.code' code readable executable start: ; Get a handle to the current process invoke GetCurrentProcess mov [ProcessHandle], eax ; Open the current process with all access rights invoke OpenProcess, PROCESS_ALL_ACCESS, FALSE, [ProcessHandle] mov [ProcessHandle], eax ; Allocate memory in the target process invoke VirtualAllocEx, [ProcessHandle], NULL, SIZEOF szBuffer, MEM_COMMIT, PAGE_EXECUTE_READWRITE mov [RemoteBuffer], eax ; Write the DLL path to the allocated memory in the target process invoke WriteProcessMemory, [ProcessHandle], [RemoteBuffer], szBuffer, SIZEOF szBuffer, NULL ; Create a remote thread that calls LoadLibraryA in the target process invoke CreateRemoteThread, [ProcessHandle], NULL, NULL, [RemoteBuffer], NULL, NULL ; Clean up invoke VirtualFreeEx, [ProcessHandle], [RemoteBuffer], NULL, MEM_RELEASE invoke CloseHandle, [ProcessHandle] ; Exit the process invoke ExitProcess, 0 section '.idata' import data readable library kernel32, 'kernel32.dll', 'msvcrt.dll' import kernel32, \ GetCurrentProcess, 'GetCurrentProcess', \ OpenProcess, 'OpenProcess', \ VirtualAllocEx, 'VirtualAllocEx', \ WriteProcessMemory, 'WriteProcessMemory', \ CreateRemoteThread, 'CreateRemoteThread', \ VirtualFreeEx, 'VirtualFreeEx', \ CloseHandle, 'CloseHandle', \ ExitProcess, 'ExitProcess' section '.rdata' readable szBuffer db 'C:\Windows\System32\drivers\YourDriver.sys', 0 section '.bss' readable writeable ProcessHandle dd ? RemoteBuffer dd ?
Пожалуй, опережу s54820 (или Александра), и отвечу, сделав чат хуже из-за своего сообщения, как обычно... Тут написан полный бред. Загрузка .sys через LoadLibrary из userspace процесса? С каких пор драйвера могут исполняться в любом userspace процессе? Да ещё и через LoadLibrary? И да, конечно же это никак не обойдёт Windows Defender. 😁
Ну пока замечательный GPT этого не понимает. Но когда нибудь ...
Там круче. Оно само в себя инжектит строку (!) и начинает её выполнять.
в этом явно есть какой-то скрытый замысел
Он просто сказку тебе придумал с определённым синтаксисом, и всё. Ни о каком коде там речи не идёт.
Ты обманываешь! Он умеет писать.
А потом окажется что книгу написали с помощью гпт...
Такое же было, буквально
Обсуждают сегодня