-
Notifications
You must be signed in to change notification settings - Fork 6
/
AndroidManifest.xml
102 lines (82 loc) · 3.79 KB
/
AndroidManifest.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
99
100
101
102
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.anwarelmakrahy.pwncore"
android:versionCode="1"
android:versionName="1.0b" android:installLocation="auto">
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.VIBRATE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light">
<activity
android:name="com.anwarelmakrahy.pwncore.activities.SplashActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:exported="true"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:label="pwnCore"
android:launchMode="singleTask"
android:name="MainActivity">
</activity>
<service
android:launchMode="singleInstance"
android:name="MainService"
android:enabled="true" >
</service>
<activity
android:label="Settings"
android:name="com.anwarelmakrahy.pwncore.activities.SettingsActivity">
</activity>
<activity
android:label="Attack Wizard"
android:name="com.anwarelmakrahy.pwncore.activities.AttackWizardActivity">
</activity>
<service
android:name="HeadService">
</service>
<activity
android:name="com.anwarelmakrahy.pwncore.activities.ModuleOptionsActivity"
android:label="Module Options"
android:windowSoftInputMode="adjustPan|adjustResize">
</activity>
<activity
android:label="Console Session"
android:name="com.anwarelmakrahy.pwncore.console.ConsoleActivity">
</activity>
<activity
android:label="Set Payload"
android:name="com.anwarelmakrahy.pwncore.activities.PayloadChooserActivity">
</activity>
<activity
android:theme="@style/Theme.PageIndicatorDefaults"
android:label="Attack Hall"
android:name="com.anwarelmakrahy.pwncore.activities.AttackHallActivity">
</activity>
<activity
android:label="Meterpreter Session"
android:name=".plugins.MeterpreterActivity">
</activity>
<service android:name=".webserver.WebServerService"></service>
<activity
android:label="Host Sessions"
android:name=".activities.HostSessionsActivity">
</activity>
<activity android:name=".plugins.ImageViewerActivity"></activity>
<activity android:name=".plugins.ProcessesActivity" android:label="Processes List"></activity>
</application>
</manifest>