...payload)
if status_code:
results.append({"payload": payload, "status_code": status_code, "response": response_text})
#Save results to a file (Example, you might need to adjust based on your desired output)
with open("attack_results.txt", "w") as f:
for...