Reverse Polarity
30 points Easy

I got a new hard drive just to hold my flag, but I'm afraid that it rotted. What do I do? The only thing I could get off of it was this: 01000011010101000100011001111011010000100110100101110100010111110100011001101100011010010111000001110000011010010110111001111101

Flag
Rating 4.14
5
4
3
2
1

Discussion

should be 5 points

0

In a world of Ones and Zeros , what are YOU? , a 1 or a 0?

4

Probably the easiest one here alongside the wayback machine.

0

nicee

0

I used a simple python script.

Input of Binary, Separated in Bytes

binary = "01000011 01010100 01000110 01111011 01000010 01101001 01110100 01011111 01000110 01101100 01101001 01110000 01110000 01101001 01101110 01111101"

Add each item to a list at spaces

binlist = binary.split(" ")

List to Hold Characters

chrlist = []

Loop to convert

for i in binlist: chrlist.append(chr(int(i,2)))

Print The list a joined string

print("".join(chrlist))

0

just some binary conversion to text by seperating 8 bits. That's all

0

ez

0

https://binarytotext.net

1
Protected
1

reverse polarity suggests that the bits are reversed...

2

so ezz

0