Skip to content

Commit f46a3cf

Browse files
author
nhamiel
committed
Fixed a file read bug in fuzzdb.py were the XSS payload wasn't being read.
git-svn-id: http://pywebfuzz.googlecode.com/svn/trunk@39 82fd2642-525a-7321-434f-1f2799a5e545
1 parent 20f622d commit f46a3cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pywebfuzz/fuzzdb.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ class xss:
374374
""" This implements the xss payloads from fuzzdb """
375375
# xss-rsnake.txt
376376
location = "/data/attack-payloads/xss/xss-rsnake.txt"
377-
xss_rsnake = list()
377+
xss_rsnake = file_read(location)
378378

379379
# xss-uri.txt
380380
location = "/data/attack-payloads/xss/xss-uri.txt"

0 commit comments

Comments
 (0)