Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 1.68 KB

T1009.md

File metadata and controls

33 lines (20 loc) · 1.68 KB

T1009 - Binary Padding

Adversaries can use binary padding to add junk data and change the on-disk representation of malware without affecting the functionality or behavior of the binary. This will often increase the size of the binary beyond what some security tools are capable of handling due to file size limitations.

Binary padding effectively changes the checksum of the file and can also be used to avoid hash-based blacklists and static anti-virus signatures.(Citation: ESET OceanLotus) The padding used is commonly generated by a function to create junk data and then appended to the end or applied to sections of malware.(Citation: Securelist Malware Tricks April 2017) Increasing the file size may decrease the effectiveness of certain tools and detection capabilities that are not designed or configured to scan large files. This may also reduce the likelihood of being collected for analysis. Public file scanning services, such as VirusTotal, limits the maximum size of an uploaded file to be analyzed.(Citation: VirusTotal FAQ)

Atomic Tests


Atomic Test #1 - Pad Binary to Change Hash - Linux/macOS dd

Uses dd to add a zero to the binary to change the hash

Supported Platforms: macOS, Linux

Inputs

Name Description Type Default Value
file_to_pad Path of binary to be padded Path /tmp/evil-binary

Run it with sh!

dd if=/dev/zero bs=1 count=1 >> #{file_to_pad}