Init WFuzz state

This commit is contained in:
Jan Stárek
2019-10-09 13:24:01 +02:00
parent 7c3ed5ef0b
commit a5eb2a97e1
114 changed files with 6221 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
from http.server import BaseHTTPRequestHandler
class RequestHandler(BaseHTTPRequestHandler):
def _set_headers(self):
self.send_response(500)
self.send_header('Content-type', 'text/plain')
self.end_headers()
def do_GET(self):
self._set_headers()
self.wfile.write(b'Internal server error')
def send_error(self, code, message=None, explain=None):
pass

View File

@@ -0,0 +1,2 @@
./fuzz_and_grep_logs.sh "$(dirname "${BASH_SOURCE[0]}")" "Status code higher or equal than 500!"
exit $?