This is our contribution to the Assembly 2025 1K intro competition. It placed 1st out of 3 entries. feedback is welcome on the Pouet page: https://www.pouet.net/prod.php?which=104610 You can download the executable from here: Bones-Of-Civilisation-by-Fulcrum.zip Warning: Windows Defender...
Hi, .NET assemblies often have some dependencies. You can use .NET reflection tolist the dependencies: $ASM=[Reflection.Assembly]::LoadFile("C:\temp\webdriver\lib\netstandard2.0\WebDriver.dll") $ASM.GetReferencedAssemblies() Version Name ------- ---- 2.0.0.0 netstandard 8.0.0.0 System.Text.Json...
This intro was created for the Assembly summer 2024 1K intro competition, where it placed 1st. Since this was the first time one of my kids came along, I was inspired by one of their favourite games :) The music was made by Miss Saigon on a very limited size and time budget. You can watch the...
Overview The second part of the second assignment of SLAE64 was to remove the nulls from the reverse-shell provided by Pentester Academy. Compiling & Testing Original - With NASM & LD The shellcode works great if it is compiled and ran as its own program. This means the shellcode logic is...
Overview For the seventh assignment of the SLAE64, I created an Add Cryptor and a companion Sub Decryptor. Any shellcode or encryption key can be placed in the python Add Cryptor. The Add Cryptor will output an assembly file decrypt.asm. This assembly file is shellcode that will decrypt the...
Overview For the fifth assignment of the SLAE64, I analyzed three payloads from msfvenom. This is the third payload, linux/x64/shell_bind_tcp. Bind Shell Anaylsis We will be analyzing the msfvenom non-staged bind shell payload. Generating the MSFVenom Payload Here we generate the payload on Kali...
This is a fun little tidbit. Assembly language is, obviously, not portable. If you use inline assembly code in a C program, you won't expect it to run on multiple processors without special handling for each one. Well, there's an exception to that. First, the trivial exception:...