diff --git a/pef/imports/pefdocs.py b/pef/imports/pefdocs.py index 79b74a9..a0efbfd 100644 --- a/pef/imports/pefdocs.py +++ b/pef/imports/pefdocs.py @@ -20,9 +20,10 @@ "Function(", "textContent", "innerText", + "URLSearchParams(", ], "php": [ - "`", + # "`", "system(", "exec(", "popen(", @@ -253,7 +254,15 @@ "XSS, HTML Injection, Content Injection etc.", "medium", "sink" - ] + ], + "URLSearchParams": [ + "The URLSearchParams interface defines utility methods to work with the query string of a URL.", + "URLSearchParams()", + "XSS, HTML Injection, Content Injection etc.", + "medium", + "source" + ], + }, "php": { "`": [ diff --git a/s0mbra.sh b/s0mbra.sh index def71a4..17d618a 100755 --- a/s0mbra.sh +++ b/s0mbra.sh @@ -217,7 +217,7 @@ enum() { DOMAIN=$1 echo -e "$BLUE[s0mbra] Let's see what have we got here...$CLR\n" - # amass passive enum + amass passive enum echo -e "\n$GREEN--> amass (takes some time, so sit tight, Choom...)$CLR\n" amass enum -passive -d $DOMAIN -o "$TMPDIR/amass.tmp" cut -d' ' -f 1 "$TMPDIR/amass.tmp" | grep -e '[a-z]' | sort -u | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" | grep $DOMAIN > "$TMPDIR/enum_amass.log"