[Admin] tierrilopes Posted May 8, 2016 at 05:21 PM Share Posted May 8, 2016 at 05:21 PM Adicionar o ficheiro tmt.h dentro da vossa pasta Extern/include (em anexo) Abrir o ficheiro EterPack/EterPack.cpp Adicionar o seguinte após todos os outros includes: #include "tmt.h" Verificar se no ficheiro StdAfx.h do projecto EterPack existe o seguinte: #include <tchar.h> #include <iterator> #include <sstream> Caso não exista, adicionar. (print em baixo para exemplo) Novamente no ficheiro EterPack/EterPack.cpp, procurar por: static DWORD s_adwEterPackKey[] ={ 45129401, 92367215, 681285731, 1710201,}; static DWORD s_adwEterPackSecurityKey[] ={ 78952482, 527348324, 632942, 486274726,} E substituir por: //EterPackKey int x1 = atoi(std::string(TMTDecrypt("7c667c796f7c637c")).c_str()); int x2 = atoi(std::string(TMTDecrypt("71617e7d617a6278")).c_str()); int x3 = atoi(std::string(TMTDecrypt("7e6b7c796e7d647e7a")).c_str()); int x4 = atoi(std::string(TMTDecrypt("79647c7b647862")).c_str()); //EterPackSecurityKey int l1 = atoi(std::string(TMTDecrypt("7f6b747e647c6b7f")).c_str()); int l2 = atoi(std::string(TMTDecrypt("7d617a786270607f78")).c_str()); int l3 = atoi(std::string(TMTDecrypt("79657e796f7c61")).c_str()); int l4 = atoi(std::string(TMTDecrypt("7c6b7b79617c647f7d")).c_str()); static DWORD s_adwEterPackKey[] ={ x1, x2, x3, x4}; static DWORD s_adwEterPackSecurityKey[] ={ l1, l2, l3, l4}; Compilar o cliente.Para modificar as chaves, ver os tutoriais já presentes no fórum.Para servir de exemplo, os números, primeira linha do EterPackSecurity: 45129401 Correspondem à variável x1, que por sua vez corresponde a: atoi(std::string(TMTDecrypt("7c667c796f7c637c")).c_str()); Sendo que o número encriptado corresponde a: 7c667c796f7c637c Link da ferramenta: TMT Encryptor tmt.h 3 Link to comment
Guest Posted May 8, 2016 at 07:12 PM Share Posted May 8, 2016 at 07:12 PM Vou te dar uns tiros... :kennygun: Sempre complica minha vida. :angry: Agora que ensinou a parte ruim, ensina a parte boa, que é a parte de como faço para descobrir as chaves e dar unpack. Link to comment
Karbust Posted May 8, 2016 at 07:42 PM Share Posted May 8, 2016 at 07:42 PM Obrigado pela partilha Tierri! Vai ajudar muito xD Link to comment
Marco Posted March 23, 2017 at 05:07 PM Share Posted March 23, 2017 at 05:07 PM Vou te dar uns tiros... :kennygun: Sempre complica minha vida. :angry: Agora que ensinou a parte ruim, ensina a parte boa, que é a parte de como faço para descobrir as chaves e dar unpack. 1 Link to comment
Marcos Daniel Posted March 24, 2017 at 09:12 AM Share Posted March 24, 2017 at 09:12 AM Ou seja isto serve para quê podem-me explicar direito? Isto serve para proteger o binário entendi, mas também serve para proteger os ficheiros eix e epk? Link to comment
Marco Posted May 16, 2019 at 04:22 PM Share Posted May 16, 2019 at 04:22 PM Em 24/03/2017 em 09:12, Marcos Daniel disse: Ou seja isto serve para quê podem-me explicar direito? Isto serve para proteger o binário entendi, mas também serve para proteger os ficheiros eix e epk? É para mudar as keys apenas Link to comment
TWIX Posted September 5, 2020 at 01:35 AM Share Posted September 5, 2020 at 01:35 AM Cheers Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now