Encoding and Decoding with Python | PicoCTF Transformation + net-cat

preview_player
Показать описание
In this video walkthrough, we covered encoding and decoding using python and cyberchef. We solved two challenges from PicoCTF for that.
*******************
Written WalkThrough
***************
Receive Cyber Security Field Notes and Special Training Videos
******
Room Link
*********
Patreon
Backup channel
My Movie channel:
******
Рекомендации по теме
Комментарии
Автор

Actually for the manual decoding portion you can just iterate through your list using the int() function to convert all the strings to integers for easier processing.
e.g.
str_list=['1', '2', '3']
int_list=str_list
for i in str_list:
int_list.append(int(i))

list_temp will be equals to [1, 2, 3]

samuelleecong
Автор

I'm a Noob. How do you get that dec.py into your Transformation folder in Linux?

Norseman