restrictedVectors
This tags returns all XSS vectors on the XSS cheat sheet that can be used with restricted characters such as no parentheses.
Created by: hackvertor
Installed 1 times
Category: XSS
Created on: Tuesday, November 12, 2024 at 9:38:38 PM
Updated on: Wednesday, November 20, 2024 at 5:32:26 PM
Tag arguments
[]
Code
class restrictedVectors {
encode(input) {
return hv.variables.xssCheatSheet.restrictedCharacters.map(
(vector) => vector.code,
).join("\n");
}
}