search
HomeBackend DevelopmentPHP TutorialHow to automatically extract apk package information after php uploads apk (example download)_PHP tutorial
How to automatically extract apk package information after php uploads apk (example download)_PHP tutorialJul 21, 2016 pm 03:12 PM
apkphpuploaddownloaduseinformationDocompanyBagbackextractofExampleFirstautomaticEnterproject

The first project after entering the company is to do marketing. So you need to upload APK software and the like in the background. For convenience, after uploading the APK, the system automatically extracts relevant information of the APK file, such as: apk package name, product name, version information, APK Code, program size, ICON, etc. initial treatment

Get the cmdAfter.xml file through the command: java -jar AXMLPrinter2.jar AndroidManifest.xml > cmdAfter.xml
, and then analyze the cmdAfter.xml file to obtain relevant information.

But unfortunately, the apk package name can be obtained from this file, but the ico icon file name and other related information cannot be obtained. As shown in the picture below

In the above picture, labels, icons, etc. are all flag values, and the required results cannot be obtained directly. I once analyzed the relationship between this value and the internal files of the APK file, but different APKs have different structures and it is too troublesome to implement. In fact, on some websites such as the Android Market, when you upload an APK, in addition to extracting the APK package name, it also includes ICON icon, size and other information. So since someone else can do it, I figured there must be a way around this. So after research, the expected results were obtained. I will record the method here and welcome exchanges.

