Metadata-Version: 2.1
Name: libcfinder
Version: 1.0.2
Summary: UNKNOWN
Home-page: https://github.com/petitnau/libcfinder
Author: Roberto Pettinau
Author-email: roberto.pettinau99@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Security
Description-Content-Type: text/markdown

# libcfinder

Libcfinder is a pwn tool made for finding the libc version that was used when compiling an executable.

## Installation

Use the package manager pip to install libcfinder

```bash
pip3 install libcfinder
```

## Usage

```python
import libcfinder

libcv = libcfinder.find_libcv({"puts": 0xf7d8fb40, "gets": 0xf7d8f2b0})
system_addr = libcfinder.find_fun_addr(libcv[0], "puts", 0xf7dddb40, "system")
```

