home.social

#hackvertor — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #hackvertor, aggregated by home.social.

fetched live
  1. Pentagrid published two #Hackvertor tags for #EAN13 (also Swiss AHV numbers) and #TOTP for #2FA. These tags are available via the Hackvertor Tag Store by @garethheyes. Our blog post explains what these tags do and how they can be used. pentagrid.ch/en/blog/hackerver #pentest #OWASP

  2. 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

    portswigger.net/bappstore/6503

  3. I've added new tags to #Hackvertor that allow you to encode/decode SAML requests. Should be in the next release.

  4. #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"
    }

  5. 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")/>

  6. #Hackvertor You can now call custom tags within a custom tag! Inception.

    output = convert("<@_custom('"+executionKey+"')>"+input+"<@/_custom>")

    Coming to the BApp store soon!

  7. Added an awesome feature to #Hackvertor. You can now run conversions inside custom tags!

    output = convert("<@base64>"+input+"<@/base64>")