Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Read and write binary data using Pandas.
Map the data in the binary file to variables, single data structures or repeating data structures. Once mapped, the binary file can be viewed and edited using Pandas DataFrames.
binda can be installed using pip or conda.
pip install binda
or
conda install binda
The documentation for binda is available on GitHub Docs here: https://jamiecash.github.io/binda/binda.html
Given the following binary data (represented as hex):
42:4c:4f:43:4b:44:41:54:41:64:4a:61:6d:69:65:20
43:61:73:68:20:20:20:20:20:01:65:42:6f:62:62:79
20:53:6d:69:74:68:20:20:20:20:00:66:4d:72:20:42
65:61:6e:20:20:20:20:20:20:20:20:01:4d:72:20:41
75:74:68:6f:72:20:20:20:20:20:20:0a:00:ff:ec:00
00:f7:42
Which contaains:
First create the data handler with the data.
data = b'BLOCKDATAdJamie Cash \x01eBobby Smith \x00fMr Bean '\
+b'\x01Mr Author \n\x00\xff\xec\x00\x00\xf7B'
handler = bd.DataHandler(data)
The name from the first record can be read by creating a variable, specifying a name for the variable, it's size, it's datatye and it's offset.
print("Name: " + handler.read_variable(bd.Variable('name', 15, str, 10)))
Name: Jamie Cash
The 19 bytes of author data starting at offset 60 can be read into a Pandas DataFrame by specifying the layout of the structure, including its variables. The DataHandler can then be used to read it.
author_struct = \
bd.Structure(60, [bd.Variable('AUTHOR', 15, str),
bd.Variable('ID', 2, int),
bd.Variable('POINTS', 2, int,
byteorder=bd.ByteOrder.BIG, signed=True)])
handler.add_structure('author', author_struct)
df = handler.read_structure('author')
df
The three row repeating structure can be read in a similar way, but this time also specifying the number of rows.
people_struct = \
bd.Structure(9, [bd.Variable('ID', 1, int),
bd.Variable('NAME', 15, str),
bd.Variable('ACTIVE', 1, bool)], rows=3)
handler.add_structure('people', people_struct)
df = handler.read_structure('people')
df
The dataframe can be edited, and saved back to edit the binary data.
# Change Bobby Smiths name to Bobby Smythe, his ID to 200 and is active
# status to True
df.loc[df['ID'] == 101, 'ID'] = 200
df.loc[df['ID'] == 200, 'NAME'] = 'Bobby Smythe '
df.loc[df['ID'] == 200, 'ACTIVE'] = True
handler.write_structure('people', df)
# Confirm that the change has been made to the data by re-reading it and
# displaying
df = handler.read_structure('people')
df
We can also check the binary data to see the change.
print(handler.data[26:43])
b'\xc8Bobby Smythe \x01'
2 Jupyter notebooks are provided in the examples folder, one containing the code from the Usage section above and one containing an example on reading and writimg Exif data to a .jpeg file.
This project is maintained on GitHub:
If you would like to contribute to this project by fixing issues or adding features, please follow the below steps:
FAQs
Read and write binary data using Pandas
We found that binda demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.