shfz / shfz-flask

A trace library for Python Flask web application

Home Page:https://pypi.org/project/shfzflask/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

shfz-flask

GitHub PyPI PyPI - Downloads

A trace library for Python Flask web application

This library records what processing was done by each endpoint's request and uses it to generate fuzz with a genetic algorithm.

This library is supposed to be used with shfz/shfz and shfz/shfzlib.

Install

pip install -U shfzflask

Usage

from flask import Flask
from shfzflask import shfztrace

app = Flask(__name__)
shfztrace(app, debug=False)

Options

  • trace (True) : Please set to False in the production environment
  • debug (False) : Enable debug
  • debugFrame (False) : All the acquired Frames are written out sequentially
  • report (True) : Report shfz server
  • fuzzUrl (http://localhost:53653) : A URL of shfz server

About

A trace library for Python Flask web application

https://pypi.org/project/shfzflask/

License:MIT License


Languages

Language:Python 98.5%Language:Makefile 1.5%