Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@aoc-2021/binary-diagnostic
Advanced tools
The submarine has been making some odd creaking noises, so you ask it to produce a diagnostic report just in case.
The diagnostic report (your puzzle input) consists of a list of binary numbers which, when decoded properly, can tell you many useful things about the conditions of the submarine. The first parameter to check is the power consumption.
You need to use the binary numbers in the diagnostic report to generate two new binary numbers (called the gamma rate and the epsilon rate). The power consumption can then be found by multiplying the gamma rate by the epsilon rate.
Each bit in the gamma rate can be determined by finding the most common bit in the corresponding position of all numbers in the diagnostic report. For example, given the following diagnostic report:
00100
11110
10110
10111
10101
01111
00111
11100
10000
11001
00010
01010
Considering only the first bit of each number, there are five 0 bits and seven 1 bits. Since the most common bit is 1, the first bit of the gamma rate is 1.
The most common second bit of the numbers in the diagnostic report is 0, so the second bit of the gamma rate is 0.
The most common value of the third, fourth, and fifth bits are 1, 1, and 0, respectively, and so the final three bits of the gamma rate are 110.
So, the gamma rate is the binary number 10110
, or 22 in decimal.
The epsilon rate is calculated in a similar way; rather than use the most common bit, the least common bit from each position is used. So, the epsilon rate is 01001
, or 9
in decimal. Multiplying the gamma rate (22
) by the epsilon rate (9
) produces the power consumption, 198.
Use the binary numbers in your diagnostic report to calculate the gamma rate and epsilon rate, then multiply them together. What is the power consumption of the submarine? (Be sure to represent your answer in decimal, not binary.)
Your puzzle answer was 2595824.
Next, you should verify the life support rating, which can be determined by multiplying the oxygen generator rating by the CO2 scrubber rating.
Both the oxygen generator rating and the CO2 scrubber rating are values that can be found in your diagnostic report - finding them is the tricky part. Both values are located using a similar process that involves filtering out values until only one remains. Before searching for either rating value, start with the full list of binary numbers from your diagnostic report and consider just the first bit of those numbers. Then:
The bit criteria depends on which type of rating value you want to find:
To find oxygen generator rating, determine the most common value (0
or 1
) in the current bit position, and keep only numbers with that bit in that position. If 0
and 1
are equally common, keep values with a 1
in the position being considered.
To find CO2 scrubber rating, determine the least common value (0 or 1) in the current bit position, and keep only numbers with that bit in that position. If 0
and 1
are equally common, keep values with a 0
in the position being considered.
For example, to determine the oxygen generator rating value using the same example diagnostic report from above:
00100
11110
10110
10111
10101
01111
00111
11100
10000
11001
00010
01010
1
bits (7) than 0
bits (5), so keep only the 7 numbers with a 1 in the first position: 11110, 10110, 10111, 10101, 11100, 10000, and 11001.0
bits (4) than 1
bits (3), so keep only the 4 numbers with a 0
in the second position: 10110
, 10111
, 10101
, and 10000
.10110
, 10111
, and 10101
.1
, so keep those two: 10110
and 10111
.0
bits and 1
bits (one each). So, to find the oxygen generator rating, keep the number with a 1 in that position: 10111
.Then, to determine the CO2 scrubber rating value from the same example above:
0
bits (5) than 1
bits (7), so keep only the 5 numbers with a 0 in the first position: 00100
, 01111
, 00111
, 00010
, and 01010
.01111
and 01010
.01010
.01010
, or 10 in decimal.Finally, to find the life support rating, multiply the oxygen generator rating (23
) by the CO2 scrubber rating (10
) to get 230.
Use the binary numbers in your diagnostic report to calculate the oxygen generator rating and CO2 scrubber rating, then multiply them together. What is the life support rating of the submarine? (Be sure to represent your answer in decimal, not binary.)
Your puzzle answer was 2135254.
FAQs
Day 03 - Binary Diagnostic
We found that @aoc-2021/binary-diagnostic demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.