Decode Base64

Decodes the input text from base64 and prints the result to the output screen. The action supports either standard base64 or URL base64 encoding.
ParameterDescription
TextThe text to decode.
Encoding TypeThe type of encoding: Standard or URL

Decode Hex

Converts a hex-encoded string to a string. For example: For the hexadecimal encoded string: 626C696E6B, the returned string will be: blink.
ParameterDescription
Encoded StringThe string that needs to be decoded. Bytes are decoded using UTF-8.

Decode JWT

Decode a JSON Web Token (JWT).
ParameterDescription
JWTThe complete JSON Web Token (JWT) string to be decoded.

Encode Base64

Encodes the input text to base64 and prints the result to the output screen. The action supports either standard base64 or URL base64 encoding.
ParameterDescription
TextThe text to encode.
Encoding TypeThe type of encoding to decode: Standard or URL

Encode Hex

Converts a regular string to its hex representation, encoding each character of the string into hexadecimal format. For example: For input string: blink, the returned hexadecimal string will be: 626c696e6b.
ParameterDescription
StringThe string that will be encoded. First, it encodes the string to bytes (using UTF-8) and then the bytes to hex.

Encode JWT

Encode JSON Web Token (JWT).
ParameterDescription
SubThe subject identifier for whom this token is being created.
NameThe human-readable name associated with the subject.
Issued At Time (IAT)The timestamp when this token was issued.

Generate MD5 Hash

Generates a MD5 hash from a string or from a file. For example: For input string: blink, the returned generated MD5 hash will be: 40652ee9ae143f1c1c830f01a5449ecb.
ParameterDescription
Source TypeSelect whether to generate the hash from the String or from a File.
StringThe string from which to generate the MD5 hash.
File PathThe file from which to generate the MD5 hash.
Working DirectoryThe directory where the file is located. The filesystem state is preserved across steps using this directory to ensure that files and changes persist for continuity.

For more information - refer to the Create Working Directory action documentation for guidance on setting up and selecting working directories.

Generate Password

Generates a secret password and stores it in a variable.
ParameterDescription
Variable NameThe name of the variable to store the generated password in.
Password LengthThe password length, default 10.
Include Special Chars[!-*] character set - !@#$%&*.
Include Lowercase Chars[a-z] character set - abcdedfghijklmnopqrst.
Include Uppercase Chars[A-Z] character set - ABCDEFGHIJKLMNOPQRSTUVWXYZ.
Include Digit Chars[0-9] character set - 0123456789.

Generate SHA1 Hash

Generates a SHA1 hash from a string or from a file. For example: For input string: blink, the returned generated SHA1 hash will be: dcae3a7a7c14a77ef384f1c5df6e63edc780eba0.
ParameterDescription
Source TypeSelect whether to generate the hash from the String or from a File.
StringThe string from which to generate the SHA1 hash.
File PathThe path of the file from which to generate the SHA1 hash.
Working DirectoryThe directory where the file is located. The filesystem state is preserved across steps using this directory to ensure that files and changes persist for continuity.

For more information - refer to the Create Working Directory action documentation for guidance on setting up and selecting working directories.

Generate SHA256 Hash

Generates a SHA256 hash from a string or from a file. For example: For input string: blink, the returned generated SHA256 hash will be: e14a51fded1fb9b43de815d3832da099053b583f1d2c01d0495a70f118df426c.
ParameterDescription
Source TypeSelect whether to generate the hash from the String or from a File.
StringThe string from which to generate the SHA256 hash.
File PathThe path of the file from which to generate the SHA256 hash.
Working DirectoryThe directory where the file is located. The filesystem state is preserved across steps using this directory to ensure that files and changes persist for continuity.

For more information - refer to the Create Working Directory action documentation for guidance on setting up and selecting working directories.

Generate UUID V4

Generates a random version 4 UUID. Note: A Version 4 UUID is a universally unique identifier that is generated using random numbers. There is no warranty that the provided UUID is unique.

Get TLS Certificate Information

Retrieves information about the security certificate (TLS/SSL) used by an endpoint for encrypted communication.
ParameterDescription
HostnameThe hostname of the endpoint.
PortThe port number of the endpoint.