images/7-1.png

the encryption system is available via encrypt.php

images/7-2.png

for funsies, i typed ‘abc123’ into the encryption box and received the following

images/7-3.png

this is following a clear encryption scheme; first letter unchanged, second bumped up one, third bumped up two, fourth bumped up three, fifth bumped up four, sixth bumped up five and so on.... i'm not sure how exactly symbols would be handled, though. anyway... since we have the pre-encrypted password, we would be subtracting from these places instead of adding; therefore, 222hi=h@ = 210ee=b@ WITHOUT transforming the respective symbols. i did some digging and found an ASCII conversion chart.

images/7-4.png

using this i was able to transform each character of the encrypted password and wound up with 210ee8b9.

solved.