Sunday, July 3, 2022
HomeCyber SecurityUnicodeDecodeError: ‘utf-8’ codec can’t decode byte 0x89 in place 1: invalid begin...

UnicodeDecodeError: ‘utf-8’ codec can’t decode byte 0x89 in place 1: invalid begin byte | by Teri Radichel | Bugs That Chunk | Jul, 2022


Encoding and decoding in Python

Encoding and decoding values can get complicated.

This pattern code would possibly show you how to out. I named the variables to indicate whether or not they had been encoded (bytes) or decoded (a string) or base64 encoded or decoded.

import base64worth="Decoded string worth"value_encode = worth.encode('utf-8')
value_base64encode = base64.b64encode(value_encode)
value_decode = value_base64encode.decode('utf-8')
print(value_decode)value_encode = value_decode.encode('utf-8')
value_base64decode = base64.b64decode(value_encode)
value_decode = value_base64decode.decode('utf-8')
print(value_decode)

Typically you encode values in order that they don’t unintentionally get processed incorrectly. For instance when you have code in a worth and also you don’t need it to mess up parsing and processing, you would possibly encode it to forestall sure particular characters from being interpreted as code or breaking one thing.

Encoding values correctly might help cease some safety issues the place attackers attempt to inject code into course of to take malicious actions.

Attackers additionally might encode values to bypass safety instruments that examine knowledge.

At any charge, if you wish to base64 encode a worth you first must translate into bytes, then encode it. Then decode it to show it again right into a string that you could cross into features that anticipate a string.

Whenever you need to decode the base64 encoded worth, flip it again into bytes, then base64 decode it, then convert it again to a string.

There are several types of encoding and decoding like ASCII or UTF-8 — so you’ll want to perceive what character set it is advisable to help or work with to make use of the correct encoding and decoding.

One of many challenges is whenever you don’t understand how one thing was encoded within the first place and it’s important to decode it. You’ll most likely need to consult with the supply code or the documentation to ensure you decode it appropriately.

Teri Radichel

If you happen to preferred this story please clap and observe:

Medium: Teri Radichel or E-mail Listing: Teri Radichel
Twitter: @teriradichel or @2ndSightLab
Requests providers by way of LinkedIn: Teri Radichel or IANS Analysis

© 2nd Sight Lab 2022

____________________________________________

Writer:

Cybersecurity for Executives within the Age of Cloud on Amazon

Want Cloud Safety Coaching? 2nd Sight Lab Cloud Safety Coaching

Is your cloud safe? Rent 2nd Sight Lab for a penetration check or safety evaluation.

Have a Cybersecurity or Cloud Safety Query? Ask Teri Radichel by scheduling a name with IANS Analysis.

Cybersecurity & Cloud Safety Sources by Teri Radichel: Cybersecurity and Cloud safety courses, articles, white papers, displays, and podcasts



RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -
Google search engine

Most Popular

Recent Comments