You can write a c++ application if you know c++
Get all the imiges in one folder and then run a loop that runs through each file with the help of this
http://www.ozzu.com/programming-forum/directory-listing-t42574.html
Then rename the files using a c++ function rename(oldname, newname);
oldname, for example, will be 300_03e05a1f5fb83bc113edaa898b2c46f3.jpg
and new name will be
string newname = "";
newname += oldname.substr(4, oldname.length() - 4);`
documentation on rename - .http://www.cplusplus.com/reference/clibrary/cstdio/rename/
another solution - http://wfco.de/macosx/Renamer4Mac