A simple test of binary operations
Here is my terminal output from the challenge
Welcome to the Binary Challenge!"
Your task is to perform the unique operations in the given order and find the final result in hexadecimal that yields the flag.
Binary Number 1: 11010011
Binary Number 2: 00110000
Question 1/6:
Operation 1: '*'
Perform the operation on Binary Number 1&2.
Enter the binary result:
had to write this one out!
Enter the binary result: 10011110010000
Correct!
Question 2/6:
Operation 2: '<<'
Perform a left shift of Binary Number 1 by 1 bits.
Enter the binary result: 111010011
Incorrect. Try again
Enter the binary result: 110100110
Correct!
Question 3/6:
Operation 3: '&'
Perform the operation on Binary Number 1&2.
Enter the binary result: 00010000
Correct!
Question 4/6:
Operation 4: '>>'
Perform a right shift of Binary Number 2 by 1 bits .
Enter the binary result: 000110000
Incorrect. Try again
Enter the binary result: 00011000
Correct!
Question 5/6:
Operation 5: '|'
Perform the operation on Binary Number 1&2.
Enter the binary result: 11110011
Correct!
Question 6/6:
Operation 6: '+'
Perform the operation on Binary Number 1&2.
Enter the binary result: 110000001
Incorrect. Try again
Enter the binary result: 100000011
Correct!
Enter the results of the last operation in hexadecimal: 8101
Incorrect answer!
Enter the results of the last operation in hexadecimal: 103
Correct answer!
The flag is: picoCTF{b1tw^3se_0p3eR@tI0n_su33essFuL_aeaf4b09}