티스토리 뷰

소스 코드

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
# -*- coding: utf8 -*-
import re, os, sys
 
debug = 0
 
def Check_Main_Activity(activity):
    code = activity[1]
 
    if debug:
        print activity
    
    exp = re.compile(r"[\s]+<intent-filter[ \S]*?>([\s\w<>\"\/\=\-\.\:]+?)</intent-filter>\n"
    intent_filter = re.findall(exp, code)
 
    if not code:
        return 0
 
    for tag in intent_filter:
        exp = re.compile(r"[\s]+<category[ \S]*?android:name=\"([\w.]+)\"[ \S]*?/>\n"
        result = re.findall(exp, tag)
        if not result:
            continue
        if result[0].find("LAUNCHER"!= -1:
            print "[+] Find : " + result[0]
            return 1
 
    return 0
 
def Find_Main_Activity(Manifest_Path):
    global debug
    f = open(Manifest_Path, "rt")
 
    code = f.read()
 
    count = 0
 
    exp = re.compile(r"[\s]+<activity[ \S]+?android:name=\"([\w.]+)\"[ \S]*?>([\s\w<>\"\/\=\-\.\:]+?)</activity>\n"
    activity = re.findall(exp, code)
 
    if not activity:
        return "[-] Error. Don't found MainActivity."
 
    for i in range(0len(activity), 1):
        if Check_Main_Activity(activity[i]) != 0:
            name = activity[i][0]
            print "[+] Num.{0} : {1}".format(count, name)
            count += 1
    
    if count != 1:
        return "[-] Error. MainActivity should only one."
 
    return name
 
if __name__ == "__main__":
    if len(sys.argv) != 2:
        print "Usage: {0} [AndroidManifest.xml Path]".format(sys.argv[0])
        os._exit(0)
 
    print "====================================================="
    print "|               Find Main Activity                  |"
    print "====================================================="
    Manifest_Path = sys.argv[1]
    print "[+] File Path : " + Manifest_Path
    Main_Activity = Find_Main_Activity(Manifest_Path)
    print "[+] Main Activity : " + Main_Activity
    print "====================================================="
    print "[+] Export Smali Path Done..."
 
cs


사용 방법

- main_activity.py [AndroidManifest.xml Path]


첨부 파일

main_activity.py



'Reversing' 카테고리의 다른 글

C++ Reversing  (0) 2017.10.03
Ida Plugin 리스트 및 사용법  (0) 2017.10.03
[Android] smali 코드 분석 연습  (4) 2017.08.22
Windbg 사용법 정리  (0) 2017.07.16
C++ 클래스 멤버 함수  (0) 2016.07.01
댓글
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2024/05   »
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