mirror of
https://github.com/androguard/androguard.git
synced 2024-11-26 22:40:33 +00:00
66 lines
2.4 KiB
Python
Executable File
66 lines
2.4 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# This file is part of Androguard.
|
|
#
|
|
# Copyright (C) 2010, Anthony Desnos <desnos at t0t0.org>
|
|
# All rights reserved.
|
|
#
|
|
# Androguard is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Androguard is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# along with Androguard. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import sys, os, cmd, threading, re
|
|
|
|
from optparse import OptionParser
|
|
|
|
import androguard, misc
|
|
|
|
option_0 = { 'name' : ('-i', '--input'), 'help' : 'file : use this filename', 'nargs' : 1 }
|
|
|
|
option_1 = { 'name' : ('-d', '--display'), 'help' : 'display the file in human readable format', 'action' : 'count' }
|
|
|
|
option_2 = { 'name' : ('-m', '--method'), 'help' : 'display method(s) respect with a regexp', 'nargs' : 1 }
|
|
option_3 = { 'name' : ('-f', '--field'), 'help' : 'display field(s) respect with a regexp', 'nargs' : 1 }
|
|
|
|
option_4 = { 'name' : ('-s', '--shell'), 'help' : 'open a shell to interact more easily with objects', 'action' : 'count' }
|
|
|
|
option_5 = { 'name' : ('-v', '--version'), 'help' : 'version of the API', 'action' : 'count' }
|
|
|
|
options = [option_0, option_1, option_2, option_3, option_4, option_5]
|
|
|
|
def main(options, arguments) :
|
|
if options.input != None :
|
|
_a = androguard.AndroguardS( options.input )
|
|
|
|
if options.display != None :
|
|
_a.show()
|
|
elif options.method != None :
|
|
for method in _a.get("method", options.method) :
|
|
method.show()
|
|
elif options.field != None :
|
|
for field in _a.get("field", options.field) :
|
|
field.show()
|
|
|
|
elif options.version != None :
|
|
print "Andromarks version %s" % misc.VERSION
|
|
|
|
if __name__ == "__main__" :
|
|
parser = OptionParser()
|
|
for option in options :
|
|
param = option['name']
|
|
del option['name']
|
|
parser.add_option(*param, **option)
|
|
|
|
options, arguments = parser.parse_args()
|
|
sys.argv[:] = arguments
|
|
main(options, arguments)
|