Skip to content

Commit 655deb1

Browse files
authored
Add pyaxmlparser to the tools
pyaxmlparser also offers a commandline tool `apkinfo` which provides quick way of showing the properties of APK. Sample code output: ``` $ apkinfo ~/Downloads/com.hardcodedjoy.roboremo.15.apk APK: /home/chillaranand/Downloads/com.hardcodedjoy.roboremo.15.apk App name: RoboRemo Package: com.hardcodedjoy.roboremo Version name: 2.0.0 Version code: 15 Is it Signed: True Is it Signed with v1 Signatures: True Is it Signed with v2 Signatures: True Is it Signed with v3 Signatures: False ```
1 parent 47f3f7d commit 655deb1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Dockerfile.re

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,9 @@ RUN pip3 install apkleaks
174174
# apkleaks requires jadx to be on the path
175175
ENV PATH $PATH:/opt/jadx/jadx/bin
176176

177+
# pyaxml parser which will install a commandline apkinfo to quickly display info about APK
178+
RUN pip3 install pyaxmlparser
179+
177180

178181
# ------------------------ Install SSH access ---------------------------------------------
179182
RUN mkdir /var/run/sshd \

0 commit comments

Comments
 (0)