├── AUTHORS.txt ├── CHANGELOG.md ├── Introspy-Android Config.apk ├── Introspy-Android Config ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── proguard.cfg ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── list_filter_types.xml │ │ ├── list_item.xml │ │ ├── listfragment.xml │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── introspy │ └── config │ ├── AndroidListFragmentActivity.java │ ├── ApplicationFilter.java │ ├── AsyncOp.java │ ├── HookTypes.java │ ├── InjectConfig.java │ └── UpdateAppList.java ├── Introspy-Android Core.apk ├── Introspy-Android Core ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── ic_launcher-web.png ├── libs │ ├── android-support-v4.jar │ └── substrate-api.jar ├── proguard-project.txt ├── project.properties ├── res │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── introspy │ ├── core │ ├── ApplicationConfig.java │ ├── ApplicationState.java │ ├── HookConfig.java │ ├── IntroHook.java │ ├── IntroStringHelper.java │ ├── IntrospyAndroid.java │ ├── LoadConfig.java │ ├── LoggerWrap.java │ ├── Main.java │ └── package-info.java │ ├── custom_hooks │ ├── CustomHookList.java │ └── HookExampleImpl.java │ ├── hooks │ ├── HookCryptoImpl.java │ ├── HookFileSystemImpl.java │ ├── HookGeneric.java │ ├── HookHashImpl.java │ ├── HookIPCImpl.java │ ├── HookKeyImpl.java │ ├── HookList.java │ ├── HookSQLiteImpl.java │ ├── HookSSLImpl.java │ ├── HookSharedPrefImpl.java │ ├── HookWebviewImpl.java │ └── package-info.java │ └── logging │ ├── Logger.java │ ├── LoggerConfig.java │ ├── LoggerDB.java │ ├── LoggerErrorHandler.java │ ├── LoggerFile.java │ ├── LoggerTraces.java │ ├── SQLiteIntrospy.java │ ├── SQLiteIntrospyHelper.java │ ├── SQLiteIntrospyLog.java │ └── package-info.java ├── LICENSE ├── README.md ├── TODO.txt └── images ├── GUI.png ├── adding_hook_impl.PNG ├── adding_hooks.PNG ├── cydia_installed.png ├── example_logcat.png ├── html_report_android.PNG ├── impl_handle.PNG └── new_object.PNG /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Introspy-Android Config.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config.apk -------------------------------------------------------------------------------- /Introspy-Android Config/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/.classpath -------------------------------------------------------------------------------- /Introspy-Android Config/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/.project -------------------------------------------------------------------------------- /Introspy-Android Config/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Introspy-Android Config/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/AndroidManifest.xml -------------------------------------------------------------------------------- /Introspy-Android Config/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/proguard.cfg -------------------------------------------------------------------------------- /Introspy-Android Config/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/project.properties -------------------------------------------------------------------------------- /Introspy-Android Config/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Introspy-Android Config/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /Introspy-Android Config/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Introspy-Android Config/res/layout/list_filter_types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/res/layout/list_filter_types.xml -------------------------------------------------------------------------------- /Introspy-Android Config/res/layout/list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/res/layout/list_item.xml -------------------------------------------------------------------------------- /Introspy-Android Config/res/layout/listfragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/res/layout/listfragment.xml -------------------------------------------------------------------------------- /Introspy-Android Config/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/res/layout/main.xml -------------------------------------------------------------------------------- /Introspy-Android Config/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/res/values/strings.xml -------------------------------------------------------------------------------- /Introspy-Android Config/src/com/introspy/config/AndroidListFragmentActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/src/com/introspy/config/AndroidListFragmentActivity.java -------------------------------------------------------------------------------- /Introspy-Android Config/src/com/introspy/config/ApplicationFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/src/com/introspy/config/ApplicationFilter.java -------------------------------------------------------------------------------- /Introspy-Android Config/src/com/introspy/config/AsyncOp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/src/com/introspy/config/AsyncOp.java -------------------------------------------------------------------------------- /Introspy-Android Config/src/com/introspy/config/HookTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/src/com/introspy/config/HookTypes.java -------------------------------------------------------------------------------- /Introspy-Android Config/src/com/introspy/config/InjectConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/src/com/introspy/config/InjectConfig.java -------------------------------------------------------------------------------- /Introspy-Android Config/src/com/introspy/config/UpdateAppList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Config/src/com/introspy/config/UpdateAppList.java -------------------------------------------------------------------------------- /Introspy-Android Core.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core.apk -------------------------------------------------------------------------------- /Introspy-Android Core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/.classpath -------------------------------------------------------------------------------- /Introspy-Android Core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/.project -------------------------------------------------------------------------------- /Introspy-Android Core/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Introspy-Android Core/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/AndroidManifest.xml -------------------------------------------------------------------------------- /Introspy-Android Core/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/ic_launcher-web.png -------------------------------------------------------------------------------- /Introspy-Android Core/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Introspy-Android Core/libs/substrate-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/libs/substrate-api.jar -------------------------------------------------------------------------------- /Introspy-Android Core/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/proguard-project.txt -------------------------------------------------------------------------------- /Introspy-Android Core/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/project.properties -------------------------------------------------------------------------------- /Introspy-Android Core/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/res/values/dimens.xml -------------------------------------------------------------------------------- /Introspy-Android Core/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/res/values/strings.xml -------------------------------------------------------------------------------- /Introspy-Android Core/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/res/values/styles.xml -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/core/ApplicationConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/core/ApplicationConfig.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/core/ApplicationState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/core/ApplicationState.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/core/HookConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/core/HookConfig.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/core/IntroHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/core/IntroHook.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/core/IntroStringHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/core/IntroStringHelper.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/core/IntrospyAndroid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/core/IntrospyAndroid.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/core/LoadConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/core/LoadConfig.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/core/LoggerWrap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/core/LoggerWrap.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/core/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/core/Main.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/core/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/core/package-info.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/custom_hooks/CustomHookList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/custom_hooks/CustomHookList.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/custom_hooks/HookExampleImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/custom_hooks/HookExampleImpl.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/hooks/HookCryptoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/hooks/HookCryptoImpl.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/hooks/HookFileSystemImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/hooks/HookFileSystemImpl.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/hooks/HookGeneric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/hooks/HookGeneric.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/hooks/HookHashImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/hooks/HookHashImpl.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/hooks/HookIPCImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/hooks/HookIPCImpl.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/hooks/HookKeyImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/hooks/HookKeyImpl.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/hooks/HookList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/hooks/HookList.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/hooks/HookSQLiteImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/hooks/HookSQLiteImpl.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/hooks/HookSSLImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/hooks/HookSSLImpl.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/hooks/HookSharedPrefImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/hooks/HookSharedPrefImpl.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/hooks/HookWebviewImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/hooks/HookWebviewImpl.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/hooks/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/hooks/package-info.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/logging/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/logging/Logger.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/logging/LoggerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/logging/LoggerConfig.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/logging/LoggerDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/logging/LoggerDB.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/logging/LoggerErrorHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/logging/LoggerErrorHandler.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/logging/LoggerFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/logging/LoggerFile.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/logging/LoggerTraces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/logging/LoggerTraces.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/logging/SQLiteIntrospy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/logging/SQLiteIntrospy.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/logging/SQLiteIntrospyHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/logging/SQLiteIntrospyHelper.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/logging/SQLiteIntrospyLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/logging/SQLiteIntrospyLog.java -------------------------------------------------------------------------------- /Introspy-Android Core/src/com/introspy/logging/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/Introspy-Android Core/src/com/introspy/logging/package-info.java -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/README.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/TODO.txt -------------------------------------------------------------------------------- /images/GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/images/GUI.png -------------------------------------------------------------------------------- /images/adding_hook_impl.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/images/adding_hook_impl.PNG -------------------------------------------------------------------------------- /images/adding_hooks.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/images/adding_hooks.PNG -------------------------------------------------------------------------------- /images/cydia_installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/images/cydia_installed.png -------------------------------------------------------------------------------- /images/example_logcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/images/example_logcat.png -------------------------------------------------------------------------------- /images/html_report_android.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/images/html_report_android.PNG -------------------------------------------------------------------------------- /images/impl_handle.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/images/impl_handle.PNG -------------------------------------------------------------------------------- /images/new_object.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSECPartners/Introspy-Android/HEAD/images/new_object.PNG --------------------------------------------------------------------------------