天天看點

一文帶你識别移動端主流加強的方案1.移動端主流加強2. 移動端加強的詳細分析3.識别移動端加強

文章目錄

  • 1.移動端主流加強
  • 2. 移動端加強的詳細分析
    • 2.1 愛加密加強
    • 2.2梆梆加強
    • 2.3 騰訊樂固
    • 2.4 網易易盾加強
    • 2.5 360加強
    • 2.6 阿裡雲加強
    • 2.7 百度加強
    • 2.8娜迦加強
    • 2.9頂象加強
  • 3.識别移動端加強
    • 3.1 識别檢測的方法
    • 3.2代碼實作

1.移動端主流加強

按照市場使用及推廣目前市面上已經成型并進行銷售的移動端加強主要有:

1.愛加密加強

2.梆梆加強:

3.騰訊樂固

4.網易易盾

5.360加強

6.阿裡雲加強

7.百度加強

8.娜迦加強

9.頂象加強

2. 移動端加強的詳細分析

2.1 愛加密加強

1. 愛加密加強後會出現兩個的Application的入口類,分别為SuperApplication和NativeApplication。
2.APK加強後的入口點會變成 com.shell.SuperApplication
3.加強後會在assets目錄下新增三個檔案分别為:ijiami.dat、ijiami2.dat、ijiami.ajm。
4.加強後悔增加兩個so檔案分别為libexec.so和libexecmain.so。
           

2.2梆梆加強

1.加強後會在Assets的目錄下新增secData0.jar檔案
2.加強後會新增幾個so檔案:libSecShell.so、libSecShell_x86.so、libSecShell_art.so等。
3.加強後apk的入口類變成com.secshell.shellwrapper.SecAppWrapper。
           

2.3 騰訊樂固

1.加強後APK的入口變成com.tencent.StubShell.TxAppEntry
2.加強後lib檔案會新增幾個檔案:liblegudb.so、libshella-2.10.2.3.so、mix.dex。
           

2.4 網易易盾加強

1.加強後libs目錄下會新增個so檔案:libnesec。
           

2.5 360加強

1.加強後apk 的入口點變成:com.stub.StubApp
 2.Assets目錄下會新增幾個so檔案分别诶:libjiagu.so,libjiagu_ls.so,libjiagu_x86.so,libjiagu_art.so。
           

2.6 阿裡雲加強

1.殼的入口點還是為原apk的入口點,不過方法都是被抽取并native的。
2.加強後Assets目錄下會新增一個檔案:libdemolishdata.so
3.加強後libs目錄下會新增一個檔案:libdemolish.so
           

2.7 百度加強

1.加強後apk的入口點變成com.baidu.protect.StubApplication
 2.assets目錄和libs目錄會新增幾個檔案分别為:libbaiduprotect.so、libbaiduprotect_x86.so、libbaiduprotect_art.so、baiduprotect1.jar。
           

2.8娜迦加強

1.加強後libs目錄會新增幾個so檔案分别為:libddog.so、libcdog.so、libfdog.so
           

2.9頂象加強

1.加強後apk的入口點還是原來的入口點,但是全部都變成native的,而且全是在so檔案裡,并利用arm編寫了對應方法。
2.加強後libs目錄下回新增so檔案分别為:libjni.so,libsec.so
           

3.識别移動端加強

3.1 識别檢測的方法

通過直接讀取apk檔案裡面的檔案特征屬性并進行比對,隻要apk裡面有對應的加強特征屬性,那麼就證明該apk被加強了。

3.2代碼實作

以下是用C++實作了讀取apk檔案(apk檔案其實就是個zip檔案)并進行比對的實作代碼

CString CApkScanToolDlg::IsAndroidApkProtect()
{
	CString EncryptType;
	vector<CString>::iterator it;
	UpdateData(FALSE);
	ZipFileData m_zipFiledata;
	m_zipFiledata.GetZipFileData(m_filePath.GetBuffer(m_filePath.GetLength()));
	for(it= m_zipFiledata.m_fileInfo.begin(); it != m_zipFiledata.m_fileInfo.end();it++)
	{
		
		CString ExtenName = GetFileExtenName(*it);
		if("so" == ExtenName || "dex" == ExtenName || "dat" == ExtenName)
		{
			CString temp =GetFileName(*it);
			if("libtup.so"  == temp || "libexec.so" == temp || "libshell.so" == temp  || "mix.dex" == temp)
			{
				EncryptType = "騰訊";
				return EncryptType;
			}
			else if("libsgmain.so"  == temp || "aliprotect.dat" == temp || "libsgsecuritybody.so" == temp || "libmobisec.so" == temp)
			{
				EncryptType = "阿裡聚安全";
				return EncryptType;
			}
			else if("libchaosvmp.so"  == temp || "libddog.so" == temp || "libfdog.so" == temp )
			{
				EncryptType = "娜迦";
				return EncryptType;
			}
			else if("libkwscmm.so" == temp  ||  "libkwscr.so" == temp || "libkwslinker.so" == temp)
			{
				EncryptType = "幾維安全";
				return EncryptType;
			}
			else if("libtosprotection.x86.so"== temp  ||  "libtosprotection.armeabi-v7a.so" == temp || "libtosprotection.armeabi.so" == temp)
			{
				EncryptType = "騰訊禦安全";
				return EncryptType;
			}
			else if("libsecexe.so" == temp  ||  "libtosprotection.armeabi-v7a.so" == temp || "libtosprotection.armeabi.so" == temp)
			{
				EncryptType = "梆梆免費版";
				return EncryptType;
			}
			else if("libDexHelper.so" == temp  ||  "libDexHelper-x86.so" == temp )
			{
				EncryptType = "梆梆企業版";
				return EncryptType;
			}
			else if("libexec.so" == temp  ||  "libexecmain.so" == temp || "ijiami.dat" == temp )
			{
				EncryptType = "愛加密免費版";
				return EncryptType;
			}
			else if("libprotectClass.so" == temp  ||  "libjiagu.so" == temp || "libjiagu_art.so" == temp  || "libjiagu_x86.so" == temp)
			{
				EncryptType = "360";
				return EncryptType;
			}
			else if("libegis.so" == temp  ||  "libNSaferOnly.so" == temp )
			{
				EncryptType = "通付盾";
				return EncryptType;
			}
			else if("ijiami.ajm" == temp )
			{
				EncryptType = "愛加密企業版";
				return EncryptType;
			}
			else if("libedog.so" == temp )
			{
				EncryptType = "娜迦企業版";
				return EncryptType;
			}
			else if("libnqshield.so" == temp )
			{
				EncryptType = "網秦";
				return EncryptType;
			}
			else if("librsprotect.so" == temp )
			{
				EncryptType = "瑞星";
				return EncryptType;
			}
			else if("libbaiduprotect.so" == temp )
			{
				EncryptType = "百度";
				return EncryptType;
			}
			else if("libapssec.so" == temp )
			{
				EncryptType = "盛大加密";
				return EncryptType;
			}
			else if("libx3g.so" == temp )
			{
				EncryptType = "頂像科技";
				return EncryptType;
			}
			else if("libAPKProtect.so" == temp )
			{
				EncryptType = "APKProtect";
				return EncryptType;
			}
			else if("libnesec.so" == temp )
			{
				EncryptType = "網易易盾";
				return EncryptType;
			}
			

		}
		
	}

	EncryptType = "恭喜你這apk檔案沒被加強";
	return EncryptType;
}