Core extraction APK information code
Copy code The code is as follows:

  /***
   * 分析已上传的APK文件,提取所需要的数据
   */
  function upAPK(){
    global $_config_product_apktool_count;//使用apktool.jar解压的次数,原因下面有说明。
    if($this->msg!='')return;//如果有错误,返回
    $dir=$this->upload_path;//上传路径
    $stringsXML_exists=false;
    if(file_exists($dir.'package/res/values/strings.xml'))unlink($dir.'package/res/values/strings.xml');
    for($i=0;$i      //针对UC的APK包或其类似的APK包,解压一次并不能完全得到strings.xml文件或相关文件。目前只有采用这个办法了。
      //在系统cmd下直接使用java -jar ...执行解压,有时可以得到strings.xml文件,有时也得不到,不知道是不是jar包的问题。
      exec('java -jar ../apktool.jar d -f '.$this->tmpFile.' '.$dir.'package');//注释:解压完毕再往下执行
      $stringsXML_exists=file_exists($dir.'package/res/values/strings.xml');
    }
    //检查AndroidManifest.xml文件是否存在,如果不存在,则不是合法的APK文件
    if(!file_exists($dir.'package/AndroidManifest.xml')){$this->msg='不是合法的APK文件,请重新上传!';return;}
    $AndroidManifestXML=file_get_contents($dir.'package/AndroidManifest.xml');//读取AndroidManifest.xml

    if(preg_match('/package=\"([^\"]*)\"/i',$AndroidManifestXML,$package))$returnVal['package']=$package[1];//如果有包名,返回到数组

    //增加versionCode
    if(preg_match('/versionCode=\"([^\"]*)\"/i',$AndroidManifestXML,$versionCode))$returnVal['versionCode']=$versionCode[1];//如果有版本代码,返回到数组

    //检测到包名后判断数据库中是否已经存在。
    if($this->id==0){//添加新产品时检测,修改产品不检测
      if($returnVal['package']!=''){
        $sql='select id from product where package='.SqlEncode($package[1]);
        $result=mysql_query($sql);
        if(mysql_num_rows($result)>0){
          $this->msg='该APK已经存在,请更换!';
          return;
        }
      }else{
        $this->msg='系统无法检测该APK信息,请联系管理员!';
        return;
      }
    }

if($stringsXML_exists)$stringXML=file_get_contents($dir.'package/res/values/strings.xml');//If there is strings.xml, read the strings.xml file
if(preg_match( '/versionName="([^"]*)"/i',$AndroidManifestXML,$ver))$returnVal['ver']=$ver[1];//If there is a version number, return it to the array
//There are currently two types of version numbers: 1. The version number is listed directly in AndroidManifest.xml; it can be extracted through the above regular rules
//2. The version number is the same as the label and is placed in strings.xml In the file
//2011-11-23 add
if($stringXML!='' && strstr($ver[1],'@')){
if(preg_match('/^@ string/(.*)/i',$ver[1],$findVer)){
If(preg_match('/([ ^/',$stringXML,$a))$returnVal['ver']=$a[1];
}
}
//// ////////////////////////////////////////
if(preg_match('/< ;application[sS]*? android:icon="@drawable/([^"]*)"/i',$AndroidManifestXML,$icon))$returnVal['thumbimg']=$icon[1];// If there is an icon, return to the array
if($stringsXML_exists && preg_match('/ if(preg_match('/([^/',$stringXML ,$name)){
$returnVal['name']=$name[1];//If there is a product name, return to the array
/**
Baidu: strings.xml
Special case 1: " Pocket Baidu "
*/
$returnVal[ 'name']=preg_replace('/s|"/','',$returnVal['name']);
}
}
//$this->msg=$returnVal[ 'package'].'--'.$returnVal['ver'].'--'.$returnVal['thumbimg'].'--'.$returnVal['name'];
if($ this->oldAPK!=''){//Re-upload will delete the original apk file and icon.png picture
unlink($dir.$this->oldAPK);
unlink($dir.$ this->oldAPK.'.png');
}
//Traverse the directories under the package/res directory [drawable|drawable-hdpi|drawable-nodpi|drawable-ldpi|drawable-mdpi]
//The system takes the icon with the largest icon size
$tmpArr[0]=0;$tmpArr[1]=0;$tmpArr[2]='drawable';
$dirs=opendir($dir. 'package/res');
while(($file=readdir($dirs))){
preg_match('/(drawable(-.*?dpi)?)/i',$file,$ drawable_folder);
$iconPath=$dir.'package/res/'.$drawable_folder[1].'/'.$returnVal['thumbimg'].'.png';
if(file_exists($ iconPath)){
$iconInfo=getimagesize($iconPath);
if($iconInfo[0]>$tmpArr[0] && $iconInfo[1]>$tmpArr[1]){
             $tmpArr[0]=$iconInfo[0];$tmpArr[1]=$iconInfo[1];$tmpArr[2]=$drawable_folder[1]; 🎜> //$this->msg=$iconInfo[0].'---'.$iconInfo[1];
closedir($dirs);
if(rename($dir.'package /res/'.$tmpArr[2].'/'.$returnVal['thumbimg'].'.png',$dir.$this->iframe_key.'.apk.png')){//Found directory and successfully moved
$returnVal['thumbimg']=$this->iframe_key.'.apk.png';
}
if(!move_uploaded_file($this->tmpFile,$dir .$this->iframe_key.'.apk')){$this->msg='Upload failed! ';return;}//Transfer apk file
$returnVal['filename']=$this->iframe_key.'.apk';
$returnVal['size']=$this->size ;
$this->result=$returnVal;
}


Extraction information process

1. First, extract the package/res/values/string.xml file in the apk file through the apktool.jar command. For some unknown reason, when releasing the apk file, sometimes the string.xml file is not necessarily obtained. Therefore, the background adds: $_config_product_apktool_count parameter to control the maximum number of releases.

2. Read the AndroidManifest.xml file in the release root directory. From this file, you can get the APK package name and version information.

3. Check whether the package name exists in the database if it is a newly uploaded APK. It is forbidden to upload APKs with the same package name. Modification is not detected.

4. Obtain the required information through regular expressions.

Why do we need to extract the string.xml file here?

Because not all information is in AndroidManifest.xml. Some information is only used as a "reference" in AndroidManifest.xml, and the actual record is in string.xml. For example

The values ​​of Label and icon in AndroidManifest.xml.

In the above picture: label="@string/app_name" indicates that the name attribute of string in string.xml is the value of app_name, which is the "software name" of the APK. Here is the "Market", as shown in the figure below Display:

@drawable/quickflick_icon, indicating that quickflick_icon is the file name of ICON.

Due to special needs, I need to find the largest ICON icon, see the code below:

Copy code The code is as follows:

//Traverse the directories under the package/res directory [drawable|drawable-hdpi|drawable-nodpi|drawable-ldpi|drawable-mdpi]
//The system takes the icon with the largest icon size
$tmpArr[0] =0;$tmpArr[1]=0;$tmpArr[2]='drawable';
$dirs=opendir($dir.'package/res');
while(($file=readdir( $dirs))){
preg_match('/(drawable(-.*?dpi)?)/i',$file,$drawable_folder);
$iconPath=$dir.'package/res/' .$drawable_folder[1].'/'.$returnVal['thumbimg'].'.png';
If(file_exists($iconPath)){
$iconInfo=getimagesize($iconPath);
If($iconInfo[0]>$tmpArr[0] && $iconInfo[1]>$tmpArr[1]){
$tmpArr[0]=$iconInfo[0];$tmpArr[1] =$iconInfo[1];$tmpArr[2]=$drawable_folder[1];
}
}
}
//$this->msg=$iconInfo[0].' ---'.$iconInfo[1];
closedir($dirs);

After analysis, ICON icons are generally stored in the following directories in APK: drawable|drawable-hdpi|drawable-nodpi|drawable-ldpi|drawable-mdpi. The largest ICON icon is obtained through traversal comparison and moved to the temporary Table of contents.

Save all the information that needs to be extracted into an array and write it to the form through javascript. As shown below:

Extract APK information summary

The above code, so far, can extract information normally from the uploaded APK, and no errors have been found. We can also see in the comments of the above code that information cannot be extracted about the "Pocket Baidu" APK because of its special processing method, namely: " Pocket Baidu " string>, he added double quotes in the name, which is considered a special case. I have not found more special cases yet, so there may be special cases that require analysis of the APK data and special processing in the program.

In implementing this APK extraction function, the key is to find the organizational rules of the APK package. Only by finding the rules, program implementation is a natural thing.

Pay attention to the content when releasing the APK file

exec('java -jar ../apktool.jar d -f '.$this->tmpFile.' '.$dir.'package');

To successfully execute the above statement, the following conditions must be met:

1. Install the java package. For the java directory, the permissions of the users group are: read and run, list folder directories, and read

2. cmd.exe file, the permissions of the users user group are: read and run, read

3. PHP allows calling exec

4. Make sure the upload directory has permission to write files

If there is a better extraction method, welcome to communicate and learn from each other.

PHP extracts APK information DEMO demo download

Download address: http://xiazai.jb51.net/201304/yuanma/php_apk_jb51net.rar

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/326771.htmlTechArticleThe first project when entering the company is to do marketing. So you need to upload APK software and the like in the background. For convenience, after uploading the APK, the system automatically extracts the relevant information of the APK file, such as: apk package name...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software