You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I replicate the capabilities provided by the Python hmac.digest() function using Nuclei hmac helper function. As far as i see nuclei does not support hmac.digest.
How can I replicate the capabilities provided by the Python hmac.digest() function using Nuclei hmac helper function. As far as i see nuclei does not support hmac.digest.
Python Example
token=base64.b64encode(hmac.new(secret,data,"sha256").digest());
Nuclei
token={{base64(hmac("sha256",data,secret))}}
Is there a way to replicate python hmac.digest in nuclei.
The text was updated successfully, but these errors were encountered: