https://github.com/danielfvm/accessstring
A commandline tool for finding strings in binary files and the assembler code that access it. Can be used for reverse engineering binary applications.
https://github.com/danielfvm/accessstring
c cli linux reverse-engineering strings
Last synced: about 1 year ago
JSON representation
A commandline tool for finding strings in binary files and the assembler code that access it. Can be used for reverse engineering binary applications.
- Host: GitHub
- URL: https://github.com/danielfvm/accessstring
- Owner: danielfvm
- License: gpl-3.0
- Created: 2023-05-11T13:39:35.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-05-11T15:43:14.000Z (almost 3 years ago)
- Last Synced: 2025-01-11T00:12:43.139Z (about 1 year ago)
- Topics: c, cli, linux, reverse-engineering, strings
- Language: C
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AccessString
A commandline tool for finding strings in binary files and the assembler
code that access it. Can be used for reverse engineering binary applications.

# Usage
```
Usage:
accessstring [max_offset]
file Path to executable file
string String to be referenced
max_offset Allow provided string to be offset by value, default 0
```
# Installation
You will need the [udis869](https://github.com/vmt/udis86) library to compile and install this program.
## Linux
The following commands will download, compile and install this program. Keep in mind that you porbably will
need root permission for running `make install`, which will then copy the binary file to `/usr/bin/`
```
git clone https://github.com/danielfvm/AccessString
cd AccessString
make
make install
```