mirror of https://gitlab.com/bashrc2/epicyon
Add debug flags
parent
5d0192732c
commit
17d7432fc6
17
content.py
17
content.py
|
@ -1480,6 +1480,8 @@ def extract_text_fields_in_post(post_bytes, boundary: str, debug: bool,
|
|||
The boundary argument comes from the http header
|
||||
"""
|
||||
if boundary == 'LYNX':
|
||||
if debug:
|
||||
print('POST from lynx browser')
|
||||
boundary = '--LYNX'
|
||||
|
||||
if not unit_test_data:
|
||||
|
@ -1513,26 +1515,29 @@ def extract_text_fields_in_post(post_bytes, boundary: str, debug: bool,
|
|||
if '"' not in post_str:
|
||||
continue
|
||||
post_key = post_str.split('"', 1)[0]
|
||||
print('post_key: ' + post_key)
|
||||
if debug:
|
||||
print('post_key: ' + post_key)
|
||||
post_value_str = post_str.split('"', 1)[1]
|
||||
if boundary == '--LYNX':
|
||||
post_value_str = \
|
||||
post_value_str.replace(lynx_content_type, '')
|
||||
if 'password' not in post_key:
|
||||
if debug and 'password' not in post_key:
|
||||
print('boundary: ' + boundary)
|
||||
print('post_value_str1: ' + post_value_str)
|
||||
if ';' in post_value_str:
|
||||
if post_key not in fields_with_semicolon_allowed and \
|
||||
not post_key.startswith('edited'):
|
||||
print('exit 1')
|
||||
if debug:
|
||||
print('extract_text_fields_in_post exit 1')
|
||||
continue
|
||||
if 'password' not in post_key:
|
||||
if debug and 'password' not in post_key:
|
||||
print('post_value_str2: ' + post_value_str)
|
||||
if '\r\n' not in post_value_str:
|
||||
print('exit 2')
|
||||
if debug:
|
||||
print('extract_text_fields_in_post exit 2')
|
||||
continue
|
||||
post_lines = post_value_str.split('\r\n')
|
||||
if 'password' not in post_key:
|
||||
if debug and 'password' not in post_key:
|
||||
print('post_lines: ' + str(post_lines))
|
||||
post_value = ''
|
||||
if len(post_lines) > 2:
|
||||
|
|
Loading…
Reference in New Issue