Metadata-Version: 2.1
Name: checksec.py
Version: 0.0.1
Summary: Checksec tool implemented in Python
Home-page: https://github.com/Wenzel/checksec.py
Author: Mathieu Tarral
Author-email: mathieu.tarral@protonmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Development Status :: 4 - Beta
Classifier: Typing :: Typed
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: colorama (==0.4.3)
Requires-Dist: docopt (==0.6.2)
Requires-Dist: lief (==0.10.1)
Requires-Dist: rich (==4.2.0)

# checksec.py

![](https://github.com/Wenzel/checksec.py/workflows/build/badge.svg)

> Checksec tool in Python. Based on LIEF

## Overview

A simple tool to verify the security properties of your binaries.

Supported formats:

- [x] `ELF`
- [ ] `PE`
- [ ] `Mach-O`

## Requirements

- `Python 3.6`
- `virtualenv`

## Setup

~~~
virtualenv -p python3 venv
source venv/bin/activate
(venv) pip install .
~~~

## References

- [@apogiatzis](https://github.com/apogiatzis) [Gist checksec.py](https://gist.github.com/apogiatzis/fb617cd118a9882749b5cb167dae0c5d)


