| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- # coding:utf8
- __author__ = '极无双'
- import os
- import logging
- import xml.dom.minidom
- import re
- import shutil
- import glob
- def script_second(workspace_sdk_dir, extract_dir, channel_sdk_info, new_game_channel_info, game_info):
- logging.info('script_second: ' + str(channel_sdk_info))
- # 逆向渠道id
- public_xml = os.path.join(extract_dir, "res/values/drawables.xml")
- handle_public_xml(public_xml, "APKTOOL")
- return
- def script(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo):
- # logging.info('------------SDK:'+SDK)
- # logging.info('------------decompileDir:'+decompileDir)
- # logging.info('------------channelSdkInfo:'+str(channelSdkInfo))
- # logging.info('------------new_game_channel_info:'+str(new_game_channel_info))
- # logging.info('------------gameInfo:'+str(gameInfo))
- # logging.info("------rm baidu smali------")
- # restdir = decompileDir+"/"+"smali_classes2/com/baidu/gamesdk"
- # if os.path.exists(restdir):
- # shutil.rmtree(restdir)
- # s3 = decompileDir + "/smali_classes3"
- logging.info('------------channelSdkInfo:' + str(channelSdkInfo))
- if channelSdkInfo['SDKName'] == 'reverseforkupai':
- del_coolcloud(decompileDir)
- if channelSdkInfo['id'] == '549':
- replace_life_method(decompileDir)
- def replace_life_method(extract_dir):
- goal_file = glob.glob(os.path.join(extract_dir, 'smali*/com/taiyouxi/a3k/MainActivity.smali'))[0]
- goal_file1 = glob.glob(os.path.join(extract_dir, 'smali*/com/yog/kothoth/utils/RequestParamUtil.smali'))[0]
- goal_file2 = glob.glob(os.path.join(extract_dir, 'smali*/com/yog/kothoth/data/JsonResult.smali'))[0]
- 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 = '.method protected onResume()V'
- str = '.method public onResume()V\n' \
- 'invoke-static {}, Lcom/kf/framework/SDKPluginWrapper;->onResume()V'
- cont = cont.replace(change_str, str)
- change_str_1 = '.method protected onPause()V'
- str_1 = '.method public onPause()V\n' \
- 'invoke-static {}, Lcom/kf/framework/SDKPluginWrapper;->onPause()V'
- cont = cont.replace(change_str_1, str_1)
- logging.info('replace_str: ' + cont)
- with open(goal_file, 'w+') as tf:
- tf.write(cont)
- if os.path.isfile(goal_file1):
- logging.info('method_proceed: ' + 'goal_file1')
- print(goal_file1)
- with open(goal_file1, 'r+') as f:
- cont = f.read()
- change_str = 'Lcom/hjr/gameplatform/aes/AESUtil'
- str = 'Lcom/kf/framework/util/AESUtil'
- cont = cont.replace(change_str, str)
- logging.info('replace_str: ' + cont)
- with open(goal_file1, 'w+') as tf:
- tf.write(cont)
- if os.path.isfile(goal_file2):
- logging.info('method_proceed: ' + 'goal_file2')
- print(goal_file2)
- with open(goal_file2, 'r+') as f:
- cont = f.read()
- change_str = 'Lcom/hjr/gameplatform/aes/AESUtil'
- str = 'Lcom/kf/framework/util/AESUtil'
- cont = cont.replace(change_str, str)
- logging.info('replace_str: ' + cont)
- with open(goal_file2, 'w+') as tf:
- tf.write(cont)
- def is_reverse_coolcloud(file):
- with open(file, 'r+') as f:
- file_str = f.read()
- if 'KFSDK' in file_str:
- return True
- else:
- return False
- def del_coolcloud(decompileDir):
- smali_files = glob.glob(os.path.join(decompileDir, 'smali*/com/coolcloud/'))
- if len(smali_files) > 1:
- iter_smali = iter(smali_files)
- while True:
- try:
- coolcloud_file_path = iter_smali.next()
- file = os.path.join(coolcloud_file_path, 'uac/android/api/Coolcloud.smali')
- if os.path.exists(file):
- logging.info('Coolcloud exits in %s' % coolcloud_file_path)
- if not is_reverse_coolcloud(file):
- logging.info("delete coolcloud in %s" % coolcloud_file_path)
- shutil.rmtree(coolcloud_file_path)
- else:
- pass
- else:
- logging.info('Coolcloud not exits in %s' % coolcloud_file_path)
- shutil.rmtree(coolcloud_file_path)
- except StopIteration:
- break
- def handle_public_xml(public_xml_path, remove_node):
- if not os.path.exists(public_xml_path):
- logging.info('public_xml is null: ' + public_xml_path)
- return
- new_lines = []
- with open(public_xml_path, 'r+') as f:
- for line in f.readlines():
- # l = line.strip()
- if line.find(remove_node) > -1:
- continue
- new_lines.append(line)
- f.seek(0)
- f.truncate()
- f.writelines(new_lines)
- return
- if __name__ == '__main__':
- replace_life_method("D:\\work\\jws")
|