Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/owtf/ptp
Pentester's Tools Parser (PTP) provides an unified way to retrieve the information from all (final goal) automated pentesting tools and assign an automated ranking for each finding.
https://github.com/owtf/ptp
owasp owtf pentesting python vulne
Last synced: 4 days ago
JSON representation
Pentester's Tools Parser (PTP) provides an unified way to retrieve the information from all (final goal) automated pentesting tools and assign an automated ranking for each finding.
- Host: GitHub
- URL: https://github.com/owtf/ptp
- Owner: owtf
- License: bsd-3-clause
- Created: 2014-05-19T15:52:28.000Z (over 10 years ago)
- Default Branch: develop
- Last Pushed: 2023-03-21T22:07:18.000Z (over 1 year ago)
- Last Synced: 2024-10-10T19:39:00.867Z (29 days ago)
- Topics: owasp, owtf, pentesting, python, vulne
- Language: Python
- Homepage: http://owtf.github.io/ptp/
- Size: 5.97 MB
- Stars: 31
- Watchers: 9
- Forks: 13
- Open Issues: 8
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - owtf/ptp - Pentester's Tools Parser (PTP) provides an unified way to retrieve the information from all (final goal) automated pentesting tools and assign an automated ranking for each finding. (python)
README
============
What is PTP?
============.. image:: https://travis-ci.org/owtf/ptp.svg?branch=develop
:target: https://travis-ci.org/owtf/ptpThe primary goal of ptp (Pentester's Tools Parser) is to enhance `OWASP - OWTF
project `_ in order to provide an
automated ranking for each plugin. This will allow the user to focus attention
on the most likely weak areas of a web application or network first, which will
be valuable to efficiently use the remaining time in a penetration assessment.Instead of evaluating every plugins run by OWASP - OWTF and defining the
rankings for each of them, thanks to `ptp`, the user will be able to focus on
the ones that have been ranked with the highest risks. The user is then able to
confirm or override the automated rankings since we estimate that she/he is the
only one that can accurately detect the false positives.When developing the automated ranking system, `ptp`'s main goal was joined with
a secondary one.Apart from its main feature which is **ranking the results from security tools
reports**, it also provides an **unified way to reuse these reports directly in
your python code**, without having to deal with complex parsing.============
Installation
============Using pip
=========The `ptp` library is available on `PyPI `_ at the
following address: `https://pypi.python.org/pypi/ptp
`_.The easiest way to install it is using `pip
`_... code-block:: bash
$ pip install ptp
*Note*: If an error occurs during the installation process, check your permissions. It might be required to run `pip
`_ as root.From scratch
============It is also possible to install the library from its repository. You will then
be able to use the latest possible version or even try the `develop branch
`_.The first step is to clone the repository of the project:
.. code-block:: bash
$ git clone https://github.com/owtf/ptp.git
Then use the Makefile command:
.. code-block:: bash
$ make install
=====
Usage
=====.. code-block:: python
from __future__ import print_function
from ptp import PTPif __name__ == '__main__':
ptp = PTP()
ptp.parse('path/to/the/report/directory')
print('Highest severity:', ptp.highest_ranking)=============
Documentation
=============The documentation is available online at the following address:
`https://owtf.github.io/ptp/ `_.It explains how to use the library and even how to contribute. Plus it contains
the technical documentation of the project.===============
Current support
===============+ arachni (0.4.x to 1.x) (XML and JSON report)
+ burpsuite (1.x.x) (XML report)
+ dirbuster (1.0-RC1)
+ hoppy (1.x.x)
+ metasploit
+ owasp
+ robots.txt
+ skipfish (2.10b)
+ w3af (1.x.x) (XML report)
+ wapiti (2.x.x) (XML report)*Warning*: Since v0.4, PTP relies on the fact that the supported tools are following `semantic version `_
(except observed otherwise). In other words, as long as the tool doesn't update its MAJOR version, PTP will assume that
it can parse its report, reducing the maintenance cost on our side.