Description
Кто получает информацию от агента?
Find out who is the recipient of the information from the agent.
Solution
Germany appeared to be another challenge that seems to contain an unintended way to solve it.
Just like I did when solving Canada – 1n51d3r’5 j0b, I started with the easy approach:
1 2 |
root@kali:~/h4ck1tctf/Germany/solve/CorpUser# grep -iR "h4ck" . Binary file ./AppData/Roaming/Skype/live#3aames.aldrich/main.db matches |
It seemes the file ./AppData/Roaming/Skype/live#3aames.aldrich/main.db contains the string “h4ck”, which is likely to be the flag (all flags have the syntax h4ck1t{flag}). Let’s try to get the exact matching content:
1 2 |
root@kali:~/h4ck1tctf/Germany/solve/CorpUser# strings AppData/Roaming/Skype/live#3aames.aldrich/main.db | grep -i "h4ck" live:black.zogzog blackabauh4ck1t{87e2bc9573392d5f4458393375328cf2}h4ck1t{87e2bc9573392d5f4458393375328cf2}8183ce2902ef71ac62ab02a7c8ec762e6b14e318h4ck1t{87e2bc9573392d5f4458393375328cf2}h4ck1t{87e2bc9573392d5f4458393375328cf2}h4ck1t{87e2bc9573392d5f4458393375328cf2}h4ck1t{87e2bc9573392d5f4458393375328cf2} |
That looks like it! The flag is h4ck1t{87e2bc9573392d5f4458393375328cf2}.
1 Comment