Quickfix - Unexpected crash after too many requests (Flask can't handle)
parent
4310733e43
commit
ebd4ae4ee3
|
@ -20,6 +20,8 @@ All the features are:
|
|||
|
||||
**Warning :** Do not use this extension for illegal purpose, the main goal of it is to simplify the life of bug hunters. It's a **BETA version**, many improvements will come don't worry
|
||||
|
||||
**Warning :** A crash can happen server-side, this issue isn't resolved yet. The docker-compose.yml is set to automatically restart the docker when this happen..
|
||||
|
||||
## Install
|
||||
You need to install and configure the server, it uses ghost and flask.
|
||||
1. To get started you only need to start the docker and the dependencies will be installed.
|
||||
|
@ -72,6 +74,13 @@ STDERR
|
|||
```
|
||||
A "/ping" request is done at every opening of the "Plugin Window" in your browser.
|
||||
|
||||
If you need the exact version of the component used in the beta test, here they are.
|
||||
```
|
||||
Ghost.py==2.0.0-dev
|
||||
PySide==2.0.0~alpha0
|
||||
Qt==5.5.1
|
||||
```
|
||||
|
||||
## Thanks, Contributors and Ideas
|
||||
- Polyglot vector for SQL injections [The Ultimate SQL Injection Payload](https://labs.detectify.com/2013/05/29/the-ultimate-sql-injection-payload/)
|
||||
- Polyglot vector for XSS injection 1 [One vector to rule them all](http://www.thespanner.co.uk/2010/09/15/one-vector-to-rule-them-all/)
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
version: '2'
|
||||
services:
|
||||
web:
|
||||
restart: always
|
||||
build: .
|
||||
ports:
|
||||
- "8000:8000"
|
||||
|
|
|
@ -17,6 +17,14 @@ def ping():
|
|||
return "pong"
|
||||
|
||||
|
||||
""" Template
|
||||
Description: Basic template, will be used in the next features
|
||||
"""
|
||||
@app.route('/template', methods=['GET', 'POST'])
|
||||
def template():
|
||||
return render_template('index.html')
|
||||
|
||||
|
||||
""" Route /
|
||||
Description: main route for the flask application, every scan is launched from here
|
||||
"""
|
||||
|
@ -102,4 +110,4 @@ def index():
|
|||
return jsonify(vulns)
|
||||
|
||||
if __name__ == '__main__':
|
||||
app.run(host='0.0.0.0', port=8000, threaded=True, passthrough_errors=False)
|
||||
app.run(host='0.0.0.0', port=8000, threaded=True, passthrough_errors=True) # Seems to crash the server with the following options, threaded=True, passthrough_errors=False)
|
||||
|
|
Loading…
Reference in New Issue