Just saw a guy needed help. Then realized he didn't anyway just going to post this for anyone who is lost
this is most commonly used on anything that's based off pimpscape or whatever pimpscape was based off of 
if you can't find this in your source then you either don't have encryption or it's encrypted a different way
note: this will corrupt all current account passwords and you will need to change manually or just reset all of them
find
Code:
*PASSWORD ENCRYPTION - IF I EVER NEED A HOST I DON'T NEED TO WORRY ABOUT PW ****!*/
and replace until you get to
Code:
//////END OF ENCRYPTION/////
with this
Code:
/*PASSWORD ENCRYPTION - IF I EVER NEED A HOST I DON'T NEED TO WORRY ABOUT PW ****!*/
//private static String getString( byte[] bytes )
// {
// StringBuffer sb = new StringBuffer();
//for( int i=0; i<bytes.length; i++ )
// {
// byte b = bytes[ i ];
// sb.append( ( int )( 0x00FF & b ) );
//if( i+1 <bytes.length )
// {
// sb.append( "-" );
//}
// }
//return sb.toString();
//}
// private static byte[] getBytes( String str )
// {
// ByteArrayOutputStream bos = new ByteArrayOutputStream();
// StringTokenizer st = new StringTokenizer( str, "-", false );
// while( st.hasMoreTokens() )
// {
// int i = Integer.parseInt( st.nextToken() );
// bos.write( ( byte )i );
//}
// return bos.toByteArray();
//}
//public static String md5( String source )
//{
// try
// {
// MessageDigest md = MessageDigest.getInstance( "MD5" );
//byte[] bytes = md.digest( source.getBytes() );
// return getString( bytes );
//}
//catch( Exception e )
//{
// e.printStackTrace();
//return null;
//}
//}
/////////////////////////////END OF ENCRYPTION/////////////////////////////////////////