Exploring Pico2026 Disko4
Let's dive into the details surrounding Pico2026 Disko4.
- After using virt-copy-out to get a GIT repo from a disk image, use git checkout to get an older version of a file.
- Uses Sleuth Kit from SANS SIFT Workstation (you can download separately and not use a VM) to create a timeline and then view ...
- A one-byte linear feedback shift register is used to encrypt a file. We brute-force the decryption. def steplfsr(lfsr): b7 = (lfsr >> 7) & 1 ...
- LFSR (look this up on Wikipedia) is used to create an AES key. import binascii from Crypto.Cipher import AES initial_state = [0, 0, ...
- Get encrypted exfiltrated data from a PCAP file, then use CyberChef to XOR decode it.
In-Depth Information on Pico2026 Disko4
Find deleted file with fls, mactime and icat. PicoCTF Use virt-ls and virt-copy-out to extract a GIT repo from a disk image, then git log. Uses fls and mactime to create a forensic timeline. icat allows us to view the contents of the identified file.
SQL injection on a website.
That wraps up our extensive overview of Pico2026 Disko4.