Jump to content

Need protection for client !


Recommended Posts

  • Silver

 

check Index hash SHA or better

check mainfolder(game client) pc or pc2 subfolder

check d:/ folder ymir work subfolder

 

how that solve the problem? 

 

 

1)https://docs.python.org/2/library/hashlib.html#module-hashlib

2-3)https://docs.python.org/2/library/os.path.html#os.path.exists --- https://docs.python.org/2/library/os.html#os.rmdir

Link to comment
Share on other sites

  • Silver

 

 

check Index hash SHA or better

check mainfolder(game client) pc or pc2 subfolder

check d:/ folder ymir work subfolder

 

how that solve the problem? 

 

import hashlib, sys, os
hash = hashlib.sha512()

with open(os.getcwd() + "packIndex", 'rb') as afile: hash.update(afile.read())
r = hash.hexdigest()
if not r == "1": # 1 -> hash value
    sys.exit # or app.Exit()

for asd in os.getcwd():
    if asd.find("pc") or asd.find("pc2") or asd.find("ymir work"): sys.exit # or app.Exit()

for bcd in os.listdir("d:/"):
    if bcd.find("ymir work"): sys.exit # or app.Exit()

Hash getter script

import hashlib
ftw, wtf = raw_input("File name (with directory):n"), hashlib.sha512()
with open(ftw, 'rb') as f: wtf.update(f.read())
print wtf.hexdigest()
  • Love 1
Link to comment
Share on other sites

If you purchase Enigma you can hide the eix files in the bin and protect bin from cheat injections at same time. The won't be able to load custom EPK because the EIX data is inside the bin.

Otherwise I could do it for you for a fee, but you won't be able to re-encrypt your client if you were to update or something.

So the best option is to purchase enigma protector. If you can't afford $200 right now you could use my service for $50 and buy it later when you get the chance.

You can find a cracked version of Enigma online but it's old and doesn't support Windows 8 or 8.1, meaning players won't be able to play on that OS.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.