Massive #Hackvertor update 1.7.37
🔥 Tag completion
🔥 Tag syntax highlighting
🔥 Fake data tags
🔥 Custom tags syntax highlighting
🔥 Call Hackvertor tags inside custom tags 😮
and much more done on my #HackvertorLunch
https://portswigger.net/bappstore/65033cbd2c344fbabe57ac060b5dd100
#Hackvertor Added a new context body tag. This allows you to get the request body and use it somewhere else. Can be used in conjunction with the json_parse tag to parse it and get a prop.
Req header:
x:<@json_parse('$foo')><@context_body/><@/json_parse>
Body:
{
"foo":"bar"
}
Making #Hackvertor context aware. This is actually a fun challenge. I had to pass around a Hackvertor object to static methods then analyse the request and do the replacements.
<@context_header("$Host")/>
<@context_url("$protocol $host $path $file $query $port")/>
#Hackvertor You can now call custom tags within a custom tag! Inception.
output = convert("<@_custom('"+executionKey+"')>"+input+"<@/_custom>")
Coming to the BApp store soon!
Added an awesome feature to #Hackvertor. You can now run conversions inside custom tags!
output = convert("<@base64>"+input+"<@/base64>")