Is this Hex encoding; system codes; or some kind of Base64; or, something else? [duplicate]

What would the results of this command line be? Does not appear to be Base64. UTF16 translates it into some form of kanji, but who knows if that’s reliable. Also tried to throw it in an encoding identifier in dcode, but it just spit back B… Continue reading Is this Hex encoding; system codes; or some kind of Base64; or, something else? [duplicate]

AWS KMS to sign messages – trouble using python’s ecdsa lib when getting the verifiying key [migrated]

I’m signing my messages using my code below:
def sign_msg_hash(self, msg_hash: HexBytes):
signature = self._kms_client.sign(
KeyId=self._key_id,
Message=msg_hash,
MessageType="DIGEST",
Continue reading AWS KMS to sign messages – trouble using python’s ecdsa lib when getting the verifiying key [migrated]

Burp Suite: alphanumeric payload decoded to base64 exposes password, but as an encoded string

I’m learning Web Pentesting using Juice Shop and I successfully used Burp Suite to generate an SQL injection payload in the repeater that exposed the plain text email and encoded password of the admin.
By using Burp Suite Decoder, I decode… Continue reading Burp Suite: alphanumeric payload decoded to base64 exposes password, but as an encoded string