Skip to content

shfz/shfz-flask

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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