├── AndroidKiller_v1.3.1 ├── .gitignore ├── AKCommon.bpl ├── AndroidKiller.exe ├── bin │ ├── adb │ │ ├── AdbWinApi.dll │ │ ├── AdbWinUsbApi.dll │ │ ├── adb.exe │ │ └── busybox │ ├── apktool │ │ ├── ap.bat │ │ ├── ap.jar │ │ ├── apktool.bat │ │ ├── apktool.ini │ │ ├── apktool │ │ │ └── ShakaApktool.jar │ │ ├── jad.exe │ │ ├── keyver.bat │ │ ├── keyver.jar │ │ ├── signapk.bat │ │ ├── signapk.jar │ │ ├── testkey.pk8 │ │ └── testkey.x509.pem │ ├── dex2jar │ │ ├── d2j-baksmali.bat │ │ ├── d2j-dex-recompute-checksum.bat │ │ ├── d2j-dex2jar.bat │ │ ├── d2j-dex2smali.bat │ │ ├── d2j-jar2dex.bat │ │ ├── d2j-jar2jasmin.bat │ │ ├── d2j-jasmin2jar.bat │ │ ├── d2j-smali.bat │ │ ├── d2j-std-apk.bat │ │ ├── d2j_invoke.bat │ │ └── lib │ │ │ ├── antlr-runtime-3.5.jar │ │ │ ├── asm-debug-all-4.1.jar │ │ │ ├── d2j-base-cmd-2.0.jar │ │ │ ├── d2j-jasmin-2.0.jar │ │ │ ├── d2j-smali-2.0.jar │ │ │ ├── dex-ir-2.0.jar │ │ │ ├── dex-reader-2.0.jar │ │ │ ├── dex-reader-api-2.0.jar │ │ │ ├── dex-tools-2.0.jar │ │ │ ├── dex-translator-2.0.jar │ │ │ ├── dex-writer-2.0.jar │ │ │ └── dx-1.7.jar │ └── jd-gui │ │ ├── jd-gui.cfg │ │ └── jd-gui.exe ├── cfgs │ ├── codecolor.ini │ ├── codecomp.cfg │ ├── externaltools.ini │ ├── injectcode │ │ ├── LoadLibrary │ │ │ ├── code │ │ │ └── info │ │ ├── Log │ │ │ ├── code │ │ │ ├── files │ │ │ │ └── smali │ │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── killer │ │ │ │ │ └── Log.smali │ │ │ └── info │ │ └── Toast │ │ │ ├── code │ │ │ └── info │ ├── keystore │ │ └── androidkiller.keystore │ ├── lang │ │ ├── English.xml │ │ ├── English_codetip.cfg │ │ ├── English_permission.cfg │ │ ├── 简体中文.xml │ │ ├── 简体中文_codetip.cfg │ │ └── 简体中文_permission.cfg │ ├── logtaghistory.cfg │ ├── searchhistory.cfg │ ├── signs │ │ └── AndroidKiller.ini │ └── ymlkeywords.cfg ├── configs.ini ├── lua5.3.0.dll ├── plugins │ ├── APKKiller.ProcInfo.bpl │ ├── APKKiller.bpl │ └── FakeEnc.bpl ├── rtl230.bpl └── vcl230.bpl ├── README.md ├── U3DResViewer_v1.0_win └── U3DResViewer.exe ├── apktool2.0.0 ├── aapt.exe ├── apktool.bat └── apktool.jar ├── dex2jar-2.0 ├── d2j-baksmali.bat ├── d2j-baksmali.sh ├── d2j-dex-recompute-checksum.bat ├── d2j-dex-recompute-checksum.sh ├── d2j-dex2jar.bat ├── d2j-dex2jar.sh ├── d2j-dex2smali.bat ├── d2j-dex2smali.sh ├── d2j-jar2dex.bat ├── d2j-jar2dex.sh ├── d2j-jar2jasmin.bat ├── d2j-jar2jasmin.sh ├── d2j-jasmin2jar.bat ├── d2j-jasmin2jar.sh ├── d2j-smali.bat ├── d2j-smali.sh ├── d2j-std-apk.bat ├── d2j-std-apk.sh ├── d2j_invoke.bat ├── d2j_invoke.sh └── lib │ ├── antlr-runtime-3.5.jar │ ├── asm-debug-all-4.1.jar │ ├── d2j-base-cmd-2.0.jar │ ├── d2j-jasmin-2.0.jar │ ├── d2j-smali-2.0.jar │ ├── dex-ir-2.0.jar │ ├── dex-reader-2.0.jar │ ├── dex-reader-api-2.0.jar │ ├── dex-tools-2.0.jar │ ├── dex-translator-2.0.jar │ ├── dex-writer-2.0.jar │ └── dx-1.7.jar ├── jadx-0.6.1-dev-build226 ├── LICENSE ├── NOTICE ├── README.md ├── bin │ ├── jadx │ ├── jadx-gui │ ├── jadx-gui.bat │ └── jadx.bat └── lib │ ├── android-5.1.jar │ ├── annotations-12.0.jar │ ├── asm-5.0.3.jar │ ├── cloning-1.9.2.jar │ ├── commons-io-2.4.jar │ ├── dx-1.10.jar │ ├── gson-2.3.1.jar │ ├── image-viewer-1.2.3.jar │ ├── jadx-cli-0.6.1-dev-build226.jar │ ├── jadx-core-0.6.1-dev-build226.jar │ ├── jadx-gui-0.6.1-dev-build226.jar │ ├── jcommander-1.47.jar │ ├── jfontchooser-1.0.5.jar │ ├── logback-classic-1.1.2.jar │ ├── logback-core-1.1.2.jar │ ├── objenesis-2.1.jar │ ├── rsyntaxtextarea-2.5.8.jar │ └── slf4j-api-1.7.10.jar ├── jd-gui-windows-1.4.0 ├── LICENSE ├── NOTICE ├── README.md └── jd-gui.exe └── preview ├── apkkill1.png └── apkkill2.png /AndroidKiller_v1.3.1/.gitignore: -------------------------------------------------------------------------------- 1 | /projects -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/AKCommon.bpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/AKCommon.bpl -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/AndroidKiller.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/AndroidKiller.exe -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/adb/AdbWinApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/adb/AdbWinApi.dll -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/adb/AdbWinUsbApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/adb/AdbWinUsbApi.dll -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/adb/adb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/adb/adb.exe -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/adb/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/adb/busybox -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/apktool/ap.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | java -jar "%~dp0\ap.jar" %1 -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/apktool/ap.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/apktool/ap.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/apktool/apktool.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | if "%PATH_BASE%" == "" set PATH_BASE=%PATH% 3 | set PATH=%CD%;%PATH_BASE%; 4 | java -jar "%~dp0\apktool\ShakaApktool.jar" %1 %2 %3 %4 %5 %6 %7 %8 %9 5 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/apktool/apktool.ini: -------------------------------------------------------------------------------- 1 | [apktool] 2 | count=1 3 | name0=Android Killer Default APKTOOL 4 | path0=ShakaApktool.jar 5 | param0= 6 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/apktool/apktool/ShakaApktool.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/apktool/apktool/ShakaApktool.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/apktool/jad.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/apktool/jad.exe -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/apktool/keyver.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | java -jar "%~dp0\keyver.jar" %1 %2 %3 %4 -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/apktool/keyver.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/apktool/keyver.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/apktool/signapk.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | java -jar "%~dp0\signapk.jar" "%~dp0\testkey.x509.pem" "%~dp0\testkey.pk8" %1 %2 -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/apktool/signapk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/apktool/signapk.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/apktool/testkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/apktool/testkey.pk8 -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/apktool/testkey.x509.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE----- 2 | MIIEqDCCA5CgAwIBAgIJAJNurL4H8gHfMA0GCSqGSIb3DQEBBQUAMIGUMQswCQYD 3 | VQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4g 4 | VmlldzEQMA4GA1UEChMHQW5kcm9pZDEQMA4GA1UECxMHQW5kcm9pZDEQMA4GA1UE 5 | AxMHQW5kcm9pZDEiMCAGCSqGSIb3DQEJARYTYW5kcm9pZEBhbmRyb2lkLmNvbTAe 6 | Fw0wODAyMjkwMTMzNDZaFw0zNTA3MTcwMTMzNDZaMIGUMQswCQYDVQQGEwJVUzET 7 | MBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEQMA4G 8 | A1UEChMHQW5kcm9pZDEQMA4GA1UECxMHQW5kcm9pZDEQMA4GA1UEAxMHQW5kcm9p 9 | ZDEiMCAGCSqGSIb3DQEJARYTYW5kcm9pZEBhbmRyb2lkLmNvbTCCASAwDQYJKoZI 10 | hvcNAQEBBQADggENADCCAQgCggEBANaTGQTexgskse3HYuDZ2CU+Ps1s6x3i/waM 11 | qOi8qM1r03hupwqnbOYOuw+ZNVn/2T53qUPn6D1LZLjk/qLT5lbx4meoG7+yMLV4 12 | wgRDvkxyGLhG9SEVhvA4oU6Jwr44f46+z4/Kw9oe4zDJ6pPQp8PcSvNQIg1QCAcy 13 | 4ICXF+5qBTNZ5qaU7Cyz8oSgpGbIepTYOzEJOmc3Li9kEsBubULxWBjf/gOBzAzU 14 | RNps3cO4JFgZSAGzJWQTT7/emMkod0jb9WdqVA2BVMi7yge54kdVMxHEa5r3b97s 15 | zI5p58ii0I54JiCUP5lyfTwE/nKZHZnfm644oLIXf6MdW2r+6R8CAQOjgfwwgfkw 16 | HQYDVR0OBBYEFEhZAFY9JyxGrhGGBaR0GawJyowRMIHJBgNVHSMEgcEwgb6AFEhZ 17 | AFY9JyxGrhGGBaR0GawJyowRoYGapIGXMIGUMQswCQYDVQQGEwJVUzETMBEGA1UE 18 | CBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEQMA4GA1UEChMH 19 | QW5kcm9pZDEQMA4GA1UECxMHQW5kcm9pZDEQMA4GA1UEAxMHQW5kcm9pZDEiMCAG 20 | CSqGSIb3DQEJARYTYW5kcm9pZEBhbmRyb2lkLmNvbYIJAJNurL4H8gHfMAwGA1Ud 21 | EwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAHqvlozrUMRBBVEY0NqrrwFbinZa 22 | J6cVosK0TyIUFf/azgMJWr+kLfcHCHJsIGnlw27drgQAvilFLAhLwn62oX6snb4Y 23 | LCBOsVMR9FXYJLZW2+TcIkCRLXWG/oiVHQGo/rWuWkJgU134NDEFJCJGjDbiLCpe 24 | +ZTWHdcwauTJ9pUbo8EvHRkU3cYfGmLaLfgn9gP+pWA7LFQNvXwBnDa6sppCccEX 25 | 31I828XzgXpJ4O+mDL1/dBd+ek8ZPUP0IgdyZm5MTYPhvVqGCHzzTy3sIeJFymwr 26 | sBbmg2OAUNLEMO6nwmocSdN2ClirfxqCzJOLSDE4QyS9BAH6EhY6UFcOaE0= 27 | -----END CERTIFICATE----- 28 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/d2j-baksmali.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.d2j.smali.BaksmaliCmd %* 22 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/d2j-dex-recompute-checksum.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.dex2jar.tools.DexRecomputeChecksum %* 22 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/d2j-dex2jar.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.dex2jar.tools.Dex2jarCmd %* 22 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/d2j-dex2smali.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.d2j.smali.BaksmaliCmd %* 22 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/d2j-jar2dex.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.dex2jar.tools.Jar2Dex %* 22 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/d2j-jar2jasmin.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.d2j.jasmin.Jar2JasminCmd %* 22 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/d2j-jasmin2jar.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.d2j.jasmin.Jasmin2JarCmd %* 22 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/d2j-smali.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.d2j.smali.SmaliCmd %* 22 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/d2j-std-apk.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.dex2jar.tools.StdApkCmd %* 22 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/d2j_invoke.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | REM better invocation scripts for windows from lanchon, release in public domain. thanks! 3 | REM https://code.google.com/p/dex2jar/issues/detail?id=192 4 | 5 | setlocal enabledelayedexpansion 6 | 7 | set LIB=%~dp0lib 8 | 9 | set CP= 10 | for %%X in ("%LIB%"\*.jar) do ( 11 | set CP=!CP!%%X; 12 | ) 13 | 14 | java -Xms512m -Xmx1024m -cp "%CP%" %* 15 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/lib/antlr-runtime-3.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/dex2jar/lib/antlr-runtime-3.5.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/lib/asm-debug-all-4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/dex2jar/lib/asm-debug-all-4.1.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/lib/d2j-base-cmd-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/dex2jar/lib/d2j-base-cmd-2.0.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/lib/d2j-jasmin-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/dex2jar/lib/d2j-jasmin-2.0.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/lib/d2j-smali-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/dex2jar/lib/d2j-smali-2.0.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/lib/dex-ir-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/dex2jar/lib/dex-ir-2.0.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/lib/dex-reader-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/dex2jar/lib/dex-reader-2.0.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/lib/dex-reader-api-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/dex2jar/lib/dex-reader-api-2.0.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/lib/dex-tools-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/dex2jar/lib/dex-tools-2.0.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/lib/dex-translator-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/dex2jar/lib/dex-translator-2.0.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/lib/dex-writer-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/dex2jar/lib/dex-writer-2.0.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/dex2jar/lib/dx-1.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/dex2jar/lib/dx-1.7.jar -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/jd-gui/jd-gui.cfg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | [Manifest] 7 | Version=2 8 | [GUI] 9 | MainWindowPosition=660,320 600x400 10 | [RecentFiles] 11 | Path0=E:\\Game\\Android\\AndroidKiller\\Main\\Win32\\Debug\\AndroidKiller\\projects\\旋转螺母先生 1.0.1.1\\ProjectSrc\\smali\\jp\\colopl\\ennut\\LightGameSkeletonActivity.class 12 | Path1=E:\\Game\\Android\\AndroidKiller\\Main\\Win32\\Debug\\projects\\brproc\\ProjectSrc\\smali\\com\\embarcadero\\firemonkey\\FMXNativeActivity.class 13 | Path2=E:\\Game\\Android\\AndroidKiller\\Main\\Win32\\Debug\\projects\\Project1\\ProjectSrc\\smali\\com\\embarcadero\\firemonkey\\FMXNativeActivity.class 14 | Path3=C:\\Users\\Administrator\\Desktop\\新建文件夹\\Android\\Debug\\Project2.jar 15 | Path4=E:\\Game\\Android\\AndroidKiller\\Main\\Win32\\Debug\\projects\\英雄跳跃官方原版\\ProjectSrc\\smali\\com\\dh\\hero\\GameActivity.class 16 | Path5=E:\\Game\\Android\\AndroidKiller\\Main\\Win32\\Debug\\projects\\英雄跳跃官方原版\\ProjectSrc\\smali\\com\\umeng\\newxp\\common\\d.class 17 | Path6=E:\\Game\\Android\\AndroidKiller\\Main\\Win32\\Debug\\projects\\aaa\\ProjectSrc\\smali\\com\\rytong\\app\\emp\\EMPView.class 18 | Path7=E:\\Game\\Android\\AndroidKiller\\Main\\Win32\\Debug\\projects\\弹球官方原版_killer\\ProjectSrc\\smali\\com\\PinballGame\\GameScreen.class 19 | Path8=E:\\Game\\Android\\AndroidKiller\\Main\\Win32\\Debug\\projects\\弹球官方原版_killer\\ProjectSrc\\smali\\com\\PinballGame\\PinballGameActivity.class 20 | Path9=E:\\Game\\Android\\AndroidKiller\\Main\\Win32\\Debug\\projects\\弹球官方原版\\ProjectSrc\\smali\\com\\PinballGame\\PinballGameActivity.class 21 | false 22 | 23 | system 24 | 25 | 26 | 27 | E:\Game\Android\AndroidKiller\Main\Win32\Debug\bin\jd-gui 28 | E:\Game\Android\AndroidKiller\Main\Win32\Debug\bin\jd-gui 29 | 30 | 31 | 0xFF6666 32 | 33 | 34 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/bin/jd-gui/jd-gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/bin/jd-gui/jd-gui.exe -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/codecolor.ini: -------------------------------------------------------------------------------- 1 | [white] 2 | bk=255,255,255 3 | default=0,128,128 4 | comment=0,128,0 5 | key=0,0,128 6 | str=255,0,0 7 | num=128,0,128 8 | symbol=0,0,0 9 | define=0,0,255 10 | object=0,0,0 11 | label=150,0,0 12 | [black] 13 | bk=4,32,41 14 | default=24,100,147 15 | comment=128,128,128 16 | key=90,110,101 17 | str=0,128,0 18 | num=255,128,64 19 | symbol=80,108,105 20 | define=103,82,27 21 | object=145,45,89 22 | label=255,0,255 23 | [custom] 24 | bk=255,255,255 25 | default=0,0,0 26 | comment=0,0,0 27 | key=0,0,0 28 | str=0,0,0 29 | num=0,0,0 30 | symbol=0,0,0 31 | define=0,0,0 32 | object=0,0,0 33 | label=0,0,0 34 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/codecomp.cfg: -------------------------------------------------------------------------------- 1 | nop 2 | move 3 | move/from16 4 | move/16 5 | move-wide 6 | move-wide/from16 7 | move-wide/16 8 | move-object 9 | move-object/from16 10 | move-object/16 11 | move-result 12 | move-result-wide 13 | move-result-object 14 | move-exception 15 | return-void 16 | return 17 | return-wide 18 | return-object 19 | const/4 20 | const/16 21 | const 22 | const/high16 23 | const-wide/16 24 | const-wide/32 25 | const-wide 26 | const-wide/high16 27 | const-string 28 | const-string-jumbo 29 | const-class 30 | monitor-enter 31 | monitor-exit 32 | check-cast 33 | instance-of 34 | array-length 35 | new-instance 36 | new-array 37 | filled-new-array 38 | filled-new-array-range 39 | fill-array-data 40 | throw 41 | goto 42 | goto/16 43 | goto/32 44 | packed-switch 45 | sparse-switch 46 | cmpl-float 47 | cmpg-float 48 | cmpl-double 49 | cmpg-double 50 | cmp-long 51 | if-eq 52 | if-ne 53 | if-lt 54 | if-ge 55 | if-gt 56 | if-le 57 | if-eqz 58 | if-nez 59 | if-ltz 60 | if-gez 61 | if-gtz 62 | if-lez 63 | aget 64 | aget-wide 65 | aget-object 66 | aget-boolean 67 | aget-byte 68 | aget-char 69 | aget-short 70 | aput 71 | aput-wide 72 | aput-object 73 | aput-boolean 74 | aput-byte 75 | aput-char 76 | aput-short 77 | iget 78 | iget-wide 79 | iget-object 80 | iget-boolean 81 | iget-byte 82 | iget-char 83 | iget-short 84 | iput 85 | iput-wide 86 | iput-object 87 | iput-boolean 88 | iput-byte 89 | iput-char 90 | iput-short 91 | sget 92 | sget-wide 93 | sget-object 94 | sget-boolean 95 | sget-byte 96 | sget-char 97 | sget-short 98 | sput 99 | sput-wide 100 | sput-object 101 | sput-boolean 102 | sput-byte 103 | sput-char 104 | sput-short 105 | invoke-virtual 106 | invoke-super 107 | invoke-direct 108 | invoke-static 109 | invoke-interface 110 | invoke-virtual/range 111 | invoke-super/range 112 | invoke-direct/range 113 | invoke-static/range 114 | invoke-interface/range 115 | net-int 116 | not-inet 117 | net-long 118 | not-long 119 | net-float 120 | net-double 121 | int-to-long 122 | int-to-float 123 | int-to-double 124 | long-to-int 125 | long-to-float 126 | long-to-double 127 | float-to-int 128 | float-to-long 129 | float-to-double 130 | double-to-int 131 | double-to-long 132 | double-to-float 133 | int-to-byte 134 | int-to-char 135 | int-to-short 136 | add-int 137 | sub-int 138 | mul-int 139 | div-int 140 | rem-int 141 | and-int 142 | or-int 143 | xor-int 144 | shl-int 145 | shr-int 146 | ushr-int 147 | add-long 148 | sub-long 149 | mul-long 150 | div-long 151 | rem-long 152 | and-long 153 | or-long 154 | xor-long 155 | shl-long 156 | shr-long 157 | ushr-long 158 | add-float 159 | sub-float 160 | mul-float 161 | div-float 162 | rem-float 163 | add-double 164 | sub-double 165 | mul-double 166 | div-double 167 | rem-double 168 | add-int/2addr 169 | sub-int/2addr 170 | mul-int/2addr 171 | div-int/2addr 172 | rem-int/2addr 173 | and-int/2addr 174 | or-int/2addr 175 | xor-int/2addr 176 | shl-int/2addr 177 | shr-int/2addr 178 | ushr-int/2addr 179 | add-long/2addr 180 | sub-long/2addr 181 | mul-long/2addr 182 | div-long/2addr 183 | rem-long/2addr 184 | and-long/2addr 185 | or-long/2addr 186 | xor-long/2addr 187 | shl-long/2addr 188 | shr-long/2addr 189 | ushr-long/2addr 190 | add-float/2addr 191 | sub-float/2addr 192 | mul-float/2addr 193 | div-float/2addr 194 | rem-float/2addr 195 | add-double/2addr 196 | sub-double/2addr 197 | mul-double/2addr 198 | div-double/2addr 199 | rem-double/2addr 200 | add-int/lit16 201 | sub-int/lit16 202 | mul-int/lit16 203 | div-int/lit16 204 | rem-int/lit16 205 | add-int/lit16 206 | or-int/lit16 207 | xor-int/lit16 208 | add-int/lit8 209 | sub-int/lit8 210 | mul-int/lit8 211 | div-int/lit8 212 | rem-int/lit8 213 | add-int/lit8 214 | or-int/lit8 215 | xor-int/lit8 216 | shl-int/lit8 217 | shr-int/lit8 218 | ushr-int/lit8 219 | execute-inline 220 | invoke-direct-empty 221 | iget-quick 222 | iget-wide-quick 223 | iget-object-quick 224 | iput-quick 225 | iput-wide-quick 226 | iput-object-quick 227 | invoke-virtual-quick 228 | invoke-virtual-quick/range 229 | invoke-super-quick 230 | invoke-super-quick/range -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/externaltools.ini: -------------------------------------------------------------------------------- 1 | [tool0] 2 | name=Notepad 3 | path=notepad.exe 4 | param= 5 | [tool1] 6 | name=Calc 7 | path=calc.exe 8 | param= 9 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/injectcode/LoadLibrary/code: -------------------------------------------------------------------------------- 1 | const-string v0, "so name" 2 | 3 | invoke-static {v0}, Ljava/lang/System;->loadLibrary(Ljava/lang/String;)V -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/injectcode/LoadLibrary/info: -------------------------------------------------------------------------------- 1 | Android Killer 2 | http://www.pd521.com -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/injectcode/Log/code: -------------------------------------------------------------------------------- 1 | const-string v0, "you message" 2 | 3 | invoke-static {v0}, Lcom/android/killer/Log;->LogStr(Ljava/lang/String;)V 4 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/injectcode/Log/files/smali/com/android/killer/Log.smali: -------------------------------------------------------------------------------- 1 | .class public Lcom/android/killer/Log; 2 | .super Ljava/lang/Object; 3 | .source "Log.java" 4 | 5 | 6 | # direct methods 7 | .method public constructor ()V 8 | .locals 0 9 | 10 | .prologue 11 | .line 7 12 | invoke-direct {p0}, Ljava/lang/Object;->()V 13 | 14 | return-void 15 | .end method 16 | 17 | .method public static LogBool(Z)V 18 | .locals 2 19 | .param p0, "value" # Z 20 | 21 | .prologue 22 | .line 21 23 | const-string v0, "AndroidKiller-boolean" 24 | 25 | invoke-static {p0}, Ljava/lang/String;->valueOf(Z)Ljava/lang/String; 26 | 27 | move-result-object v1 28 | 29 | invoke-static {v0, v1}, Landroid/util/Log;->v(Ljava/lang/String;Ljava/lang/String;)I 30 | 31 | .line 22 32 | return-void 33 | .end method 34 | 35 | .method public static LogChar(C)V 36 | .locals 2 37 | .param p0, "value" # C 38 | 39 | .prologue 40 | .line 36 41 | const-string v0, "AndroidKiller-char" 42 | 43 | invoke-static {p0}, Ljava/lang/String;->valueOf(C)Ljava/lang/String; 44 | 45 | move-result-object v1 46 | 47 | invoke-static {v0, v1}, Landroid/util/Log;->v(Ljava/lang/String;Ljava/lang/String;)I 48 | 49 | .line 37 50 | return-void 51 | .end method 52 | 53 | .method public static LogChars([C)V 54 | .locals 2 55 | .param p0, "value" # [C 56 | 57 | .prologue 58 | .line 46 59 | const-string v0, "AndroidKiller-char[]" 60 | 61 | invoke-static {p0}, Ljava/lang/String;->valueOf([C)Ljava/lang/String; 62 | 63 | move-result-object v1 64 | 65 | invoke-static {v0, v1}, Landroid/util/Log;->v(Ljava/lang/String;Ljava/lang/String;)I 66 | 67 | .line 47 68 | return-void 69 | .end method 70 | 71 | .method public static LogDouble(D)V 72 | .locals 2 73 | .param p0, "value" # D 74 | 75 | .prologue 76 | .line 31 77 | const-string v0, "AndroidKiller-double" 78 | 79 | invoke-static {p0, p1}, Ljava/lang/String;->valueOf(D)Ljava/lang/String; 80 | 81 | move-result-object v1 82 | 83 | invoke-static {v0, v1}, Landroid/util/Log;->v(Ljava/lang/String;Ljava/lang/String;)I 84 | 85 | .line 32 86 | return-void 87 | .end method 88 | 89 | .method public static LogFloat(F)V 90 | .locals 2 91 | .param p0, "value" # F 92 | 93 | .prologue 94 | .line 26 95 | const-string v0, "AndroidKiller-float" 96 | 97 | invoke-static {p0}, Ljava/lang/String;->valueOf(F)Ljava/lang/String; 98 | 99 | move-result-object v1 100 | 101 | invoke-static {v0, v1}, Landroid/util/Log;->v(Ljava/lang/String;Ljava/lang/String;)I 102 | 103 | .line 27 104 | return-void 105 | .end method 106 | 107 | .method public static LogInt(I)V 108 | .locals 2 109 | .param p0, "value" # I 110 | 111 | .prologue 112 | .line 11 113 | const-string v0, "AndroidKiller-int" 114 | 115 | invoke-static {p0}, Ljava/lang/String;->valueOf(I)Ljava/lang/String; 116 | 117 | move-result-object v1 118 | 119 | invoke-static {v0, v1}, Landroid/util/Log;->v(Ljava/lang/String;Ljava/lang/String;)I 120 | 121 | .line 12 122 | return-void 123 | .end method 124 | 125 | .method public static LogLong(J)V 126 | .locals 2 127 | .param p0, "value" # J 128 | 129 | .prologue 130 | .line 41 131 | const-string v0, "AndroidKiller-long" 132 | 133 | invoke-static {p0, p1}, Ljava/lang/String;->valueOf(J)Ljava/lang/String; 134 | 135 | move-result-object v1 136 | 137 | invoke-static {v0, v1}, Landroid/util/Log;->v(Ljava/lang/String;Ljava/lang/String;)I 138 | 139 | .line 42 140 | return-void 141 | .end method 142 | 143 | .method public static LogShort(S)V 144 | .locals 2 145 | .param p0, "value" # S 146 | 147 | .prologue 148 | .line 51 149 | const-string v0, "AndroidKiller-short" 150 | 151 | invoke-static {p0}, Ljava/lang/String;->valueOf(I)Ljava/lang/String; 152 | 153 | move-result-object v1 154 | 155 | invoke-static {v0, v1}, Landroid/util/Log;->v(Ljava/lang/String;Ljava/lang/String;)I 156 | 157 | .line 52 158 | return-void 159 | .end method 160 | 161 | .method public static LogStr(Ljava/lang/String;)V 162 | .locals 1 163 | .param p0, "value" # Ljava/lang/String; 164 | 165 | .prologue 166 | .line 16 167 | const-string v0, "AndroidKiller-string" 168 | 169 | invoke-static {v0, p0}, Landroid/util/Log;->v(Ljava/lang/String;Ljava/lang/String;)I 170 | 171 | .line 17 172 | return-void 173 | .end method 174 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/injectcode/Log/info: -------------------------------------------------------------------------------- 1 | Android Killer 2 | http://www.pd521.com -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/injectcode/Toast/code: -------------------------------------------------------------------------------- 1 | const-string v0, "you message" 2 | 3 | const/4 v1, 0x1 4 | 5 | invoke-static {p0, v0, v1}, Landroid/widget/Toast;->makeText(Landroid/content/Context;Ljava/lang/CharSequence;I)Landroid/widget/Toast; 6 | 7 | move-result-object v0 8 | 9 | invoke-virtual {v0}, Landroid/widget/Toast;->show()V -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/injectcode/Toast/info: -------------------------------------------------------------------------------- 1 | Android Killer 2 | http://www.pd521.com -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/keystore/androidkiller.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/cfgs/keystore/androidkiller.keystore -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/lang/English.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/lang/English_codetip.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/cfgs/lang/English_codetip.cfg -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/lang/English_permission.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/cfgs/lang/English_permission.cfg -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/lang/简体中文.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/lang/简体中文_codetip.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/cfgs/lang/简体中文_codetip.cfg -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/lang/简体中文_permission.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/cfgs/lang/简体中文_permission.cfg -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/logtaghistory.cfg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/searchhistory.cfg: -------------------------------------------------------------------------------- 1 | 2130903050 2 | mystart 3 | btn_ok 4 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/signs/AndroidKiller.ini: -------------------------------------------------------------------------------- 1 | [info] 2 | type=1 3 | Path=$(AppPath)\cfgs\keystore\androidkiller.keystore 4 | Password=killer 5 | KeyName=androidkiller 6 | KeyPassword=killer 7 | -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/cfgs/ymlkeywords.cfg: -------------------------------------------------------------------------------- 1 | version 2 | apkFileName 3 | isFrameworkApk 4 | usesFramework 5 | ids 6 | sdkInfo 7 | minSdkVersion 8 | packageInfo 9 | cur_package 10 | orig_package 11 | compressionType 12 | targetSdkVersion 13 | forced-package-id 14 | versionInfo 15 | versionCode 16 | versionName 17 | sharedLibrary 18 | unknownFiles 19 | DecodeFileMaps 20 | NonDefaultSources -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/configs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/configs.ini -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/lua5.3.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/lua5.3.0.dll -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/plugins/APKKiller.ProcInfo.bpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/plugins/APKKiller.ProcInfo.bpl -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/plugins/APKKiller.bpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/plugins/APKKiller.bpl -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/plugins/FakeEnc.bpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/plugins/FakeEnc.bpl -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/rtl230.bpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/rtl230.bpl -------------------------------------------------------------------------------- /AndroidKiller_v1.3.1/vcl230.bpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/AndroidKiller_v1.3.1/vcl230.bpl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 基础工具使用说明 2 | 3 | ## [apktool2.0.0](https://ibotpeaches.github.io/Apktool/) 4 | 5 | * 负责破解apk,普通的修改apk为rar解包得出的xml等文件是加密的,用这个工具解包就可以查看并修改, 6 | * 转成smali文件。smali是在dalvik虚拟机执行的核心代码,有自己的语法,java编译成smali,打包成dex在vm上执行 7 | * 我们不能修改java代码,但可以直接修改smali代码,然后回编成dex,覆盖原来的dex,打包成apk,就实现了修改代码 8 | * [百度网盘地址](http://pan.baidu.com/s/1miB7FIC) 9 | 10 | 语法: 11 | ``` 12 | cd apktool2.0.0 13 | ## 反编译 14 | apktool d xxx.apk 15 | ## 回编译 16 | apktool b xxx文件夹 17 | ``` 18 | 19 | ## [dex2jar-2.0](https://github.com/pxb1988/dex2jar) 20 | 21 | * 如果想查看java代码,怎么办? 22 | 可以使用该工具的命令`d2j-dex2jar.bat` 23 | * dex文件怎么得来? 24 | 修改`xxx.apk`文件为`xxx.rar`,直接解压缩,就可以获得`classes.dex`文件 25 | * [百度网盘地址](http://pan.baidu.com/s/1jINNbEI) 26 | 27 | 语法: 28 | ``` 29 | cd dex2jar-2.0 30 | d2j-dex2jar.bat D:\Android\apk\Bmi\classes.dex 31 | ## 会在dex2jar-2.0目录获得classes.dex.dex2jar.jar文件 32 | ``` 33 | 34 | ## [jd-gui-windows-1.4.0](http://jd.benow.ca/) 35 | 36 | * 使用本工具查看上一步获得的classes.dex.dex2jar.jar文件, 37 | 就可以直接预览java源码了 38 | 如图: 39 | ![](https://camo.githubusercontent.com/8286f65f4b148a27de05a78fa366074543e89ce3/687474703a2f2f6a642e62656e6f772e63612f696d672f73637265656e73686f7431372e706e67) 40 | * [百度网盘地址](http://pan.baidu.com/s/1o8tmGsy) 41 | 42 | ## [jadx-0.6.1-dev-build226](https://github.com/skylot/jadx/tree/master/jadx-gui/src/main/java/jadx/gui) 43 | 44 | * 比jd-gui-windows更方便 45 | ![](https://camo.githubusercontent.com/bd3c0ea851c23c4535e43590a86c940a0786faa6/687474703a2f2f736b796c6f742e6769746875622e696f2f6a6164782f6a6164782d6775692e706e67) 46 | * [百度网盘地址](http://pan.baidu.com/s/1gfM7lw3) 47 | 48 | # 高级工具 49 | 50 | >以上工具是apk反编译的基础操作,但是命令行操作起来比较繁琐,所以推荐一些高级工具,对上述的基础工具做了整合,极为便捷。 51 | 52 | ## [AndroidKiller1.3.1](http://www.pd521.com/forum.php?mod=viewthread&tid=136&extra=page%3D1&page=1) 53 | 54 | >强烈推荐,工具整合的相当完善 55 | >[百度云盘地址](http://pan.baidu.com/s/1slQW5m1) 56 | 57 | ![](https://github.com/hammercui/android-reverse/raw/master/preview/apkkill1.png) 58 | 59 | ![](https://github.com/hammercui/android-reverse/raw/master/preview/apkkill2.png) 60 | 61 | 62 | # 基础知识 63 | 64 | ## APK、Dalvik字节码和smali文件 65 | 66 | [APK反编译之一:基础知识--smali文件阅读](http://blog.csdn.net/chenrunhua/article/details/41250613):本篇文章结合一个activity.smali文件,来讲解smali的基础语法。 67 | 68 | [smali语法简析](http://blog.csdn.net/jimmy5z/article/details/12119739):更为详细的讲解 69 | * 讲述v本地寄存器,p参数寄存器的区别 70 | * Long和Double类型是64位的,需要2个寄存器 71 | * 非静态参数寄存器,p0代指`this` -------------------------------------------------------------------------------- /U3DResViewer_v1.0_win/U3DResViewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/U3DResViewer_v1.0_win/U3DResViewer.exe -------------------------------------------------------------------------------- /apktool2.0.0/aapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/apktool2.0.0/aapt.exe -------------------------------------------------------------------------------- /apktool2.0.0/apktool.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | set PATH=%CD%;%PATH%; 3 | java -jar -Duser.language=en "%~dp0\apktool.jar" %1 %2 %3 %4 %5 %6 %7 %8 %9 4 | -------------------------------------------------------------------------------- /apktool2.0.0/apktool.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/apktool2.0.0/apktool.jar -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-baksmali.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.d2j.smali.BaksmaliCmd %* 22 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-baksmali.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # dex2jar - Tools to work with android .dex and java .class files 5 | # Copyright (c) 2009-2013 Panxiaobo 6 | # 7 | # Licensed under the Apache License, Version 2.0 (the "License"); 8 | # you may not use this file except in compliance with the License. 9 | # You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, software 14 | # distributed under the License is distributed on an "AS IS" BASIS, 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | # See the License for the specific language governing permissions and 17 | # limitations under the License. 18 | # 19 | 20 | # copy from $Tomcat/bin/startup.sh 21 | # resolve links - $0 may be a softlink 22 | PRG="$0" 23 | while [ -h "$PRG" ] ; do 24 | ls=`ls -ld "$PRG"` 25 | link=`expr "$ls" : '.*-> \(.*\)$'` 26 | if expr "$link" : '/.*' > /dev/null; then 27 | PRG="$link" 28 | else 29 | PRG=`dirname "$PRG"`/"$link" 30 | fi 31 | done 32 | PRGDIR=`dirname "$PRG"` 33 | # 34 | 35 | # call d2j_invoke.sh to setup java environment 36 | "$PRGDIR/d2j_invoke.sh" "com.googlecode.d2j.smali.BaksmaliCmd" "$@" 37 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-dex-recompute-checksum.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.dex2jar.tools.DexRecomputeChecksum %* 22 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-dex-recompute-checksum.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # dex2jar - Tools to work with android .dex and java .class files 5 | # Copyright (c) 2009-2013 Panxiaobo 6 | # 7 | # Licensed under the Apache License, Version 2.0 (the "License"); 8 | # you may not use this file except in compliance with the License. 9 | # You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, software 14 | # distributed under the License is distributed on an "AS IS" BASIS, 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | # See the License for the specific language governing permissions and 17 | # limitations under the License. 18 | # 19 | 20 | # copy from $Tomcat/bin/startup.sh 21 | # resolve links - $0 may be a softlink 22 | PRG="$0" 23 | while [ -h "$PRG" ] ; do 24 | ls=`ls -ld "$PRG"` 25 | link=`expr "$ls" : '.*-> \(.*\)$'` 26 | if expr "$link" : '/.*' > /dev/null; then 27 | PRG="$link" 28 | else 29 | PRG=`dirname "$PRG"`/"$link" 30 | fi 31 | done 32 | PRGDIR=`dirname "$PRG"` 33 | # 34 | 35 | # call d2j_invoke.sh to setup java environment 36 | "$PRGDIR/d2j_invoke.sh" "com.googlecode.dex2jar.tools.DexRecomputeChecksum" "$@" 37 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-dex2jar.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.dex2jar.tools.Dex2jarCmd %* 22 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-dex2jar.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # dex2jar - Tools to work with android .dex and java .class files 5 | # Copyright (c) 2009-2013 Panxiaobo 6 | # 7 | # Licensed under the Apache License, Version 2.0 (the "License"); 8 | # you may not use this file except in compliance with the License. 9 | # You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, software 14 | # distributed under the License is distributed on an "AS IS" BASIS, 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | # See the License for the specific language governing permissions and 17 | # limitations under the License. 18 | # 19 | 20 | # copy from $Tomcat/bin/startup.sh 21 | # resolve links - $0 may be a softlink 22 | PRG="$0" 23 | while [ -h "$PRG" ] ; do 24 | ls=`ls -ld "$PRG"` 25 | link=`expr "$ls" : '.*-> \(.*\)$'` 26 | if expr "$link" : '/.*' > /dev/null; then 27 | PRG="$link" 28 | else 29 | PRG=`dirname "$PRG"`/"$link" 30 | fi 31 | done 32 | PRGDIR=`dirname "$PRG"` 33 | # 34 | 35 | # call d2j_invoke.sh to setup java environment 36 | "$PRGDIR/d2j_invoke.sh" "com.googlecode.dex2jar.tools.Dex2jarCmd" "$@" 37 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-dex2smali.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.d2j.smali.BaksmaliCmd %* 22 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-dex2smali.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # dex2jar - Tools to work with android .dex and java .class files 5 | # Copyright (c) 2009-2013 Panxiaobo 6 | # 7 | # Licensed under the Apache License, Version 2.0 (the "License"); 8 | # you may not use this file except in compliance with the License. 9 | # You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, software 14 | # distributed under the License is distributed on an "AS IS" BASIS, 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | # See the License for the specific language governing permissions and 17 | # limitations under the License. 18 | # 19 | 20 | # copy from $Tomcat/bin/startup.sh 21 | # resolve links - $0 may be a softlink 22 | PRG="$0" 23 | while [ -h "$PRG" ] ; do 24 | ls=`ls -ld "$PRG"` 25 | link=`expr "$ls" : '.*-> \(.*\)$'` 26 | if expr "$link" : '/.*' > /dev/null; then 27 | PRG="$link" 28 | else 29 | PRG=`dirname "$PRG"`/"$link" 30 | fi 31 | done 32 | PRGDIR=`dirname "$PRG"` 33 | # 34 | 35 | # call d2j_invoke.sh to setup java environment 36 | "$PRGDIR/d2j_invoke.sh" "com.googlecode.d2j.smali.BaksmaliCmd" "$@" 37 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-jar2dex.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.dex2jar.tools.Jar2Dex %* 22 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-jar2dex.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # dex2jar - Tools to work with android .dex and java .class files 5 | # Copyright (c) 2009-2013 Panxiaobo 6 | # 7 | # Licensed under the Apache License, Version 2.0 (the "License"); 8 | # you may not use this file except in compliance with the License. 9 | # You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, software 14 | # distributed under the License is distributed on an "AS IS" BASIS, 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | # See the License for the specific language governing permissions and 17 | # limitations under the License. 18 | # 19 | 20 | # copy from $Tomcat/bin/startup.sh 21 | # resolve links - $0 may be a softlink 22 | PRG="$0" 23 | while [ -h "$PRG" ] ; do 24 | ls=`ls -ld "$PRG"` 25 | link=`expr "$ls" : '.*-> \(.*\)$'` 26 | if expr "$link" : '/.*' > /dev/null; then 27 | PRG="$link" 28 | else 29 | PRG=`dirname "$PRG"`/"$link" 30 | fi 31 | done 32 | PRGDIR=`dirname "$PRG"` 33 | # 34 | 35 | # call d2j_invoke.sh to setup java environment 36 | "$PRGDIR/d2j_invoke.sh" "com.googlecode.dex2jar.tools.Jar2Dex" "$@" 37 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-jar2jasmin.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.d2j.jasmin.Jar2JasminCmd %* 22 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-jar2jasmin.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # dex2jar - Tools to work with android .dex and java .class files 5 | # Copyright (c) 2009-2013 Panxiaobo 6 | # 7 | # Licensed under the Apache License, Version 2.0 (the "License"); 8 | # you may not use this file except in compliance with the License. 9 | # You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, software 14 | # distributed under the License is distributed on an "AS IS" BASIS, 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | # See the License for the specific language governing permissions and 17 | # limitations under the License. 18 | # 19 | 20 | # copy from $Tomcat/bin/startup.sh 21 | # resolve links - $0 may be a softlink 22 | PRG="$0" 23 | while [ -h "$PRG" ] ; do 24 | ls=`ls -ld "$PRG"` 25 | link=`expr "$ls" : '.*-> \(.*\)$'` 26 | if expr "$link" : '/.*' > /dev/null; then 27 | PRG="$link" 28 | else 29 | PRG=`dirname "$PRG"`/"$link" 30 | fi 31 | done 32 | PRGDIR=`dirname "$PRG"` 33 | # 34 | 35 | # call d2j_invoke.sh to setup java environment 36 | "$PRGDIR/d2j_invoke.sh" "com.googlecode.d2j.jasmin.Jar2JasminCmd" "$@" 37 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-jasmin2jar.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.d2j.jasmin.Jasmin2JarCmd %* 22 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-jasmin2jar.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # dex2jar - Tools to work with android .dex and java .class files 5 | # Copyright (c) 2009-2013 Panxiaobo 6 | # 7 | # Licensed under the Apache License, Version 2.0 (the "License"); 8 | # you may not use this file except in compliance with the License. 9 | # You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, software 14 | # distributed under the License is distributed on an "AS IS" BASIS, 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | # See the License for the specific language governing permissions and 17 | # limitations under the License. 18 | # 19 | 20 | # copy from $Tomcat/bin/startup.sh 21 | # resolve links - $0 may be a softlink 22 | PRG="$0" 23 | while [ -h "$PRG" ] ; do 24 | ls=`ls -ld "$PRG"` 25 | link=`expr "$ls" : '.*-> \(.*\)$'` 26 | if expr "$link" : '/.*' > /dev/null; then 27 | PRG="$link" 28 | else 29 | PRG=`dirname "$PRG"`/"$link" 30 | fi 31 | done 32 | PRGDIR=`dirname "$PRG"` 33 | # 34 | 35 | # call d2j_invoke.sh to setup java environment 36 | "$PRGDIR/d2j_invoke.sh" "com.googlecode.d2j.jasmin.Jasmin2JarCmd" "$@" 37 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-smali.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.d2j.smali.SmaliCmd %* 22 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-smali.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # dex2jar - Tools to work with android .dex and java .class files 5 | # Copyright (c) 2009-2013 Panxiaobo 6 | # 7 | # Licensed under the Apache License, Version 2.0 (the "License"); 8 | # you may not use this file except in compliance with the License. 9 | # You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, software 14 | # distributed under the License is distributed on an "AS IS" BASIS, 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | # See the License for the specific language governing permissions and 17 | # limitations under the License. 18 | # 19 | 20 | # copy from $Tomcat/bin/startup.sh 21 | # resolve links - $0 may be a softlink 22 | PRG="$0" 23 | while [ -h "$PRG" ] ; do 24 | ls=`ls -ld "$PRG"` 25 | link=`expr "$ls" : '.*-> \(.*\)$'` 26 | if expr "$link" : '/.*' > /dev/null; then 27 | PRG="$link" 28 | else 29 | PRG=`dirname "$PRG"`/"$link" 30 | fi 31 | done 32 | PRGDIR=`dirname "$PRG"` 33 | # 34 | 35 | # call d2j_invoke.sh to setup java environment 36 | "$PRGDIR/d2j_invoke.sh" "com.googlecode.d2j.smali.SmaliCmd" "$@" 37 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-std-apk.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM 4 | REM dex2jar - Tools to work with android .dex and java .class files 5 | REM Copyright (c) 2009-2013 Panxiaobo 6 | REM 7 | REM Licensed under the Apache License, Version 2.0 (the "License"); 8 | REM you may not use this file except in compliance with the License. 9 | REM You may obtain a copy of the License at 10 | REM 11 | REM http://www.apache.org/licenses/LICENSE-2.0 12 | REM 13 | REM Unless required by applicable law or agreed to in writing, software 14 | REM distributed under the License is distributed on an "AS IS" BASIS, 15 | REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | REM See the License for the specific language governing permissions and 17 | REM limitations under the License. 18 | REM 19 | 20 | REM call d2j_invoke.bat to setup java environment 21 | @"%~dp0d2j_invoke.bat" com.googlecode.dex2jar.tools.StdApkCmd %* 22 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j-std-apk.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # dex2jar - Tools to work with android .dex and java .class files 5 | # Copyright (c) 2009-2013 Panxiaobo 6 | # 7 | # Licensed under the Apache License, Version 2.0 (the "License"); 8 | # you may not use this file except in compliance with the License. 9 | # You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, software 14 | # distributed under the License is distributed on an "AS IS" BASIS, 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | # See the License for the specific language governing permissions and 17 | # limitations under the License. 18 | # 19 | 20 | # copy from $Tomcat/bin/startup.sh 21 | # resolve links - $0 may be a softlink 22 | PRG="$0" 23 | while [ -h "$PRG" ] ; do 24 | ls=`ls -ld "$PRG"` 25 | link=`expr "$ls" : '.*-> \(.*\)$'` 26 | if expr "$link" : '/.*' > /dev/null; then 27 | PRG="$link" 28 | else 29 | PRG=`dirname "$PRG"`/"$link" 30 | fi 31 | done 32 | PRGDIR=`dirname "$PRG"` 33 | # 34 | 35 | # call d2j_invoke.sh to setup java environment 36 | "$PRGDIR/d2j_invoke.sh" "com.googlecode.dex2jar.tools.StdApkCmd" "$@" 37 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j_invoke.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | REM better invocation scripts for windows from lanchon, release in public domain. thanks! 3 | REM https://code.google.com/p/dex2jar/issues/detail?id=192 4 | 5 | setlocal enabledelayedexpansion 6 | 7 | set LIB=%~dp0lib 8 | 9 | set CP= 10 | for %%X in ("%LIB%"\*.jar) do ( 11 | set CP=!CP!%%X; 12 | ) 13 | 14 | java -Xms512m -Xmx1024m -cp "%CP%" %* 15 | -------------------------------------------------------------------------------- /dex2jar-2.0/d2j_invoke.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # dex2jar - Tools to work with android .dex and java .class files 5 | # Copyright (c) 2009-2013 Panxiaobo 6 | # 7 | # Licensed under the Apache License, Version 2.0 (the "License"); 8 | # you may not use this file except in compliance with the License. 9 | # You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, software 14 | # distributed under the License is distributed on an "AS IS" BASIS, 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | # See the License for the specific language governing permissions and 17 | # limitations under the License. 18 | # 19 | 20 | # copy from $Tomcat/bin/startup.sh 21 | # resolve links - $0 may be a softlink 22 | PRG="$0" 23 | while [ -h "$PRG" ] ; do 24 | ls=`ls -ld "$PRG"` 25 | link=`expr "$ls" : '.*-> \(.*\)$'` 26 | if expr "$link" : '/.*' > /dev/null; then 27 | PRG="$link" 28 | else 29 | PRG=`dirname "$PRG"`/"$link" 30 | fi 31 | done 32 | PRGDIR=`dirname "$PRG"` 33 | # 34 | 35 | _classpath="." 36 | if [ `uname -a | grep -i -c cygwin` -ne 0 ]; then # Cygwin, translate the path 37 | for k in "$PRGDIR"/lib/*.jar 38 | do 39 | _classpath="${_classpath};`cygpath -w ${k}`" 40 | done 41 | else 42 | for k in "$PRGDIR"/lib/*.jar 43 | do 44 | _classpath="${_classpath}:${k}" 45 | done 46 | fi 47 | 48 | java -Xms512m -Xmx1024m -classpath "${_classpath}" "$@" 49 | -------------------------------------------------------------------------------- /dex2jar-2.0/lib/antlr-runtime-3.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/dex2jar-2.0/lib/antlr-runtime-3.5.jar -------------------------------------------------------------------------------- /dex2jar-2.0/lib/asm-debug-all-4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/dex2jar-2.0/lib/asm-debug-all-4.1.jar -------------------------------------------------------------------------------- /dex2jar-2.0/lib/d2j-base-cmd-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/dex2jar-2.0/lib/d2j-base-cmd-2.0.jar -------------------------------------------------------------------------------- /dex2jar-2.0/lib/d2j-jasmin-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/dex2jar-2.0/lib/d2j-jasmin-2.0.jar -------------------------------------------------------------------------------- /dex2jar-2.0/lib/d2j-smali-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/dex2jar-2.0/lib/d2j-smali-2.0.jar -------------------------------------------------------------------------------- /dex2jar-2.0/lib/dex-ir-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/dex2jar-2.0/lib/dex-ir-2.0.jar -------------------------------------------------------------------------------- /dex2jar-2.0/lib/dex-reader-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/dex2jar-2.0/lib/dex-reader-2.0.jar -------------------------------------------------------------------------------- /dex2jar-2.0/lib/dex-reader-api-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/dex2jar-2.0/lib/dex-reader-api-2.0.jar -------------------------------------------------------------------------------- /dex2jar-2.0/lib/dex-tools-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/dex2jar-2.0/lib/dex-tools-2.0.jar -------------------------------------------------------------------------------- /dex2jar-2.0/lib/dex-translator-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/dex2jar-2.0/lib/dex-translator-2.0.jar -------------------------------------------------------------------------------- /dex2jar-2.0/lib/dex-writer-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/dex2jar-2.0/lib/dex-writer-2.0.jar -------------------------------------------------------------------------------- /dex2jar-2.0/lib/dx-1.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/dex2jar-2.0/lib/dx-1.7.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/NOTICE: -------------------------------------------------------------------------------- 1 | The majority of jadx is written and copyrighted by me (Skylot) 2 | and released under the Apache 2.0 license (see LICENSE file for full license text): 3 | 4 | ******************************************************************************* 5 | Copyright 2015, Skylot 6 | 7 | Licensed under the Apache License, Version 2.0 (the "License"); 8 | you may not use this file except in compliance with the License. 9 | You may obtain a copy of the License at 10 | 11 | http://www.apache.org/licenses/LICENSE-2.0 12 | 13 | Unless required by applicable law or agreed to in writing, software 14 | distributed under the License is distributed on an "AS IS" BASIS, 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | See the License for the specific language governing permissions and 17 | limitations under the License. 18 | ******************************************************************************* 19 | 20 | 21 | Various portions of the code including dx library are taken from 22 | the Android Open Source Project, and are used in accordance with 23 | the following license: 24 | 25 | ******************************************************************************* 26 | Copyright (C) 2007 The Android Open Source Project 27 | 28 | Licensed under the Apache License, Version 2.0 (the "License"); 29 | you may not use this file except in compliance with the License. 30 | You may obtain a copy of the License at 31 | 32 | http://www.apache.org/licenses/LICENSE-2.0 33 | 34 | Unless required by applicable law or agreed to in writing, software 35 | distributed under the License is distributed on an "AS IS" BASIS, 36 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 37 | See the License for the specific language governing permissions and 38 | limitations under the License. 39 | ******************************************************************************* 40 | 41 | 42 | Other binary libraries used in 'jadx' 43 | ===================================== 44 | 45 | JCommander library (http://jcommander.org/) released under the following license: 46 | 47 | ******************************************************************************* 48 | Copyright 2012, Cedric Beust 49 | 50 | Licensed under the Apache License, Version 2.0 (the "License"); 51 | you may not use this file except in compliance with the License. 52 | You may obtain a copy of the License at 53 | 54 | http://www.apache.org/licenses/LICENSE-2.0 55 | 56 | Unless required by applicable law or agreed to in writing, software 57 | distributed under the License is distributed on an "AS IS" BASIS, 58 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 59 | See the License for the specific language governing permissions and 60 | limitations under the License. 61 | ******************************************************************************* 62 | 63 | 64 | SLF4J source code and binaries are distributed under the following license: 65 | 66 | ******************************************************************************* 67 | Copyright (c) 2004-2011 QOS.ch 68 | All rights reserved. 69 | 70 | Permission is hereby granted, free of charge, to any person obtaining 71 | a copy of this software and associated documentation files (the 72 | "Software"), to deal in the Software without restriction, including 73 | without limitation the rights to use, copy, modify, merge, publish, 74 | distribute, sublicense, and/or sell copies of the Software, and to 75 | permit persons to whom the Software is furnished to do so, subject to 76 | the following conditions: 77 | 78 | The above copyright notice and this permission notice shall be 79 | included in all copies or substantial portions of the Software. 80 | 81 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 82 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 83 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 84 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 85 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 86 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 87 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 88 | ******************************************************************************* 89 | 90 | 91 | Logback source code and binaries are dual-licensed under the EPL v1.0 and the LGPL 2.1, or more formally: 92 | 93 | ******************************************************************************* 94 | Logback: the reliable, generic, fast and flexible logging framework. 95 | Copyright (C) 1999-2012, QOS.ch. All rights reserved. 96 | 97 | This program and the accompanying materials are dual-licensed under 98 | either the terms of the Eclipse Public License v1.0 as published by 99 | the Eclipse Foundation 100 | 101 | or (per the licensee's choosing) 102 | 103 | under the terms of the GNU Lesser General Public License version 2.1 104 | as published by the Free Software Foundation. 105 | ******************************************************************************* 106 | 107 | 108 | ASM library: 109 | 110 | ******************************************************************************* 111 | Copyright (c) 2000-2011 INRIA, France Telecom 112 | All rights reserved. 113 | 114 | Redistribution and use in source and binary forms, with or without 115 | modification, are permitted provided that the following conditions 116 | are met: 117 | 118 | 1. Redistributions of source code must retain the above copyright 119 | notice, this list of conditions and the following disclaimer. 120 | 121 | 2. Redistributions in binary form must reproduce the above copyright 122 | notice, this list of conditions and the following disclaimer in the 123 | documentation and/or other materials provided with the distribution. 124 | 125 | 3. Neither the name of the copyright holders nor the names of its 126 | contributors may be used to endorse or promote products derived from 127 | this software without specific prior written permission. 128 | 129 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 130 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 131 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 132 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 133 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 134 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 135 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 136 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 137 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 138 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 139 | THE POSSIBILITY OF SUCH DAMAGE. 140 | ******************************************************************************* 141 | 142 | 143 | 144 | Jadx-gui components 145 | =================== 146 | 147 | RSyntaxTextArea library (https://github.com/bobbylight/RSyntaxTextArea) 148 | licensed under modified BSD license: 149 | 150 | ******************************************************************************* 151 | Copyright (c) 2012, Robert Futrell 152 | All rights reserved. 153 | 154 | Redistribution and use in source and binary forms, with or without 155 | modification, are permitted provided that the following conditions are met: 156 | * Redistributions of source code must retain the above copyright 157 | notice, this list of conditions and the following disclaimer. 158 | * Redistributions in binary form must reproduce the above copyright 159 | notice, this list of conditions and the following disclaimer in the 160 | documentation and/or other materials provided with the distribution. 161 | * Neither the name of the author nor the names of its contributors may 162 | be used to endorse or promote products derived from this software 163 | without specific prior written permission. 164 | 165 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 166 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 167 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 168 | DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY 169 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 170 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 171 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 172 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 173 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 174 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 175 | ******************************************************************************* 176 | 177 | 178 | Concurrent Trees (https://code.google.com/p/concurrent-trees/) 179 | licenced under Apache License 2.0: 180 | 181 | ******************************************************************************* 182 | Licensed under the Apache License, Version 2.0 (the "License"); 183 | you may not use this file except in compliance with the License. 184 | You may obtain a copy of the License at 185 | 186 | http://www.apache.org/licenses/LICENSE-2.0 187 | 188 | Unless required by applicable law or agreed to in writing, software 189 | distributed under the License is distributed on an "AS IS" BASIS, 190 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 191 | See the License for the specific language governing permissions and 192 | limitations under the License. 193 | ******************************************************************************* 194 | 195 | 196 | Image Viewer (https://github.com/kazocsaba/imageviewer) 197 | 198 | ******************************************************************************* 199 | Copyright (c) 2008-2012 Kazó Csaba 200 | 201 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 202 | 203 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 204 | 205 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 206 | ******************************************************************************* 207 | 208 | JFontChooser Component - http://sourceforge.jp/projects/jfontchooser/ 209 | 210 | Icons copied from several places: 211 | - Eclipse Project (JDT UI) - licensed under EPL v1.0 (http://www.eclipse.org/legal/epl-v10.html) 212 | - famfamfam silk icon set (http://www.famfamfam.com/lab/icons/silk/) - licensed 213 | under Creative Commons Attribution 2.5 License (http://creativecommons.org/licenses/by/2.5/) 214 | -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/README.md: -------------------------------------------------------------------------------- 1 | ## JADX 2 | 3 | [![Build Status](https://travis-ci.org/skylot/jadx.png?branch=master)](https://travis-ci.org/skylot/jadx) 4 | [![Build Status](https://drone.io/github.com/skylot/jadx/status.png)](https://drone.io/github.com/skylot/jadx/latest) 5 | [![Coverage Status](https://coveralls.io/repos/skylot/jadx/badge.png)](https://coveralls.io/r/skylot/jadx) 6 | [![Coverity Scan Build Status](https://scan.coverity.com/projects/2166/badge.svg)](https://scan.coverity.com/projects/2166) 7 | [![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html) 8 | 9 | **jadx** - Dex to Java decompiler 10 | 11 | Command line and GUI tools for produce Java source code from Android Dex and Apk files 12 | 13 | ![jadx-gui screenshot](http://skylot.github.io/jadx/jadx-gui.png) 14 | 15 | ### Downloads 16 | - [unstable](https://drone.io/github.com/skylot/jadx/files) 17 | - from [github](https://github.com/skylot/jadx/releases) 18 | - from [sourceforge](http://sourceforge.net/projects/jadx/files/) 19 | 20 | 21 | ### Building from source 22 | git clone https://github.com/skylot/jadx.git 23 | cd jadx 24 | ./gradlew dist 25 | 26 | (on Windows, use `gradlew.bat` instead of `./gradlew`) 27 | 28 | Scripts for run jadx will be placed in `build/jadx/bin` 29 | and also packed to `build/jadx-.zip` 30 | 31 | 32 | ### Run 33 | Run **jadx** on itself: 34 | 35 | cd build/jadx/ 36 | bin/jadx -d out lib/jadx-core-*.jar 37 | #or 38 | bin/jadx-gui lib/jadx-core-*.jar 39 | 40 | 41 | ### Usage 42 | ``` 43 | jadx[-gui] [options] (.dex, .apk, .jar or .class) 44 | options: 45 | -d, --output-dir - output directory 46 | -j, --threads-count - processing threads count 47 | -r, --no-res - do not decode resources 48 | -s, --no-src - do not decompile source code 49 | -e, --export-gradle - save as android gradle project 50 | --show-bad-code - show inconsistent code (incorrectly decompiled) 51 | --no-replace-consts - don't replace constant value with matching constant field 52 | --escape-unicode - escape non latin characters in strings (with \u) 53 | --deobf - activate deobfuscation 54 | --deobf-min - min length of name 55 | --deobf-max - max length of name 56 | --deobf-rewrite-cfg - force to save deobfuscation map 57 | --deobf-use-sourcename - use source file name as class name alias 58 | --cfg - save methods control flow graph to dot file 59 | --raw-cfg - save methods control flow graph (use raw instructions) 60 | -f, --fallback - make simple dump (using goto instead of 'if', 'for', etc) 61 | -v, --verbose - verbose output 62 | -h, --help - print this help 63 | Example: 64 | jadx -d out classes.dex 65 | ``` 66 | 67 | ### Troubleshooting 68 | ##### Out of memory error: 69 | - Reduce processing threads count (`-j` option) 70 | - Increase maximum java heap size: 71 | * command line (example for linux): 72 | `JAVA_OPTS="-Xmx4G" jadx -j 1 some.apk` 73 | * edit 'jadx' script (jadx.bat on Windows) and setup bigger heap size: 74 | `DEFAULT_JVM_OPTS="-Xmx2500M"` 75 | 76 | 77 | ### Contribution 78 | 79 | To support this project you can: 80 | - Post thoughts about new features/optimizations that important to you 81 | - Submit bug using one of following patterns: 82 | * Java code examples which decompiles incorrectly 83 | * Error log and link to _public available_ apk file or app page on Google play 84 | 85 | And any other comments will be very helpfull, 86 | because at current stage of development it is very time consuming 87 | to **find** new bugs, design and implement new features. 88 | Also I need to **prioritize** these task for complete most important at first. 89 | 90 | --------------------------------------- 91 | *Licensed under the Apache 2.0 License* 92 | 93 | *Copyright 2015 by Skylot* 94 | -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/bin/jadx: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## jadx start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and JADX_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="jadx" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # Attempt to set APP_HOME 46 | # Resolve links: $0 may be a link 47 | PRG="$0" 48 | # Need this for relative symlinks. 49 | while [ -h "$PRG" ] ; do 50 | ls=`ls -ld "$PRG"` 51 | link=`expr "$ls" : '.*-> \(.*\)$'` 52 | if expr "$link" : '/.*' > /dev/null; then 53 | PRG="$link" 54 | else 55 | PRG=`dirname "$PRG"`"/$link" 56 | fi 57 | done 58 | SAVED="`pwd`" 59 | cd "`dirname \"$PRG\"`/.." >&- 60 | APP_HOME="`pwd -P`" 61 | cd "$SAVED" >&- 62 | 63 | CLASSPATH=$APP_HOME/lib/jadx-cli-0.6.1-dev-build226.jar:$APP_HOME/lib/android-5.1.jar:$APP_HOME/lib/dx-1.10.jar:$APP_HOME/lib/slf4j-api-1.7.10.jar:$APP_HOME/lib/jadx-core-0.6.1-dev-build226.jar:$APP_HOME/lib/jcommander-1.47.jar:$APP_HOME/lib/logback-classic-1.1.2.jar:$APP_HOME/lib/commons-io-2.4.jar:$APP_HOME/lib/asm-5.0.3.jar:$APP_HOME/lib/annotations-12.0.jar:$APP_HOME/lib/cloning-1.9.2.jar:$APP_HOME/lib/logback-core-1.1.2.jar:$APP_HOME/lib/objenesis-2.1.jar 64 | 65 | # Determine the Java command to use to start the JVM. 66 | if [ -n "$JAVA_HOME" ] ; then 67 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 68 | # IBM's JDK on AIX uses strange locations for the executables 69 | JAVACMD="$JAVA_HOME/jre/sh/java" 70 | else 71 | JAVACMD="$JAVA_HOME/bin/java" 72 | fi 73 | if [ ! -x "$JAVACMD" ] ; then 74 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 75 | 76 | Please set the JAVA_HOME variable in your environment to match the 77 | location of your Java installation." 78 | fi 79 | else 80 | JAVACMD="java" 81 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 82 | 83 | Please set the JAVA_HOME variable in your environment to match the 84 | location of your Java installation." 85 | fi 86 | 87 | # Increase the maximum file descriptors if we can. 88 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 89 | MAX_FD_LIMIT=`ulimit -H -n` 90 | if [ $? -eq 0 ] ; then 91 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 92 | MAX_FD="$MAX_FD_LIMIT" 93 | fi 94 | ulimit -n $MAX_FD 95 | if [ $? -ne 0 ] ; then 96 | warn "Could not set maximum file descriptor limit: $MAX_FD" 97 | fi 98 | else 99 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 100 | fi 101 | fi 102 | 103 | # For Darwin, add options to specify how the application appears in the dock 104 | if $darwin; then 105 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 106 | fi 107 | 108 | # For Cygwin, switch paths to Windows format before running java 109 | if $cygwin ; then 110 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 111 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 112 | JAVACMD=`cygpath --unix "$JAVACMD"` 113 | 114 | # We build the pattern for arguments to be converted via cygpath 115 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 116 | SEP="" 117 | for dir in $ROOTDIRSRAW ; do 118 | ROOTDIRS="$ROOTDIRS$SEP$dir" 119 | SEP="|" 120 | done 121 | OURCYGPATTERN="(^($ROOTDIRS))" 122 | # Add a user-defined pattern to the cygpath arguments 123 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 124 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 125 | fi 126 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 127 | i=0 128 | for arg in "$@" ; do 129 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 130 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 131 | 132 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 133 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 134 | else 135 | eval `echo args$i`="\"$arg\"" 136 | fi 137 | i=$((i+1)) 138 | done 139 | case $i in 140 | (0) set -- ;; 141 | (1) set -- "$args0" ;; 142 | (2) set -- "$args0" "$args1" ;; 143 | (3) set -- "$args0" "$args1" "$args2" ;; 144 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 145 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 146 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 147 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 148 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 149 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 150 | esac 151 | fi 152 | 153 | # Split up the JVM_OPTS And JADX_OPTS values into an array, following the shell quoting and substitution rules 154 | function splitJvmOpts() { 155 | JVM_OPTS=("$@") 156 | } 157 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $JADX_OPTS 158 | 159 | 160 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" jadx.cli.JadxCLI "$@" 161 | -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/bin/jadx-gui: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## jadx-gui start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and JADX_GUI_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="jadx-gui" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # Attempt to set APP_HOME 46 | # Resolve links: $0 may be a link 47 | PRG="$0" 48 | # Need this for relative symlinks. 49 | while [ -h "$PRG" ] ; do 50 | ls=`ls -ld "$PRG"` 51 | link=`expr "$ls" : '.*-> \(.*\)$'` 52 | if expr "$link" : '/.*' > /dev/null; then 53 | PRG="$link" 54 | else 55 | PRG=`dirname "$PRG"`"/$link" 56 | fi 57 | done 58 | SAVED="`pwd`" 59 | cd "`dirname \"$PRG\"`/.." >&- 60 | APP_HOME="`pwd -P`" 61 | cd "$SAVED" >&- 62 | 63 | CLASSPATH=$APP_HOME/lib/jadx-gui-0.6.1-dev-build226.jar:$APP_HOME/lib/android-5.1.jar:$APP_HOME/lib/dx-1.10.jar:$APP_HOME/lib/jfontchooser-1.0.5.jar:$APP_HOME/lib/slf4j-api-1.7.10.jar:$APP_HOME/lib/jadx-core-0.6.1-dev-build226.jar:$APP_HOME/lib/jadx-cli-0.6.1-dev-build226.jar:$APP_HOME/lib/rsyntaxtextarea-2.5.8.jar:$APP_HOME/lib/gson-2.3.1.jar:$APP_HOME/lib/image-viewer-1.2.3.jar:$APP_HOME/lib/commons-io-2.4.jar:$APP_HOME/lib/asm-5.0.3.jar:$APP_HOME/lib/annotations-12.0.jar:$APP_HOME/lib/cloning-1.9.2.jar:$APP_HOME/lib/jcommander-1.47.jar:$APP_HOME/lib/logback-classic-1.1.2.jar:$APP_HOME/lib/objenesis-2.1.jar:$APP_HOME/lib/logback-core-1.1.2.jar 64 | 65 | # Determine the Java command to use to start the JVM. 66 | if [ -n "$JAVA_HOME" ] ; then 67 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 68 | # IBM's JDK on AIX uses strange locations for the executables 69 | JAVACMD="$JAVA_HOME/jre/sh/java" 70 | else 71 | JAVACMD="$JAVA_HOME/bin/java" 72 | fi 73 | if [ ! -x "$JAVACMD" ] ; then 74 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 75 | 76 | Please set the JAVA_HOME variable in your environment to match the 77 | location of your Java installation." 78 | fi 79 | else 80 | JAVACMD="java" 81 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 82 | 83 | Please set the JAVA_HOME variable in your environment to match the 84 | location of your Java installation." 85 | fi 86 | 87 | # Increase the maximum file descriptors if we can. 88 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 89 | MAX_FD_LIMIT=`ulimit -H -n` 90 | if [ $? -eq 0 ] ; then 91 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 92 | MAX_FD="$MAX_FD_LIMIT" 93 | fi 94 | ulimit -n $MAX_FD 95 | if [ $? -ne 0 ] ; then 96 | warn "Could not set maximum file descriptor limit: $MAX_FD" 97 | fi 98 | else 99 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 100 | fi 101 | fi 102 | 103 | # For Darwin, add options to specify how the application appears in the dock 104 | if $darwin; then 105 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 106 | fi 107 | 108 | # For Cygwin, switch paths to Windows format before running java 109 | if $cygwin ; then 110 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 111 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 112 | JAVACMD=`cygpath --unix "$JAVACMD"` 113 | 114 | # We build the pattern for arguments to be converted via cygpath 115 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 116 | SEP="" 117 | for dir in $ROOTDIRSRAW ; do 118 | ROOTDIRS="$ROOTDIRS$SEP$dir" 119 | SEP="|" 120 | done 121 | OURCYGPATTERN="(^($ROOTDIRS))" 122 | # Add a user-defined pattern to the cygpath arguments 123 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 124 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 125 | fi 126 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 127 | i=0 128 | for arg in "$@" ; do 129 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 130 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 131 | 132 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 133 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 134 | else 135 | eval `echo args$i`="\"$arg\"" 136 | fi 137 | i=$((i+1)) 138 | done 139 | case $i in 140 | (0) set -- ;; 141 | (1) set -- "$args0" ;; 142 | (2) set -- "$args0" "$args1" ;; 143 | (3) set -- "$args0" "$args1" "$args2" ;; 144 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 145 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 146 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 147 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 148 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 149 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 150 | esac 151 | fi 152 | 153 | # Split up the JVM_OPTS And JADX_GUI_OPTS values into an array, following the shell quoting and substitution rules 154 | function splitJvmOpts() { 155 | JVM_OPTS=("$@") 156 | } 157 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $JADX_GUI_OPTS 158 | 159 | 160 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" jadx.gui.JadxGUI "$@" 161 | -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/bin/jadx-gui.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem jadx-gui startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and JADX_GUI_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME%.. 18 | 19 | @rem Find javaw.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=javaw.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/javaw.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\lib\jadx-gui-0.6.1-dev-build226.jar;%APP_HOME%\lib\android-5.1.jar;%APP_HOME%\lib\dx-1.10.jar;%APP_HOME%\lib\jfontchooser-1.0.5.jar;%APP_HOME%\lib\slf4j-api-1.7.10.jar;%APP_HOME%\lib\jadx-core-0.6.1-dev-build226.jar;%APP_HOME%\lib\jadx-cli-0.6.1-dev-build226.jar;%APP_HOME%\lib\rsyntaxtextarea-2.5.8.jar;%APP_HOME%\lib\gson-2.3.1.jar;%APP_HOME%\lib\image-viewer-1.2.3.jar;%APP_HOME%\lib\commons-io-2.4.jar;%APP_HOME%\lib\asm-5.0.3.jar;%APP_HOME%\lib\annotations-12.0.jar;%APP_HOME%\lib\cloning-1.9.2.jar;%APP_HOME%\lib\jcommander-1.47.jar;%APP_HOME%\lib\logback-classic-1.1.2.jar;%APP_HOME%\lib\objenesis-2.1.jar;%APP_HOME%\lib\logback-core-1.1.2.jar 73 | 74 | @rem Execute jadx-gui 75 | start "jadx-gui" /B "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %JADX_GUI_OPTS% -classpath "%CLASSPATH%" jadx.gui.JadxGUI %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable JADX_GUI_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%JADX_GUI_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/bin/jadx.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem jadx startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and JADX_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME%.. 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\lib\jadx-cli-0.6.1-dev-build226.jar;%APP_HOME%\lib\android-5.1.jar;%APP_HOME%\lib\dx-1.10.jar;%APP_HOME%\lib\slf4j-api-1.7.10.jar;%APP_HOME%\lib\jadx-core-0.6.1-dev-build226.jar;%APP_HOME%\lib\jcommander-1.47.jar;%APP_HOME%\lib\logback-classic-1.1.2.jar;%APP_HOME%\lib\commons-io-2.4.jar;%APP_HOME%\lib\asm-5.0.3.jar;%APP_HOME%\lib\annotations-12.0.jar;%APP_HOME%\lib\cloning-1.9.2.jar;%APP_HOME%\lib\logback-core-1.1.2.jar;%APP_HOME%\lib\objenesis-2.1.jar 73 | 74 | @rem Execute jadx 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %JADX_OPTS% -classpath "%CLASSPATH%" jadx.cli.JadxCLI %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable JADX_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%JADX_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/android-5.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/android-5.1.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/annotations-12.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/annotations-12.0.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/asm-5.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/asm-5.0.3.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/cloning-1.9.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/cloning-1.9.2.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/commons-io-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/commons-io-2.4.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/dx-1.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/dx-1.10.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/gson-2.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/gson-2.3.1.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/image-viewer-1.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/image-viewer-1.2.3.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/jadx-cli-0.6.1-dev-build226.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/jadx-cli-0.6.1-dev-build226.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/jadx-core-0.6.1-dev-build226.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/jadx-core-0.6.1-dev-build226.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/jadx-gui-0.6.1-dev-build226.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/jadx-gui-0.6.1-dev-build226.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/jcommander-1.47.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/jcommander-1.47.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/jfontchooser-1.0.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/jfontchooser-1.0.5.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/logback-classic-1.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/logback-classic-1.1.2.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/logback-core-1.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/logback-core-1.1.2.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/objenesis-2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/objenesis-2.1.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/rsyntaxtextarea-2.5.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/rsyntaxtextarea-2.5.8.jar -------------------------------------------------------------------------------- /jadx-0.6.1-dev-build226/lib/slf4j-api-1.7.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jadx-0.6.1-dev-build226/lib/slf4j-api-1.7.10.jar -------------------------------------------------------------------------------- /jd-gui-windows-1.4.0/LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | 3 | Version 3, 29 June 2007 4 | 5 | Copyright (C) 2007 Free Software Foundation, Inc. 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The GNU General Public License is a free, copyleft license for 12 | software and other kinds of works. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | the GNU General Public License is intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. We, the Free Software Foundation, use the 19 | GNU General Public License for most of our software; it applies also to 20 | any other work released this way by its authors. You can apply it to 21 | your programs, too. 22 | 23 | When we speak of free software, we are referring to freedom, not 24 | price. Our General Public Licenses are designed to make sure that you 25 | have the freedom to distribute copies of free software (and charge for 26 | them if you wish), that you receive source code or can get it if you 27 | want it, that you can change the software or use pieces of it in new 28 | free programs, and that you know you can do these things. 29 | 30 | To protect your rights, we need to prevent others from denying you 31 | these rights or asking you to surrender the rights. Therefore, you have 32 | certain responsibilities if you distribute copies of the software, or if 33 | you modify it: responsibilities to respect the freedom of others. 34 | 35 | For example, if you distribute copies of such a program, whether 36 | gratis or for a fee, you must pass on to the recipients the same 37 | freedoms that you received. You must make sure that they, too, receive 38 | or can get the source code. And you must show them these terms so they 39 | know their rights. 40 | 41 | Developers that use the GNU GPL protect your rights with two steps: 42 | (1) assert copyright on the software, and (2) offer you this License 43 | giving you legal permission to copy, distribute and/or modify it. 44 | 45 | For the developers' and authors' protection, the GPL clearly explains 46 | that there is no warranty for this free software. For both users' and 47 | authors' sake, the GPL requires that modified versions be marked as 48 | changed, so that their problems will not be attributed erroneously to 49 | authors of previous versions. 50 | 51 | Some devices are designed to deny users access to install or run 52 | modified versions of the software inside them, although the manufacturer 53 | can do so. This is fundamentally incompatible with the aim of 54 | protecting users' freedom to change the software. The systematic 55 | pattern of such abuse occurs in the area of products for individuals to 56 | use, which is precisely where it is most unacceptable. Therefore, we 57 | have designed this version of the GPL to prohibit the practice for those 58 | products. If such problems arise substantially in other domains, we 59 | stand ready to extend this provision to those domains in future versions 60 | of the GPL, as needed to protect the freedom of users. 61 | 62 | Finally, every program is threatened constantly by software patents. 63 | States should not allow patents to restrict development and use of 64 | software on general-purpose computers, but in those that do, we wish to 65 | avoid the special danger that patents applied to a free program could 66 | make it effectively proprietary. To prevent this, the GPL assures that 67 | patents cannot be used to render the program non-free. 68 | 69 | The precise terms and conditions for copying, distribution and 70 | modification follow. 71 | 72 | TERMS AND CONDITIONS 73 | 74 | 0. Definitions. 75 | 76 | "This License" refers to version 3 of the GNU General Public License. 77 | 78 | "Copyright" also means copyright-like laws that apply to other kinds of 79 | works, such as semiconductor masks. 80 | 81 | "The Program" refers to any copyrightable work licensed under this 82 | License. Each licensee is addressed as "you". "Licensees" and 83 | "recipients" may be individuals or organizations. 84 | 85 | To "modify" a work means to copy from or adapt all or part of the work 86 | in a fashion requiring copyright permission, other than the making of an 87 | exact copy. The resulting work is called a "modified version" of the 88 | earlier work or a work "based on" the earlier work. 89 | 90 | A "covered work" means either the unmodified Program or a work based 91 | on the Program. 92 | 93 | To "propagate" a work means to do anything with it that, without 94 | permission, would make you directly or secondarily liable for 95 | infringement under applicable copyright law, except executing it on a 96 | computer or modifying a private copy. Propagation includes copying, 97 | distribution (with or without modification), making available to the 98 | public, and in some countries other activities as well. 99 | 100 | To "convey" a work means any kind of propagation that enables other 101 | parties to make or receive copies. Mere interaction with a user through 102 | a computer network, with no transfer of a copy, is not conveying. 103 | 104 | An interactive user interface displays "Appropriate Legal Notices" 105 | to the extent that it includes a convenient and prominently visible 106 | feature that (1) displays an appropriate copyright notice, and (2) 107 | tells the user that there is no warranty for the work (except to the 108 | extent that warranties are provided), that licensees may convey the 109 | work under this License, and how to view a copy of this License. If 110 | the interface presents a list of user commands or options, such as a 111 | menu, a prominent item in the list meets this criterion. 112 | 113 | 1. Source Code. 114 | 115 | The "source code" for a work means the preferred form of the work 116 | for making modifications to it. "Object code" means any non-source 117 | form of a work. 118 | 119 | A "Standard Interface" means an interface that either is an official 120 | standard defined by a recognized standards body, or, in the case of 121 | interfaces specified for a particular programming language, one that 122 | is widely used among developers working in that language. 123 | 124 | The "System Libraries" of an executable work include anything, other 125 | than the work as a whole, that (a) is included in the normal form of 126 | packaging a Major Component, but which is not part of that Major 127 | Component, and (b) serves only to enable use of the work with that 128 | Major Component, or to implement a Standard Interface for which an 129 | implementation is available to the public in source code form. A 130 | "Major Component", in this context, means a major essential component 131 | (kernel, window system, and so on) of the specific operating system 132 | (if any) on which the executable work runs, or a compiler used to 133 | produce the work, or an object code interpreter used to run it. 134 | 135 | The "Corresponding Source" for a work in object code form means all 136 | the source code needed to generate, install, and (for an executable 137 | work) run the object code and to modify the work, including scripts to 138 | control those activities. However, it does not include the work's 139 | System Libraries, or general-purpose tools or generally available free 140 | programs which are used unmodified in performing those activities but 141 | which are not part of the work. For example, Corresponding Source 142 | includes interface definition files associated with source files for 143 | the work, and the source code for shared libraries and dynamically 144 | linked subprograms that the work is specifically designed to require, 145 | such as by intimate data communication or control flow between those 146 | subprograms and other parts of the work. 147 | 148 | The Corresponding Source need not include anything that users 149 | can regenerate automatically from other parts of the Corresponding 150 | Source. 151 | 152 | The Corresponding Source for a work in source code form is that 153 | same work. 154 | 155 | 2. Basic Permissions. 156 | 157 | All rights granted under this License are granted for the term of 158 | copyright on the Program, and are irrevocable provided the stated 159 | conditions are met. This License explicitly affirms your unlimited 160 | permission to run the unmodified Program. The output from running a 161 | covered work is covered by this License only if the output, given its 162 | content, constitutes a covered work. This License acknowledges your 163 | rights of fair use or other equivalent, as provided by copyright law. 164 | 165 | You may make, run and propagate covered works that you do not 166 | convey, without conditions so long as your license otherwise remains 167 | in force. You may convey covered works to others for the sole purpose 168 | of having them make modifications exclusively for you, or provide you 169 | with facilities for running those works, provided that you comply with 170 | the terms of this License in conveying all material for which you do 171 | not control copyright. Those thus making or running the covered works 172 | for you must do so exclusively on your behalf, under your direction 173 | and control, on terms that prohibit them from making any copies of 174 | your copyrighted material outside their relationship with you. 175 | 176 | Conveying under any other circumstances is permitted solely under 177 | the conditions stated below. Sublicensing is not allowed; section 10 178 | makes it unnecessary. 179 | 180 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 181 | 182 | No covered work shall be deemed part of an effective technological 183 | measure under any applicable law fulfilling obligations under article 184 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 185 | similar laws prohibiting or restricting circumvention of such 186 | measures. 187 | 188 | When you convey a covered work, you waive any legal power to forbid 189 | circumvention of technological measures to the extent such circumvention 190 | is effected by exercising rights under this License with respect to 191 | the covered work, and you disclaim any intention to limit operation or 192 | modification of the work as a means of enforcing, against the work's 193 | users, your or third parties' legal rights to forbid circumvention of 194 | technological measures. 195 | 196 | 4. Conveying Verbatim Copies. 197 | 198 | You may convey verbatim copies of the Program's source code as you 199 | receive it, in any medium, provided that you conspicuously and 200 | appropriately publish on each copy an appropriate copyright notice; 201 | keep intact all notices stating that this License and any 202 | non-permissive terms added in accord with section 7 apply to the code; 203 | keep intact all notices of the absence of any warranty; and give all 204 | recipients a copy of this License along with the Program. 205 | 206 | You may charge any price or no price for each copy that you convey, 207 | and you may offer support or warranty protection for a fee. 208 | 209 | 5. Conveying Modified Source Versions. 210 | 211 | You may convey a work based on the Program, or the modifications to 212 | produce it from the Program, in the form of source code under the 213 | terms of section 4, provided that you also meet all of these conditions: 214 | 215 | a) The work must carry prominent notices stating that you modified 216 | it, and giving a relevant date. 217 | 218 | b) The work must carry prominent notices stating that it is 219 | released under this License and any conditions added under section 220 | 7. This requirement modifies the requirement in section 4 to 221 | "keep intact all notices". 222 | 223 | c) You must license the entire work, as a whole, under this 224 | License to anyone who comes into possession of a copy. This 225 | License will therefore apply, along with any applicable section 7 226 | additional terms, to the whole of the work, and all its parts, 227 | regardless of how they are packaged. This License gives no 228 | permission to license the work in any other way, but it does not 229 | invalidate such permission if you have separately received it. 230 | 231 | d) If the work has interactive user interfaces, each must display 232 | Appropriate Legal Notices; however, if the Program has interactive 233 | interfaces that do not display Appropriate Legal Notices, your 234 | work need not make them do so. 235 | 236 | A compilation of a covered work with other separate and independent 237 | works, which are not by their nature extensions of the covered work, 238 | and which are not combined with it such as to form a larger program, 239 | in or on a volume of a storage or distribution medium, is called an 240 | "aggregate" if the compilation and its resulting copyright are not 241 | used to limit the access or legal rights of the compilation's users 242 | beyond what the individual works permit. Inclusion of a covered work 243 | in an aggregate does not cause this License to apply to the other 244 | parts of the aggregate. 245 | 246 | 6. Conveying Non-Source Forms. 247 | 248 | You may convey a covered work in object code form under the terms 249 | of sections 4 and 5, provided that you also convey the 250 | machine-readable Corresponding Source under the terms of this License, 251 | in one of these ways: 252 | 253 | a) Convey the object code in, or embodied in, a physical product 254 | (including a physical distribution medium), accompanied by the 255 | Corresponding Source fixed on a durable physical medium 256 | customarily used for software interchange. 257 | 258 | b) Convey the object code in, or embodied in, a physical product 259 | (including a physical distribution medium), accompanied by a 260 | written offer, valid for at least three years and valid for as 261 | long as you offer spare parts or customer support for that product 262 | model, to give anyone who possesses the object code either (1) a 263 | copy of the Corresponding Source for all the software in the 264 | product that is covered by this License, on a durable physical 265 | medium customarily used for software interchange, for a price no 266 | more than your reasonable cost of physically performing this 267 | conveying of source, or (2) access to copy the 268 | Corresponding Source from a network server at no charge. 269 | 270 | c) Convey individual copies of the object code with a copy of the 271 | written offer to provide the Corresponding Source. This 272 | alternative is allowed only occasionally and noncommercially, and 273 | only if you received the object code with such an offer, in accord 274 | with subsection 6b. 275 | 276 | d) Convey the object code by offering access from a designated 277 | place (gratis or for a charge), and offer equivalent access to the 278 | Corresponding Source in the same way through the same place at no 279 | further charge. You need not require recipients to copy the 280 | Corresponding Source along with the object code. If the place to 281 | copy the object code is a network server, the Corresponding Source 282 | may be on a different server (operated by you or a third party) 283 | that supports equivalent copying facilities, provided you maintain 284 | clear directions next to the object code saying where to find the 285 | Corresponding Source. Regardless of what server hosts the 286 | Corresponding Source, you remain obligated to ensure that it is 287 | available for as long as needed to satisfy these requirements. 288 | 289 | e) Convey the object code using peer-to-peer transmission, provided 290 | you inform other peers where the object code and Corresponding 291 | Source of the work are being offered to the general public at no 292 | charge under subsection 6d. 293 | 294 | A separable portion of the object code, whose source code is excluded 295 | from the Corresponding Source as a System Library, need not be 296 | included in conveying the object code work. 297 | 298 | A "User Product" is either (1) a "consumer product", which means any 299 | tangible personal property which is normally used for personal, family, 300 | or household purposes, or (2) anything designed or sold for incorporation 301 | into a dwelling. In determining whether a product is a consumer product, 302 | doubtful cases shall be resolved in favor of coverage. For a particular 303 | product received by a particular user, "normally used" refers to a 304 | typical or common use of that class of product, regardless of the status 305 | of the particular user or of the way in which the particular user 306 | actually uses, or expects or is expected to use, the product. A product 307 | is a consumer product regardless of whether the product has substantial 308 | commercial, industrial or non-consumer uses, unless such uses represent 309 | the only significant mode of use of the product. 310 | 311 | "Installation Information" for a User Product means any methods, 312 | procedures, authorization keys, or other information required to install 313 | and execute modified versions of a covered work in that User Product from 314 | a modified version of its Corresponding Source. The information must 315 | suffice to ensure that the continued functioning of the modified object 316 | code is in no case prevented or interfered with solely because 317 | modification has been made. 318 | 319 | If you convey an object code work under this section in, or with, or 320 | specifically for use in, a User Product, and the conveying occurs as 321 | part of a transaction in which the right of possession and use of the 322 | User Product is transferred to the recipient in perpetuity or for a 323 | fixed term (regardless of how the transaction is characterized), the 324 | Corresponding Source conveyed under this section must be accompanied 325 | by the Installation Information. But this requirement does not apply 326 | if neither you nor any third party retains the ability to install 327 | modified object code on the User Product (for example, the work has 328 | been installed in ROM). 329 | 330 | The requirement to provide Installation Information does not include a 331 | requirement to continue to provide support service, warranty, or updates 332 | for a work that has been modified or installed by the recipient, or for 333 | the User Product in which it has been modified or installed. Access to a 334 | network may be denied when the modification itself materially and 335 | adversely affects the operation of the network or violates the rules and 336 | protocols for communication across the network. 337 | 338 | Corresponding Source conveyed, and Installation Information provided, 339 | in accord with this section must be in a format that is publicly 340 | documented (and with an implementation available to the public in 341 | source code form), and must require no special password or key for 342 | unpacking, reading or copying. 343 | 344 | 7. Additional Terms. 345 | 346 | "Additional permissions" are terms that supplement the terms of this 347 | License by making exceptions from one or more of its conditions. 348 | Additional permissions that are applicable to the entire Program shall 349 | be treated as though they were included in this License, to the extent 350 | that they are valid under applicable law. If additional permissions 351 | apply only to part of the Program, that part may be used separately 352 | under those permissions, but the entire Program remains governed by 353 | this License without regard to the additional permissions. 354 | 355 | When you convey a copy of a covered work, you may at your option 356 | remove any additional permissions from that copy, or from any part of 357 | it. (Additional permissions may be written to require their own 358 | removal in certain cases when you modify the work.) You may place 359 | additional permissions on material, added by you to a covered work, 360 | for which you have or can give appropriate copyright permission. 361 | 362 | Notwithstanding any other provision of this License, for material you 363 | add to a covered work, you may (if authorized by the copyright holders of 364 | that material) supplement the terms of this License with terms: 365 | 366 | a) Disclaiming warranty or limiting liability differently from the 367 | terms of sections 15 and 16 of this License; or 368 | 369 | b) Requiring preservation of specified reasonable legal notices or 370 | author attributions in that material or in the Appropriate Legal 371 | Notices displayed by works containing it; or 372 | 373 | c) Prohibiting misrepresentation of the origin of that material, or 374 | requiring that modified versions of such material be marked in 375 | reasonable ways as different from the original version; or 376 | 377 | d) Limiting the use for publicity purposes of names of licensors or 378 | authors of the material; or 379 | 380 | e) Declining to grant rights under trademark law for use of some 381 | trade names, trademarks, or service marks; or 382 | 383 | f) Requiring indemnification of licensors and authors of that 384 | material by anyone who conveys the material (or modified versions of 385 | it) with contractual assumptions of liability to the recipient, for 386 | any liability that these contractual assumptions directly impose on 387 | those licensors and authors. 388 | 389 | All other non-permissive additional terms are considered "further 390 | restrictions" within the meaning of section 10. If the Program as you 391 | received it, or any part of it, contains a notice stating that it is 392 | governed by this License along with a term that is a further 393 | restriction, you may remove that term. If a license document contains 394 | a further restriction but permits relicensing or conveying under this 395 | License, you may add to a covered work material governed by the terms 396 | of that license document, provided that the further restriction does 397 | not survive such relicensing or conveying. 398 | 399 | If you add terms to a covered work in accord with this section, you 400 | must place, in the relevant source files, a statement of the 401 | additional terms that apply to those files, or a notice indicating 402 | where to find the applicable terms. 403 | 404 | Additional terms, permissive or non-permissive, may be stated in the 405 | form of a separately written license, or stated as exceptions; 406 | the above requirements apply either way. 407 | 408 | 8. Termination. 409 | 410 | You may not propagate or modify a covered work except as expressly 411 | provided under this License. Any attempt otherwise to propagate or 412 | modify it is void, and will automatically terminate your rights under 413 | this License (including any patent licenses granted under the third 414 | paragraph of section 11). 415 | 416 | However, if you cease all violation of this License, then your 417 | license from a particular copyright holder is reinstated (a) 418 | provisionally, unless and until the copyright holder explicitly and 419 | finally terminates your license, and (b) permanently, if the copyright 420 | holder fails to notify you of the violation by some reasonable means 421 | prior to 60 days after the cessation. 422 | 423 | Moreover, your license from a particular copyright holder is 424 | reinstated permanently if the copyright holder notifies you of the 425 | violation by some reasonable means, this is the first time you have 426 | received notice of violation of this License (for any work) from that 427 | copyright holder, and you cure the violation prior to 30 days after 428 | your receipt of the notice. 429 | 430 | Termination of your rights under this section does not terminate the 431 | licenses of parties who have received copies or rights from you under 432 | this License. If your rights have been terminated and not permanently 433 | reinstated, you do not qualify to receive new licenses for the same 434 | material under section 10. 435 | 436 | 9. Acceptance Not Required for Having Copies. 437 | 438 | You are not required to accept this License in order to receive or 439 | run a copy of the Program. Ancillary propagation of a covered work 440 | occurring solely as a consequence of using peer-to-peer transmission 441 | to receive a copy likewise does not require acceptance. However, 442 | nothing other than this License grants you permission to propagate or 443 | modify any covered work. These actions infringe copyright if you do 444 | not accept this License. Therefore, by modifying or propagating a 445 | covered work, you indicate your acceptance of this License to do so. 446 | 447 | 10. Automatic Licensing of Downstream Recipients. 448 | 449 | Each time you convey a covered work, the recipient automatically 450 | receives a license from the original licensors, to run, modify and 451 | propagate that work, subject to this License. You are not responsible 452 | for enforcing compliance by third parties with this License. 453 | 454 | An "entity transaction" is a transaction transferring control of an 455 | organization, or substantially all assets of one, or subdividing an 456 | organization, or merging organizations. If propagation of a covered 457 | work results from an entity transaction, each party to that 458 | transaction who receives a copy of the work also receives whatever 459 | licenses to the work the party's predecessor in interest had or could 460 | give under the previous paragraph, plus a right to possession of the 461 | Corresponding Source of the work from the predecessor in interest, if 462 | the predecessor has it or can get it with reasonable efforts. 463 | 464 | You may not impose any further restrictions on the exercise of the 465 | rights granted or affirmed under this License. For example, you may 466 | not impose a license fee, royalty, or other charge for exercise of 467 | rights granted under this License, and you may not initiate litigation 468 | (including a cross-claim or counterclaim in a lawsuit) alleging that 469 | any patent claim is infringed by making, using, selling, offering for 470 | sale, or importing the Program or any portion of it. 471 | 472 | 11. Patents. 473 | 474 | A "contributor" is a copyright holder who authorizes use under this 475 | License of the Program or a work on which the Program is based. The 476 | work thus licensed is called the contributor's "contributor version". 477 | 478 | A contributor's "essential patent claims" are all patent claims 479 | owned or controlled by the contributor, whether already acquired or 480 | hereafter acquired, that would be infringed by some manner, permitted 481 | by this License, of making, using, or selling its contributor version, 482 | but do not include claims that would be infringed only as a 483 | consequence of further modification of the contributor version. For 484 | purposes of this definition, "control" includes the right to grant 485 | patent sublicenses in a manner consistent with the requirements of 486 | this License. 487 | 488 | Each contributor grants you a non-exclusive, worldwide, royalty-free 489 | patent license under the contributor's essential patent claims, to 490 | make, use, sell, offer for sale, import and otherwise run, modify and 491 | propagate the contents of its contributor version. 492 | 493 | In the following three paragraphs, a "patent license" is any express 494 | agreement or commitment, however denominated, not to enforce a patent 495 | (such as an express permission to practice a patent or covenant not to 496 | sue for patent infringement). To "grant" such a patent license to a 497 | party means to make such an agreement or commitment not to enforce a 498 | patent against the party. 499 | 500 | If you convey a covered work, knowingly relying on a patent license, 501 | and the Corresponding Source of the work is not available for anyone 502 | to copy, free of charge and under the terms of this License, through a 503 | publicly available network server or other readily accessible means, 504 | then you must either (1) cause the Corresponding Source to be so 505 | available, or (2) arrange to deprive yourself of the benefit of the 506 | patent license for this particular work, or (3) arrange, in a manner 507 | consistent with the requirements of this License, to extend the patent 508 | license to downstream recipients. "Knowingly relying" means you have 509 | actual knowledge that, but for the patent license, your conveying the 510 | covered work in a country, or your recipient's use of the covered work 511 | in a country, would infringe one or more identifiable patents in that 512 | country that you have reason to believe are valid. 513 | 514 | If, pursuant to or in connection with a single transaction or 515 | arrangement, you convey, or propagate by procuring conveyance of, a 516 | covered work, and grant a patent license to some of the parties 517 | receiving the covered work authorizing them to use, propagate, modify 518 | or convey a specific copy of the covered work, then the patent license 519 | you grant is automatically extended to all recipients of the covered 520 | work and works based on it. 521 | 522 | A patent license is "discriminatory" if it does not include within 523 | the scope of its coverage, prohibits the exercise of, or is 524 | conditioned on the non-exercise of one or more of the rights that are 525 | specifically granted under this License. You may not convey a covered 526 | work if you are a party to an arrangement with a third party that is 527 | in the business of distributing software, under which you make payment 528 | to the third party based on the extent of your activity of conveying 529 | the work, and under which the third party grants, to any of the 530 | parties who would receive the covered work from you, a discriminatory 531 | patent license (a) in connection with copies of the covered work 532 | conveyed by you (or copies made from those copies), or (b) primarily 533 | for and in connection with specific products or compilations that 534 | contain the covered work, unless you entered into that arrangement, 535 | or that patent license was granted, prior to 28 March 2007. 536 | 537 | Nothing in this License shall be construed as excluding or limiting 538 | any implied license or other defenses to infringement that may 539 | otherwise be available to you under applicable patent law. 540 | 541 | 12. No Surrender of Others' Freedom. 542 | 543 | If conditions are imposed on you (whether by court order, agreement or 544 | otherwise) that contradict the conditions of this License, they do not 545 | excuse you from the conditions of this License. If you cannot convey a 546 | covered work so as to satisfy simultaneously your obligations under this 547 | License and any other pertinent obligations, then as a consequence you may 548 | not convey it at all. For example, if you agree to terms that obligate you 549 | to collect a royalty for further conveying from those to whom you convey 550 | the Program, the only way you could satisfy both those terms and this 551 | License would be to refrain entirely from conveying the Program. 552 | 553 | 13. Use with the GNU Affero General Public License. 554 | 555 | Notwithstanding any other provision of this License, you have 556 | permission to link or combine any covered work with a work licensed 557 | under version 3 of the GNU Affero General Public License into a single 558 | combined work, and to convey the resulting work. The terms of this 559 | License will continue to apply to the part which is the covered work, 560 | but the special requirements of the GNU Affero General Public License, 561 | section 13, concerning interaction through a network will apply to the 562 | combination as such. 563 | 564 | 14. Revised Versions of this License. 565 | 566 | The Free Software Foundation may publish revised and/or new versions of 567 | the GNU General Public License from time to time. Such new versions will 568 | be similar in spirit to the present version, but may differ in detail to 569 | address new problems or concerns. 570 | 571 | Each version is given a distinguishing version number. If the 572 | Program specifies that a certain numbered version of the GNU General 573 | Public License "or any later version" applies to it, you have the 574 | option of following the terms and conditions either of that numbered 575 | version or of any later version published by the Free Software 576 | Foundation. If the Program does not specify a version number of the 577 | GNU General Public License, you may choose any version ever published 578 | by the Free Software Foundation. 579 | 580 | If the Program specifies that a proxy can decide which future 581 | versions of the GNU General Public License can be used, that proxy's 582 | public statement of acceptance of a version permanently authorizes you 583 | to choose that version for the Program. 584 | 585 | Later license versions may give you additional or different 586 | permissions. However, no additional obligations are imposed on any 587 | author or copyright holder as a result of your choosing to follow a 588 | later version. 589 | 590 | 15. Disclaimer of Warranty. 591 | 592 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 593 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 594 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 595 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 596 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 597 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 598 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 599 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 600 | 601 | 16. Limitation of Liability. 602 | 603 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 604 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 605 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 606 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 607 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 608 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 609 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 610 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 611 | SUCH DAMAGES. 612 | 613 | 17. Interpretation of Sections 15 and 16. 614 | 615 | If the disclaimer of warranty and limitation of liability provided 616 | above cannot be given local legal effect according to their terms, 617 | reviewing courts shall apply local law that most closely approximates 618 | an absolute waiver of all civil liability in connection with the 619 | Program, unless a warranty or assumption of liability accompanies a 620 | copy of the Program in return for a fee. 621 | 622 | END OF TERMS AND CONDITIONS 623 | 624 | How to Apply These Terms to Your New Programs 625 | 626 | If you develop a new program, and you want it to be of the greatest 627 | possible use to the public, the best way to achieve this is to make it 628 | free software which everyone can redistribute and change under these terms. 629 | 630 | To do so, attach the following notices to the program. It is safest 631 | to attach them to the start of each source file to most effectively 632 | state the exclusion of warranty; and each file should have at least 633 | the "copyright" line and a pointer to where the full notice is found. 634 | 635 | JD-GUI, a standalone graphical utility that displays Java sources from 636 | CLASS files 637 | Copyright (C) 2008-2015 Emmanuel Dupuy 638 | 639 | This program is free software: you can redistribute it and/or modify 640 | it under the terms of the GNU General Public License as published by 641 | the Free Software Foundation, either version 3 of the License, or 642 | (at your option) any later version. 643 | 644 | This program is distributed in the hope that it will be useful, 645 | but WITHOUT ANY WARRANTY; without even the implied warranty of 646 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 647 | GNU General Public License for more details. 648 | 649 | You should have received a copy of the GNU General Public License 650 | along with this program. If not, see . 651 | 652 | Also add information on how to contact you by electronic and paper mail. 653 | 654 | If the program does terminal interaction, make it output a short 655 | notice like this when it starts in an interactive mode: 656 | 657 | JD-GUI Copyright (C) 2008-2015 Emmanuel Dupuy 658 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 659 | This is free software, and you are welcome to redistribute it 660 | under certain conditions; type `show c' for details. 661 | 662 | The hypothetical commands `show w' and `show c' should show the appropriate 663 | parts of the General Public License. Of course, your program's commands 664 | might be different; for a GUI interface, you would use an "about box". 665 | 666 | You should also get your employer (if you work as a programmer) or school, 667 | if any, to sign a "copyright disclaimer" for the program, if necessary. 668 | For more information on this, and how to apply and follow the GNU GPL, see 669 | . 670 | 671 | The GNU General Public License does not permit incorporating your program 672 | into proprietary programs. If your program is a subroutine library, you 673 | may consider it more useful to permit linking proprietary applications with 674 | the library. If this is what you want to do, use the GNU Lesser General 675 | Public License instead of this License. But first, please read 676 | . 677 | -------------------------------------------------------------------------------- /jd-gui-windows-1.4.0/NOTICE: -------------------------------------------------------------------------------- 1 | JD-GUI license - GPLv3 2 | 3 | Libraries used: 4 | 5 | Groovy - Apache License 2.0 6 | Gradle - Apache License 2.0 7 | JD-Core Java Release - GPLv3 8 | RSyntaxTextArea - Modified BSD license 9 | 10 | JD-GUI Mac OSX distribution: 11 | 12 | universalJavaApplicationStub - MIT License 13 | 14 | JD-GUI Windows distribution: 15 | 16 | Launch4j - MIT License 17 | -------------------------------------------------------------------------------- /jd-gui-windows-1.4.0/README.md: -------------------------------------------------------------------------------- 1 | #JD-GUI 2 | 3 | JD-GUI, a standalone graphical utility that displays Java sources from CLASS files. 4 | 5 | ![](http://jd.benow.ca/img/screenshot17.png) 6 | 7 | - Java Decompiler projects home page: [http://jd.benow.ca](http://jd.benow.ca) 8 | - Java Decompiler Wikipedia page: [http://en.wikipedia.org/wiki/Java_Decompiler](http://en.wikipedia.org/wiki/Java_Decompiler) 9 | - JD-GUI source code: [https://github.com/java-decompiler/jd-gui](https://github.com/java-decompiler/jd-gui) 10 | 11 | ##Description 12 | JD-GUI is a standalone graphical utility that displays Java source codes of 13 | ".class" files. You can browse the reconstructed source code with the JD-GUI 14 | for instant access to methods and fields. 15 | 16 | ##How to build JD-GUI ? 17 | ``` 18 | > ./gradlew build 19 | ``` 20 | generate _"build/libs/jd-gui-x.y.z.jar"_ 21 | ``` 22 | > ./gradlew installOsxDist 23 | ``` 24 | generate _"build/install/jd-gui-osx/JD-GUI.app"_ 25 | ``` 26 | > iexplore http://sourceforge.net/projects/launch4j/files/launch4j-3/3.7/launch4j-3.7-win32.zip/download 27 | > unzip launch4j-3.7-win32.zip 28 | > ./gradlew -DLAUNCH4J_HOME=.../path/to/launch4j-3.7-win32 installWindowsDist 29 | ``` 30 | generate _"build/install/jd-gui-windows/jd-gui.exe"_ 31 | ``` 32 | > ./gradlew buildDeb 33 | ``` 34 | generate Ubuntu/Debian installer 35 | ``` 36 | > ./gradlew buildRpm 37 | ``` 38 | generate RedHat/CentOS/Fedora installer 39 | 40 | ##How to launch JD-GUI ? 41 | - Double-click on _"jd-gui-x.y.z.jar"_ 42 | - Double-click on _"JD-GUI"_ application from Mac OSX 43 | - Double-click on _"jd-gui.exe"_ application from Windows 44 | - Execute _"java -jar jd-gui-x.y.z.jar"_ or _"java -classpath jd-gui-x.y.z.jar org.jd.gui.App"_ 45 | 46 | ##How to use JD-GUI ? 47 | - Open a file with menu "File > Open File..." 48 | - Open recent files with menu "File > Recent Files" 49 | - Drag and drop files from your file explorer 50 | 51 | ##How to extend JD-GUI ? 52 | ``` 53 | > ./gradlew idea 54 | ``` 55 | generate Idea Intellij project 56 | ``` 57 | > ./gradlew eclipse 58 | ``` 59 | generate Eclipse project 60 | ``` 61 | > java -classpath jd-gui-x.y.z.jar;myextension1.jar;myextension2.jar org.jd.gui.App 62 | ``` 63 | launch JD-GUI with your extensions 64 | 65 | ##How to uninstall JD-GUI ? 66 | - Java: Delete "jd-gui-x.y.z.jar" and "jd-gui.cfg". 67 | - Mac OSX: Drag and drop "JD-GUI" application into the trash. 68 | - Windows: Delete "jd-gui.exe" and "jd-gui.cfg". 69 | -------------------------------------------------------------------------------- /jd-gui-windows-1.4.0/jd-gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/jd-gui-windows-1.4.0/jd-gui.exe -------------------------------------------------------------------------------- /preview/apkkill1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/preview/apkkill1.png -------------------------------------------------------------------------------- /preview/apkkill2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammercui/android-reverse/08a282178d5116b4e21d6078ad90c2e2d6b156f0/preview/apkkill2.png --------------------------------------------------------------------------------