| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- # coding:utf8
- __author__ = 'dong'
- import os
- import logging
- import xml.dom.minidom
- import re
- import shutil
- import glob
- from xml.etree.ElementTree import ElementTree, Element
- import distutils.dir_util
- import gw_file_system
- import gw_data_center
- import gw_apk_tool
- def script_init(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo):
- sdk_id = channelSdkInfo['id']
- if sdk_id == "512":
- gw_data_center.pack_small = False
- if sdk_id == "549":
- gw_data_center.pack_small = False
- gw_apk_tool.__apk_tool__ = 'apktool_2.6.0.jar'
- def script_first(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo):
- return
- def script(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo):
- return
- def script_last(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo):
- sdk_id = channelSdkInfo['id']
- if sdk_id == "597":
- # f_idx = 3
- # tmp = gw_file_system.get_full_path(os.path.join(decompileDir, 'smali_classes%d' % f_idx))
- # tmp = tmp.replace('\\', '/')
- # tmp = re.sub('/+', '/', tmp)
- # androidx = tmp + '/androidx'
- #
- # if os.path.exists(androidx):
- # new_dex_dir = create_mutil_smali(decompileDir)
- # move_package(tmp, new_dex_dir, ["androidx"])
- #
- move_androidx(decompileDir,"smali_classes3")
- move_androidx(decompileDir,"smali_classes4")
- # endwhile
- if sdk_id == "549" or sdk_id == "591":
- f_idx = 5
- # while True:
- tmp = gw_file_system.get_full_path(os.path.join(decompileDir, 'smali_classes%d' % f_idx))
- tmp = tmp.replace('\\', '/')
- tmp = re.sub('/+', '/', tmp)
- androidx = tmp + '/com/netease'
- if os.path.exists(androidx):
- new_dex_dir = create_mutil_smali(decompileDir)
- dst = new_dex_dir + '/com/netease'
- move_package(androidx, dst, ["pharos", "stzb", "unisdk"])
- # break
- # if not os.path.exists(tmp):
- # break
- return
- def create_mutil_smali(decompileDir):
- f_idx = 2
- while True:
- tmp = gw_file_system.get_full_path(os.path.join(decompileDir, 'smali_classes%d' % f_idx))
- tmp = tmp.replace('\\', '/')
- tmp = re.sub('/+', '/', tmp)
- if os.path.exists(tmp):
- f_idx += 1
- else:
- smali_classes2_dir = tmp
- break
- # endwhile
- os.mkdir(smali_classes2_dir)
- return smali_classes2_dir
- def move_package(s1, s3, list_package):
- for d in list_package:
- src = os.path.join(s1, d)
- if os.path.exists(src):
- dst = os.path.join(s3, d)
- distutils.dir_util.copy_tree(src, dst)
- distutils.dir_util.remove_tree(src)
- def is_reverse_qihoo(file):
- with open(file, 'r+') as f:
- file_str = f.read()
- if 'KFSDK' in file_str:
- return True
- else:
- return False
- def replace_init_code(decompileDir):
- smali_files = glob.glob(os.path.join(decompileDir, 'smali*/com/qihoo/'))
- if len(smali_files) >= 1:
- iter_smali = iter(smali_files)
- while True:
- try:
- qihoo_file_path = iter_smali.next()
- file = os.path.join(qihoo_file_path, 'gamecenter/sdk/matrix/Matrix.smali')
- if os.path.exists(file):
- logging.info('Matrix exits in %s' % qihoo_file_path)
- if is_reverse_qihoo(file):
- with open(file, 'r+') as f:
- cont = f.read()
- change_str = '0x82c'
- str = '0x82b'
- cont = cont.replace(change_str, str)
- logging.info('replace_str: ' + cont)
- with open(file, 'w+') as tf:
- tf.write(cont)
- except StopIteration:
- break
- def replace_application(extract_dir):
- goal_file = os.path.join(extract_dir, 'smali_classes3/com/lilithgame/sgame/wxapi/QihooApplication.smali')
- print(os.path.isfile(goal_file))
- if os.path.isfile(goal_file):
- logging.info('method_proceed: ' + 'goal_file')
- print(goal_file)
- with open(goal_file, 'r+') as f:
- cont = f.read()
- change_str = 'Landroid/support/multidex/MultiDexApplication'
- str = 'Lcom/kf/framework/KFApplication'
- cont = cont.replace(change_str, str)
- logging.info('replace_str: ' + cont)
- with open(goal_file, 'w+') as tf:
- tf.write(cont)
- # 移动androidx
- def move_androidx(decompileDir, smali_dir):
- s1 = os.path.join(decompileDir, smali_dir, "androidx")
- if os.path.exists(s1):
- smali_classes2_dir = create_mutil_smali(decompileDir)
- s3 = os.path.join(smali_classes2_dir, "androidx")
- if not os.path.exists(s3):
- distutils.dir_util.mkpath(s3)
- move_package(s1, s3, ["activity", "annotation", "appcompat", "arch", "asynclayoutinflater", "browser"])
- s1 = os.path.join(decompileDir, smali_dir, "androidx")
- if os.path.exists(s1):
- smali_classes2_dir = create_mutil_smali(decompileDir)
- s3 = os.path.join(smali_classes2_dir, "androidx")
- if not os.path.exists(s3):
- distutils.dir_util.mkpath(s3)
- move_package(s1, s3,
- ["tracing", "transition", "vectordrawable", "versionedparcelable", "viewpager", "viewpager2",
- "webkit", "work"])
- s1 = os.path.join(decompileDir, smali_dir, "androidx")
- if os.path.exists(s1):
- smali_classes2_dir = create_mutil_smali(decompileDir)
- s3 = os.path.join(smali_classes2_dir, "androidx")
- if not os.path.exists(s3):
- distutils.dir_util.mkpath(s3)
- move_package(s1, s3, ["cardview", "collection", "concurrent", "constraintlayout", "coordinatorlayout", "core",
- "cursoradapter", "customview", "documentfile", "drawerlayout", "dynamicanimation"])
- s1 = os.path.join(decompileDir, smali_dir, "androidx")
- if os.path.exists(s1):
- smali_classes2_dir = create_mutil_smali(decompileDir)
- s3 = os.path.join(smali_classes2_dir, "androidx")
- if not os.path.exists(s3):
- distutils.dir_util.mkpath(s3)
- move_package(s1, s3, ["emoji2", "fragment", "inspection", "interpolator"])
- s1 = os.path.join(decompileDir, smali_dir, "androidx")
- if os.path.exists(s1):
- smali_classes2_dir = create_mutil_smali(decompileDir)
- s3 = os.path.join(smali_classes2_dir, "androidx")
- if not os.path.exists(s3):
- distutils.dir_util.mkpath(s3)
- move_package(s1, s3, ["print", "recyclerview", "resourceinspection", "room", "savedstate", "security",
- "slidingpanelayout", "sqlite", "startup", "swiperefreshlayout"])
- s1 = os.path.join(decompileDir, smali_dir, "androidx")
- if os.path.exists(s1):
- smali_classes2_dir = create_mutil_smali(decompileDir)
- s3 = os.path.join(smali_classes2_dir, "androidx")
- if not os.path.exists(s3):
- distutils.dir_util.mkpath(s3)
- move_package(s1, s3, ["media", "multidex", "navigation"])
- s1 = os.path.join(decompileDir, smali_dir, "androidx")
- if os.path.exists(s1):
- smali_classes2_dir = create_mutil_smali(decompileDir)
- s3 = os.path.join(smali_classes2_dir, "androidx")
- if not os.path.exists(s3):
- distutils.dir_util.mkpath(s3)
- move_package(s1, s3, ["legacy", "lifecycle", "loader", "localbroadcastmanager"])
- # androidx 移动完毕
- if __name__ == '__main__':
- replace_init_code("D:\work\lyjymb")
|