HelpUiDialogsEnc_dec - psiinon/zap-core-help GitHub Wiki
This allows you to encode, decode or hash text.
The dialog has one field that is common to all of the tabs:
This field is for the text that you want to be encoded, decoded or hashed. If any text is selected when the dialog is invoked then it will be put in this field. The other fields will be updated dynamically if you change the text
This tab has the following fields:
This read only field will be updated with the base 64 encoding of the text you enter.
This read only field will be updated with the URL encoding of the text you enter.
This read only field will be updated with the ASCII hex encoding of the text you enter.
This read only field will be updated with the HTML encoding of the text you enter. For example, the text "piñata"
would be encoded as "piñata"
.
This read only field will be updated with the escaped JavaScript literals of the text you enter. For example, the text "2¢"
would be encoded as \"2\uFFE0\"
.
This tab has the following fields:
This read only field will be updated with the base 64 decoding of the text you enter. If there is no valid decoding then the field will be disabled.
This read only field will be updated with the URL decoding of the text you enter.
This read only field will be updated with the ASCII hex decoding of the text you enter. If there is no valid decoding then the field will be disabled.
This read only field will be updated with the HTML decoding of the text you enter. For example, the text "piñata"
would be decoded as "piñata"
.
This read only field will be updated with the unescaped JavaScript literals of the text you enter. For example, the text \"2\uFFE0\"
would be decoded as "2¢"
.
This tab has the following fields:
This read only field will be updated with the SHA1 hash of the text you enter.
This read only field will be updated with the MD5 hash of the text you enter.
This tab has the following fields:
This read only field will be updated with an illegal UTF-8 character sequence with 2 bytes.
This read only field will be updated with an illegal UTF-8 character sequence with 3 bytes.
This read only field will be updated with an illegal UTF-8 character sequence with 4 bytes.
This tab has the following fields:
This read only field will be updated with escaped Unicode characters. For example, the text Açores
would be encoded as %u0041%u00e7%u006f%u0072%u0065%u0073
.
This read only field will be updated with the unescaped Unicode characters. For example, the text %u0041%u00e7%u006f%u0072%u0065%u0073
would be decoded as Açores
.
Top level Edit menu | 'Encode/Decode/Hash...' menu item | |
Break tab | 'Encode/Decode/Hash...' right click menu item | |
Request tab | 'Encode/Decode/Hash...' right click menu item | |
Response tab | 'Encode/Decode/Hash...' right click menu item | |
Spider tab | 'Encode/Decode/Hash...' right click menu item |
UI Overview | for an overview of the user interface | |
Dialogs | for details of the dialogs or popups |