We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d06a0c8 commit d2ac62aCopy full SHA for d2ac62a
bounty_drive/reporting/results_manager.py
@@ -26,6 +26,7 @@
26
27
def write_xss_vectors(vectors, filename):
28
with LOCKS["xss"]:
29
+ vectors = list(set(vectors))
30
if os.path.exists(filename):
31
with open(filename, "r+") as f:
32
json.dump(vectors, f)
0 commit comments