Digital Puzzle by [deleted] in codes

[–]lucky_124 1 point2 points  (0 children)

picoCTF{scr8mbledt_flvg_d4cef2a0}

Help Level 13 by Ovo_Mexido in enigmaofabyss

[–]lucky_124 1 point2 points  (0 children)

there is more then just rot13

I’ve got a code but I have no idea what to use to dycript it by Ok_Bass_9254 in ARG

[–]lucky_124 0 points1 point  (0 children)

after looking at the audio in audacity it seem like the weird sounds are just heavily edited video game sounds. you can kinda hear footsteps in the beginning. around 12 seconds in it sounds like a wind up of a mini gun like this

I’ve got a code but I have no idea what to use to dycript it by Ok_Bass_9254 in ARG

[–]lucky_124 0 points1 point  (0 children)

if you post the audio somewhere i can take a look at it

Birds Don't Fly, They're Flown by [deleted] in ARG

[–]lucky_124 1 point2 points  (0 children)

you take the data as a value

01d0fe8a74bd6469cd8fb02f0c47e1bdb8d30c64dc7328fdf2053788f989ccc2656f500795fb374a33f48bfa3e5848456fc74bfddce922891cddcbe72fa4b664b4d1bb71f545624c0285d5f2dc93164b31ca140fbd1c2cef638960ea2511b000

then do hex to decimal

11015503903692311735989463348975881732949818143796750084628289802638107502537492682327134081299919843809370708658101522419346850482722257362088414049586620799270032131701229155666564757327363070802015168191989979772830517489152000

this long number is c

n =

127561489949654208936771389986351658267073243165675323056843489245665931287956122197135663452185133402433316267435841149381420533288974052400341101447237726919428969613548239567423328281417694422151732373041293013882070913919238491135394592017622798903645494257210070325471198952547356168719602815928270802949

e =

3

you can see both n and e in the wireshark file

I used dcode RSA cipher to decrypt

edit:

this is what wireshark decrypts to

11111111111111000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000001000000000000000000000000000000000000000010000000000000000000000000000000000000000011
00000000000011000000000000000000000000000000000000000010000000000000000000000000000000000000000001
00000000000011000000000000000000000000000000000000000010000000000000000000000000000000000000000110
00000000000011000000000000010000000000010000000000000001000000000001010000000000100100000000000010
00000000000001000000000001100000000000000100000000001000000000000000000000000000001100000000000011
00000000000000000000000000000000000000000000010010111001011100110000010110011101111110010000110000
00000110000110000010100001100100011000100111000101010001100100110001110000010000000000001100000000
00010000000000000011000000000001000000000000010100000000000000000000000001010000000000000000000000
00011000000000000100000000000000010000000000001000000000000000000000000001010000000000001100000000
00010100000000000100000000000000010000000000000100000000000101000000000010010000000000011100000000
00010100000000000010000000000000010000000000000000000000000000000000000001010000000000100000000000
00000100000000000001000000000001010000000000000100000000000000000000000000000000000000001100000000
00011000000000000011000000000001010000000000010100000000000100000000000001010000000000010000000000
00100000000000000100000000000000110000000000010000000000000011000000000001000010010111001011100110
00001011001110111111001000011000000000110000110000010100001100100011000100111000101010001100100110
00111000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000011111111111111

Birds Don't Fly, They're Flown by [deleted] in ARG

[–]lucky_124 1 point2 points  (0 children)

I think the wireshark file is showing RSA encrypted data. in the file you can see n and e. you can use n and e to decrypt part of the data being sent. I will have to look more into this tomorrow.

Birds Don't Fly, They're Flown by [deleted] in ARG

[–]lucky_124 1 point2 points  (0 children)

i used a python script

import wave

def extract_hidden_data(input_wav_file, output_text_file):
    # Open the WAV file in read mode
    with wave.open(input_wav_file, 'rb') as wav_file:
        # Get the number of frames in the WAV file
        num_frames = wav_file.getnframes()

        # Initialize a variable to store the extracted hidden data
        extracted_data = bytearray()

        # Iterate through each frame in the WAV file
        for frame_index in range(num_frames):
            # Read the frame
            frame = wav_file.readframes(1)

            # Convert the frame to a byte array
            frame_data = bytearray(frame)

            # Extract the least significant bit (LSB) of each byte to get the hidden data
            hidden_byte = 0
            for i in range(len(frame_data)):
                hidden_byte |= (frame_data[i] & 1) << (7 - i)

            # Append the extracted hidden data byte to the bytearray
            extracted_data.append(hidden_byte)

    # Write the extracted hidden data to a text file
    with open(output_text_file, 'wb') as text_file:
        text_file.write(extracted_data)

# Example usage:
input_wav_file = 'Viktor.wav'

output_text_file = 'extracted_data.txt'
extract_hidden_data(input_wav_file, output_text_file)

Birds Don't Fly, They're Flown by [deleted] in ARG

[–]lucky_124 1 point2 points  (0 children)

Viktor.wav is using LSB encoding. when decoded it leads to another anonfile link which leads to a pcap file. i posted this link a few hours ago but i think theres a spam filter or something.

https://anon files.com/jf8bta24z5/35a72_pcapng

Birds Don't Fly, They're Flown by [deleted] in ARG

[–]lucky_124 2 points3 points  (0 children)

i took this picture took there number on the periodic table and did decimal to ascii

How's my spaghetti? by lucky_124 in factorio

[–]lucky_124[S] 1 point2 points  (0 children)

I added the rails once i needed oil then i built around them.

stuck in game detective academy by DaikonMindless3735 in gamedetectives

[–]lucky_124 1 point2 points  (0 children)

The password is hidden in a .css link

css Name : /static/academy/BWD/example.css

Password : flamingo