artifacts/scanner-builder.py [28:38]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def parse_result(http_result):
	_http_result = ''.join(map(str, http_result))
	if  '403 Forbidden' in _http_result:
		return ('403 Forbidden' , 0)
	elif '200 OK' in _http_result:
		return ('200 OK' , 1)
	elif '404 Not Found' in _http_result:
		return ('404 Not Found' , 2)
	elif '500 Internal Server Error' in _http_result:
		return ('500 Server Error' , 3)
	else:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



artifacts/scanner.py [29:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def parse_result(http_result):
    _http_result = ''.join(map(str, http_result))
    if  '403 Forbidden' in _http_result:
        return ('403 Forbidden' , 0)
    elif '200 OK' in _http_result:
        return ('200 OK' , 1)
    elif '404 Not Found' in _http_result:
        return ('404 Not Found' , 2)
    elif '500 Internal Server Error' in _http_result:
        return ('500 Server Error' , 3)
    else:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



