Page 3 of 3

Re: 👨‍💻 Has the MQL encrypting algorithm been cracked?

Posted: Fri Jun 28, 2024 11:07 am
by ChuChu Rocket
wojtek wrote: Fri Jun 28, 2024 1:25 am Moreover, Japanese scientists have developed a medicine
that causes teeth to grow back. Tests from September!

https://www.japantimes.co.jp/news/2023/ ... new-teeth/
Hahahaha what! Stimulate growth of tooth buds. Shit I had no idea we had tooth buds 😆

Re: 👨‍💻 Has the MQL encrypting algorithm been cracked?

Posted: Fri Jun 28, 2024 4:50 pm
by moey_dw
wojtek wrote: Fri Jun 28, 2024 1:25 am Japanese scientists have developed a medicine
that causes teeth to grow back. Tests from September!
😯😯😯

Re: 👨‍💻 Has the MQL encrypting algorithm been cracked?

Posted: Sun Jun 30, 2024 6:06 pm
by ionone
at least one good thing that comes from decompiling is that you can see if there are some shady stuff in the EA

for example in one of them, there is a section that sets params according to the pair used
example:

Code: Select all

if (Symbol() == "EURUSD")
{
   param1 = 1;
   param2 = 234;
   param3 = 1.4;
}
if (Symbol() == "GBPUSD")
{
   param1 = 5;
   param2 = 14;
   param3 = 1.2;
}
etc
so it's a form of curve fitting that isn't reliable

Jeff

Re: 👨‍💻 Has the MQL encrypting algorithm been cracked?

Posted: Mon Jul 01, 2024 9:30 pm
by wojtek
I found the site:

https://x32dbg.com/

with the description
'How to Decompile EX4 TO MQ4 Using Reverse Engineering and Memory Dumping'.
What do you think, does it work?

Re: 👨‍💻 Has the MQL encrypting algorithm been cracked?

Posted: Thu Feb 20, 2025 12:05 pm
by Renko77
Mt4 less security compare to mt5 ,,, i recommend dll security

Re: 👨‍💻 Has the MQL encrypting algorithm been cracked?

Posted: Thu Feb 20, 2025 12:17 pm
by moey_dw
Renko77 wrote: Thu Feb 20, 2025 12:05 pm Mt4 less security compare to mt5 ,,, i recommend dll security
What less security?? Tell me more........

Re: 👨‍💻 Has the MQL encrypting algorithm been cracked?

Posted: Thu Feb 20, 2025 7:49 pm
by Renko77
moey_dw wrote: Thu Feb 20, 2025 12:17 pm What less security?? Tell me more........
Why i said ex4/5 files less secure without dll or any other method,,,,,
Here i just share my experience, few years back i transferred ex4 files to multiple users with simple lock(date expiry ) and very next morning one person send me screenshot with code, he cracked.

Re: 👨‍💻 Has the MQL encrypting algorithm been cracked?

Posted: Thu Feb 20, 2025 7:57 pm
by boytoy
Renko77 wrote: Thu Feb 20, 2025 7:49 pm Why i said ex4/5 files less secure without dll or any other method,,,,,
Here i just share my experience, few years back i transferred ex4 files to multiple users with simple lock(date expiry ) and very next morning one person send me screenshot with code, he cracked.
I think what you mean is EX5 files are more secure than EX4 in terms of decompiling / cracking, right? I do agree!