Factorie - KnightCTF 2023
**PoC ** Factorie - Cryptography By @WanZKey
Note: The flag format in the description is wrong, it should be "-" not "**" ** I hope this fixes the description.
Summary: The challenge gives a large number 𝑛 n which is the product of two prime numbers 𝑝 p and 𝑞 q. The goal is to factor 𝑛 n to get 𝑝 p and 𝑞 q, then form a flag with the format: KCTF{small-number-big-number}.
Solution: Based on the question title "Factorie" I assume that by simply factoring the "N" value given we will get this challenge flag, So here I use the factordb [https://factordb.com/] site to factor the N value, and get the 2 prime results. "3xxx and 5xxx", The results of the factors just need to match according to the flag format in the description, congratulations, we have successfully completed this challenge.