artifacts/scanner-builder.py [50:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        ]

print('##########################################################')
print('# WAF Tests on Target = ' + target)
print('##########################################################')

# list tests
line_width = 25
for single_test in tests:
	print("\nREQUEST: " + single_test['exec_string'])
	results =  subprocess.getstatusoutput(single_test['exec_string'])
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



artifacts/scanner.py [58:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        ]

print('##########################################################')
print('# WAF Tests on Target = ' + target)
print('##########################################################')

# list tests
line_width = 25
for single_test in tests:
    print("\nREQUEST: " + single_test['exec_string'])
    results =  subprocess.getstatusoutput(single_test['exec_string'])
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



