├── settings.gradle ├── cSploit ├── src │ ├── main │ │ ├── res │ │ │ ├── raw │ │ │ │ ├── .gitignore │ │ │ │ └── webdic.zip │ │ │ ├── drawable │ │ │ │ ├── top_shadow.png │ │ │ │ ├── card_shadow.9.png │ │ │ │ ├── card_background.9.png │ │ │ │ ├── card_background_dark.9.png │ │ │ │ ├── card_background_shadow.9.png │ │ │ │ ├── rounded_square_grey.xml │ │ │ │ ├── rounded_square.xml │ │ │ │ ├── ic_stop_24dp.xml │ │ │ │ ├── ic_play_arrow_24dp.xml │ │ │ │ ├── actionbar_gradient.xml │ │ │ │ └── selectable_background_cardbank.xml │ │ │ ├── drawable-hdpi │ │ │ │ ├── exploit.png │ │ │ │ ├── ic_refresh.png │ │ │ │ ├── target_add.png │ │ │ │ ├── action_back.png │ │ │ │ ├── action_forge.png │ │ │ │ ├── action_hijack.png │ │ │ │ ├── action_image.png │ │ │ │ ├── action_kill.png │ │ │ │ ├── action_login.png │ │ │ │ ├── action_mitm.png │ │ │ │ ├── action_open.png │ │ │ │ ├── action_plugin.png │ │ │ │ ├── action_scan.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── dsploit_icon.png │ │ │ │ ├── exploit_msf.png │ │ │ │ ├── favicon_xda.png │ │ │ │ ├── https_session.png │ │ │ │ ├── ic_impossible.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_possible.png │ │ │ │ ├── target_remote.png │ │ │ │ ├── target_router.png │ │ │ │ ├── target_self.png │ │ │ │ ├── action_backward.png │ │ │ │ ├── action_exploit.png │ │ │ │ ├── action_forward.png │ │ │ │ ├── action_inspect.png │ │ │ │ ├── action_monitor.png │ │ │ │ ├── action_redirect.png │ │ │ │ ├── action_refresh.png │ │ │ │ ├── action_scanner.png │ │ │ │ ├── action_session.png │ │ │ │ ├── action_sniffer.png │ │ │ │ ├── action_youtube.png │ │ │ │ ├── favicon_amazon.png │ │ │ │ ├── favicon_blogger.png │ │ │ │ ├── favicon_generic.png │ │ │ │ ├── favicon_google.png │ │ │ │ ├── favicon_tumblr.png │ │ │ │ ├── favicon_twitter.png │ │ │ │ ├── favicon_youtube.png │ │ │ │ ├── target_endpoint.png │ │ │ │ ├── target_network.png │ │ │ │ ├── action_injection.png │ │ │ │ ├── action_passwords.png │ │ │ │ ├── action_routerpwn.png │ │ │ │ ├── action_traceroute.png │ │ │ │ ├── favicon_facebook.png │ │ │ │ ├── ic_done_white_24dp.png │ │ │ │ ├── ic_wifi_signal_1.png │ │ │ │ ├── ic_wifi_signal_2.png │ │ │ │ ├── ic_wifi_signal_3.png │ │ │ │ ├── ic_wifi_signal_4.png │ │ │ │ ├── action_exploit_finder.png │ │ │ │ ├── ic_wifi_lock_signal_1.png │ │ │ │ ├── ic_wifi_lock_signal_2.png │ │ │ │ ├── ic_wifi_lock_signal_3.png │ │ │ │ ├── ic_wifi_lock_signal_4.png │ │ │ │ └── actionbar_gradient.xml │ │ │ ├── drawable-mdpi │ │ │ │ ├── exploit.png │ │ │ │ ├── ic_refresh.png │ │ │ │ ├── target_add.png │ │ │ │ ├── action_back.png │ │ │ │ ├── action_explo.png │ │ │ │ ├── action_forge.png │ │ │ │ ├── action_hijack.png │ │ │ │ ├── action_image.png │ │ │ │ ├── action_kill.png │ │ │ │ ├── action_login.png │ │ │ │ ├── action_mitm.png │ │ │ │ ├── action_open.png │ │ │ │ ├── action_plugin.png │ │ │ │ ├── action_scan.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── dsploit_icon.png │ │ │ │ ├── exploit_msf.png │ │ │ │ ├── favicon_xda.png │ │ │ │ ├── https_session.png │ │ │ │ ├── ic_impossible.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_possible.png │ │ │ │ ├── target_remote.png │ │ │ │ ├── target_router.png │ │ │ │ ├── target_self.png │ │ │ │ ├── action_backward.png │ │ │ │ ├── action_forward.png │ │ │ │ ├── action_inspect.png │ │ │ │ ├── action_monitor.png │ │ │ │ ├── action_redirect.png │ │ │ │ ├── action_refresh.png │ │ │ │ ├── action_scanner.png │ │ │ │ ├── action_session.png │ │ │ │ ├── action_sniffer.png │ │ │ │ ├── action_youtube.png │ │ │ │ ├── favicon_amazon.png │ │ │ │ ├── favicon_blogger.png │ │ │ │ ├── favicon_generic.png │ │ │ │ ├── favicon_google.png │ │ │ │ ├── favicon_tumblr.png │ │ │ │ ├── favicon_twitter.png │ │ │ │ ├── favicon_youtube.png │ │ │ │ ├── target_endpoint.png │ │ │ │ ├── target_network.png │ │ │ │ ├── action_injection.png │ │ │ │ ├── action_passwords.png │ │ │ │ ├── action_routerpwn.png │ │ │ │ ├── action_traceroute.png │ │ │ │ ├── favicon_facebook.png │ │ │ │ ├── ic_done_white_24dp.png │ │ │ │ ├── ic_wifi_signal_1.png │ │ │ │ ├── ic_wifi_signal_2.png │ │ │ │ ├── ic_wifi_signal_3.png │ │ │ │ ├── ic_wifi_signal_4.png │ │ │ │ ├── action_exploit_finder.png │ │ │ │ ├── ic_wifi_lock_signal_1.png │ │ │ │ ├── ic_wifi_lock_signal_2.png │ │ │ │ ├── ic_wifi_lock_signal_3.png │ │ │ │ ├── ic_wifi_lock_signal_4.png │ │ │ │ └── actionbar_gradient.xml │ │ │ ├── drawable-xhdpi │ │ │ │ ├── exploit.png │ │ │ │ ├── action_back.png │ │ │ │ ├── action_forge.png │ │ │ │ ├── action_image.png │ │ │ │ ├── action_kill.png │ │ │ │ ├── action_login.png │ │ │ │ ├── action_mitm.png │ │ │ │ ├── action_open.png │ │ │ │ ├── action_scan.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── exploit_msf.png │ │ │ │ ├── target_add.png │ │ │ │ ├── target_self.png │ │ │ │ ├── action_exploit.png │ │ │ │ ├── action_forward.png │ │ │ │ ├── action_hijack.png │ │ │ │ ├── action_inject.png │ │ │ │ ├── action_inspect.png │ │ │ │ ├── action_monitor.png │ │ │ │ ├── action_plugin.png │ │ │ │ ├── action_refresh.png │ │ │ │ ├── action_scanner.png │ │ │ │ ├── action_session.png │ │ │ │ ├── action_sniffer.png │ │ │ │ ├── action_youtube.png │ │ │ │ ├── https_session.png │ │ │ │ ├── target_network.png │ │ │ │ ├── target_remote.png │ │ │ │ ├── target_router.png │ │ │ │ ├── action_backward.png │ │ │ │ ├── action_passwords.png │ │ │ │ ├── action_redirect.png │ │ │ │ ├── action_routerpwn.png │ │ │ │ ├── action_traceroute.png │ │ │ │ ├── target_endpoint.png │ │ │ │ ├── ic_done_white_24dp.png │ │ │ │ └── action_exploit_finder.png │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── exploit.png │ │ │ │ ├── action_back.png │ │ │ │ ├── action_kill.png │ │ │ │ ├── action_mitm.png │ │ │ │ ├── action_open.png │ │ │ │ ├── action_scan.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── exploit_msf.png │ │ │ │ ├── target_add.png │ │ │ │ ├── target_self.png │ │ │ │ ├── action_forge.png │ │ │ │ ├── action_hijack.png │ │ │ │ ├── action_image.png │ │ │ │ ├── action_login.png │ │ │ │ ├── action_plugin.png │ │ │ │ ├── https_session.png │ │ │ │ ├── target_remote.png │ │ │ │ ├── target_router.png │ │ │ │ ├── action_backwards.png │ │ │ │ ├── action_exploit.png │ │ │ │ ├── action_forward.png │ │ │ │ ├── action_injection.png │ │ │ │ ├── action_inspect.png │ │ │ │ ├── action_monitor.png │ │ │ │ ├── action_passwords.png │ │ │ │ ├── action_redirect.png │ │ │ │ ├── action_refresh.png │ │ │ │ ├── action_routerpwn.png │ │ │ │ ├── action_scanner.png │ │ │ │ ├── action_session.png │ │ │ │ ├── action_sniffer.png │ │ │ │ ├── action_youtube.png │ │ │ │ ├── target_endpoint.png │ │ │ │ ├── target_network.png │ │ │ │ ├── action_traceroute.png │ │ │ │ ├── ic_done_white_24dp.png │ │ │ │ └── action_exploit_finder.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── ic_done_white_24dp.png │ │ │ ├── menu │ │ │ │ ├── main_multi.xml │ │ │ │ ├── exploit_finder.xml │ │ │ │ ├── console.xml │ │ │ │ ├── inspector.xml │ │ │ │ ├── traceroute.xml │ │ │ │ ├── wifi_scanner.xml │ │ │ │ ├── hijacker.xml │ │ │ │ ├── password_sniffer.xml │ │ │ │ ├── port_scanner.xml │ │ │ │ ├── vulnerability_finder.xml │ │ │ │ ├── login_cracker.xml │ │ │ │ ├── browser.xml │ │ │ │ └── main.xml │ │ │ ├── layout │ │ │ │ ├── main.xml │ │ │ │ ├── dirpicker_list_item.xml │ │ │ │ ├── plugin_mitm.xml │ │ │ │ ├── dirpicker_chooser_list.xml │ │ │ │ ├── plugin_mitm_sniffer_list_item.xml │ │ │ │ ├── target_empty.xml │ │ │ │ ├── wifi_scanner.xml │ │ │ │ ├── actions_layout.xml │ │ │ │ ├── plugin_traceroute.xml │ │ │ │ ├── plugin_sessions_list_item.xml │ │ │ │ ├── plugin_sessions_layout.xml │ │ │ │ ├── plugin_mitm_hijacker_list_item.xml │ │ │ │ ├── plugin_exploit_finder.xml │ │ │ │ ├── file_edit.xml │ │ │ │ ├── target_layout.xml │ │ │ │ ├── plugin_mitm_hijacker_webview.xml │ │ │ │ ├── plugin_exploit_finder_item.xml │ │ │ │ └── plugin_mitm_password_sniffer.xml │ │ │ ├── anim │ │ │ │ ├── fadein.xml │ │ │ │ ├── fadeout.xml │ │ │ │ ├── slide_in_left.xml │ │ │ │ └── slide_out_left.xml │ │ │ └── values │ │ │ │ └── colors.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── csploit │ │ │ │ └── android │ │ │ │ ├── events │ │ │ │ ├── Event.java │ │ │ │ ├── Ready.java │ │ │ │ ├── ChildDied.java │ │ │ │ ├── Newline.java │ │ │ │ ├── ChildEnd.java │ │ │ │ ├── StderrNewline.java │ │ │ │ ├── Attempts.java │ │ │ │ ├── HostLost.java │ │ │ │ ├── FuseBind.java │ │ │ │ ├── Os.java │ │ │ │ ├── Login.java │ │ │ │ ├── Packet.java │ │ │ │ ├── Hop.java │ │ │ │ ├── Message.java │ │ │ │ ├── Account.java │ │ │ │ ├── Host.java │ │ │ │ └── Port.java │ │ │ │ ├── net │ │ │ │ ├── reference │ │ │ │ │ ├── Url.java │ │ │ │ │ ├── Reference.java │ │ │ │ │ ├── Vulnerability.java │ │ │ │ │ ├── Link.java │ │ │ │ │ ├── OSVDB.java │ │ │ │ │ └── CVE.java │ │ │ │ ├── metasploit │ │ │ │ │ ├── Author.java │ │ │ │ │ └── Payload.java │ │ │ │ ├── datasource │ │ │ │ │ ├── Generic.java │ │ │ │ │ └── Search.java │ │ │ │ └── http │ │ │ │ │ └── proxy │ │ │ │ │ └── HTTPSMonitor.java │ │ │ │ ├── services │ │ │ │ ├── Service.java │ │ │ │ ├── MenuControllableService.java │ │ │ │ ├── Services.java │ │ │ │ ├── NativeService.java │ │ │ │ └── receivers │ │ │ │ │ └── NetworkRadarReceiver.java │ │ │ │ ├── helpers │ │ │ │ └── ThreadHelper.java │ │ │ │ ├── update │ │ │ │ ├── CoreUpdate.java │ │ │ │ ├── MsfUpdate.java │ │ │ │ ├── RubyUpdate.java │ │ │ │ ├── ApkUpdate.java │ │ │ │ └── Update.java │ │ │ │ ├── core │ │ │ │ ├── Client.java │ │ │ │ ├── SettingReceiver.java │ │ │ │ ├── Logger.java │ │ │ │ ├── CrashReporter.java │ │ │ │ ├── ManagedReceiver.java │ │ │ │ └── Profiler.java │ │ │ │ ├── tools │ │ │ │ ├── Ip.java │ │ │ │ ├── Logcat.java │ │ │ │ ├── MsfRpcd.java │ │ │ │ ├── Msf.java │ │ │ │ ├── Fusemounts.java │ │ │ │ ├── Shell.java │ │ │ │ ├── Raw.java │ │ │ │ └── NetworkRadar.java │ │ │ │ ├── wifi │ │ │ │ └── algorithms │ │ │ │ │ ├── ConnKeygen.java │ │ │ │ │ ├── MegaredKeygen.java │ │ │ │ │ ├── AndaredKeygen.java │ │ │ │ │ ├── OteKeygen.java │ │ │ │ │ ├── InfostradaKeygen.java │ │ │ │ │ ├── DiscusKeygen.java │ │ │ │ │ ├── TecomKeygen.java │ │ │ │ │ ├── ZyxelKeygen.java │ │ │ │ │ └── VerizonKeygen.java │ │ │ │ ├── gui │ │ │ │ └── dialogs │ │ │ │ │ ├── ErrorDialog.java │ │ │ │ │ ├── FinishDialog.java │ │ │ │ │ ├── ConfirmDialog.java │ │ │ │ │ ├── FatalDialog.java │ │ │ │ │ └── AboutDialog.java │ │ │ │ ├── ActionActivity.java │ │ │ │ ├── WifiScannerActivity.java │ │ │ │ └── SettingsActivity.java │ │ ├── assets │ │ │ └── csploit.p12 │ │ └── jniLibs │ │ │ └── README │ └── test │ │ └── java │ │ └── org │ │ └── csploit │ │ └── android │ │ └── helpers │ │ └── NetworkHelperTest.java ├── .gitignore ├── ic_launcher-web.png ├── lint.xml ├── project.properties └── proguard-project.txt ├── gradle.properties ├── .gitmodules ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .tx └── config ├── ISSUE_TEMPLATE.md ├── setup-cronjob.sh └── .gitignore /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':cSploit' 2 | -------------------------------------------------------------------------------- /cSploit/src/main/res/raw/.gitignore: -------------------------------------------------------------------------------- 1 | !webdic.zip 2 | -------------------------------------------------------------------------------- /cSploit/.gitignore: -------------------------------------------------------------------------------- 1 | obj 2 | libs 3 | dist 4 | *.so 5 | *.jks 6 | *.tar.* 7 | *.zip 8 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | android.enableJetifier=true 2 | android.useAndroidX=true 3 | android.enableR8 = true 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "cSploit/jni"] 2 | path = cSploit/jni 3 | url = https://github.com/cSploit/android.native.git 4 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/Event.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | /** 4 | * main event interface 5 | */ 6 | public interface Event { 7 | } 8 | -------------------------------------------------------------------------------- /cSploit/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/ic_launcher-web.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /cSploit/src/main/assets/csploit.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/assets/csploit.p12 -------------------------------------------------------------------------------- /cSploit/src/main/res/raw/webdic.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/raw/webdic.zip -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/net/reference/Url.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.net.reference; 2 | 3 | /** 4 | * a simple URL reference 5 | */ 6 | public interface Url { 7 | String getUrl(); 8 | } 9 | -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable/top_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable/top_shadow.png -------------------------------------------------------------------------------- /cSploit/src/main/jniLibs/README: -------------------------------------------------------------------------------- 1 | Add prebuilt jni libraries here: 2 | 3 | ./armeabi-v7a/libcSploitClient.so 4 | ./armeabi-v7a/libcSploitCommon.so 5 | ./armeabi/libcSploitClient.so 6 | ./armeabi/libcSploitCommon.so 7 | etc. 8 | -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/exploit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/exploit.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/exploit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/exploit.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/exploit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/exploit.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable/card_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable/card_shadow.9.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/ic_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/ic_refresh.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/target_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/target_add.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/ic_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/ic_refresh.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/target_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/target_add.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/exploit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/exploit.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_back.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_forge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_forge.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_hijack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_hijack.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_image.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_kill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_kill.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_login.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_mitm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_mitm.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_open.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_plugin.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_scan.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/arrow_right.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/dsploit_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/dsploit_icon.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/exploit_msf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/exploit_msf.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/favicon_xda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/favicon_xda.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/https_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/https_session.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/ic_impossible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/ic_impossible.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/ic_possible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/ic_possible.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/target_remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/target_remote.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/target_router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/target_router.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/target_self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/target_self.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_back.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_explo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_explo.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_forge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_forge.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_hijack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_hijack.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_image.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_kill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_kill.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_login.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_mitm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_mitm.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_open.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_plugin.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_scan.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/arrow_right.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/dsploit_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/dsploit_icon.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/exploit_msf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/exploit_msf.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/favicon_xda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/favicon_xda.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/https_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/https_session.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/ic_impossible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/ic_impossible.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/ic_possible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/ic_possible.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/target_remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/target_remote.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/target_router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/target_router.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/target_self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/target_self.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_back.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_forge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_forge.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_image.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_kill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_kill.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_login.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_mitm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_mitm.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_open.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_scan.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/arrow_right.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/exploit_msf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/exploit_msf.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/target_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/target_add.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/target_self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/target_self.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_back.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_kill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_kill.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_mitm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_mitm.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_open.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_scan.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/arrow_right.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/exploit_msf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/exploit_msf.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/target_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/target_add.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/target_self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/target_self.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable/card_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable/card_background.9.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_backward.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_exploit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_exploit.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_forward.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_inspect.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_monitor.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_redirect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_redirect.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_refresh.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_scanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_scanner.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_session.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_sniffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_sniffer.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_youtube.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/favicon_amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/favicon_amazon.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/favicon_blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/favicon_blogger.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/favicon_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/favicon_generic.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/favicon_google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/favicon_google.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/favicon_tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/favicon_tumblr.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/favicon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/favicon_twitter.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/favicon_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/favicon_youtube.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/target_endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/target_endpoint.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/target_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/target_network.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_backward.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_forward.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_inspect.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_monitor.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_redirect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_redirect.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_refresh.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_scanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_scanner.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_session.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_sniffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_sniffer.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_youtube.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/favicon_amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/favicon_amazon.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/favicon_blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/favicon_blogger.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/favicon_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/favicon_generic.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/favicon_google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/favicon_google.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/favicon_tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/favicon_tumblr.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/favicon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/favicon_twitter.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/favicon_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/favicon_youtube.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/target_endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/target_endpoint.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/target_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/target_network.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_exploit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_exploit.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_forward.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_hijack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_hijack.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_inject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_inject.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_inspect.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_monitor.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_plugin.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_refresh.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_scanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_scanner.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_session.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_sniffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_sniffer.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_youtube.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/https_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/https_session.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/target_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/target_network.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/target_remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/target_remote.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/target_router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/target_router.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_forge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_forge.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_hijack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_hijack.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_image.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_login.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_plugin.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/https_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/https_session.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/target_remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/target_remote.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/target_router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/target_router.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_injection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_injection.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_passwords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_passwords.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_routerpwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_routerpwn.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_traceroute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_traceroute.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/favicon_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/favicon_facebook.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/ic_done_white_24dp.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/ic_wifi_signal_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/ic_wifi_signal_1.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/ic_wifi_signal_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/ic_wifi_signal_2.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/ic_wifi_signal_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/ic_wifi_signal_3.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/ic_wifi_signal_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/ic_wifi_signal_4.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_injection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_injection.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_passwords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_passwords.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_routerpwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_routerpwn.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_traceroute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_traceroute.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/favicon_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/favicon_facebook.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/ic_done_white_24dp.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/ic_wifi_signal_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/ic_wifi_signal_1.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/ic_wifi_signal_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/ic_wifi_signal_2.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/ic_wifi_signal_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/ic_wifi_signal_3.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/ic_wifi_signal_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/ic_wifi_signal_4.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_backward.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_passwords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_passwords.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_redirect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_redirect.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_routerpwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_routerpwn.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_traceroute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_traceroute.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/target_endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/target_endpoint.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_backwards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_backwards.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_exploit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_exploit.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_forward.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_injection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_injection.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_inspect.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_monitor.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_passwords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_passwords.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_redirect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_redirect.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_refresh.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_routerpwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_routerpwn.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_scanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_scanner.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_session.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_sniffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_sniffer.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_youtube.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/target_endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/target_endpoint.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/target_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/target_network.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable/card_background_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable/card_background_dark.9.png -------------------------------------------------------------------------------- /cSploit/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/ic_done_white_24dp.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_traceroute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_traceroute.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/ic_done_white_24dp.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable/card_background_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable/card_background_shadow.9.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/action_exploit_finder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/action_exploit_finder.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/ic_wifi_lock_signal_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/ic_wifi_lock_signal_1.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/ic_wifi_lock_signal_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/ic_wifi_lock_signal_2.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/ic_wifi_lock_signal_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/ic_wifi_lock_signal_3.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/ic_wifi_lock_signal_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-hdpi/ic_wifi_lock_signal_4.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/action_exploit_finder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/action_exploit_finder.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/ic_wifi_lock_signal_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/ic_wifi_lock_signal_1.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/ic_wifi_lock_signal_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/ic_wifi_lock_signal_2.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/ic_wifi_lock_signal_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/ic_wifi_lock_signal_3.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/ic_wifi_lock_signal_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-mdpi/ic_wifi_lock_signal_4.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xhdpi/action_exploit_finder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xhdpi/action_exploit_finder.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxhdpi/action_exploit_finder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxhdpi/action_exploit_finder.png -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-xxxhdpi/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/cSploit---The-most-complete-and-advanced-IT-security-professional-toolkit-on-Android./HEAD/cSploit/src/main/res/drawable-xxxhdpi/ic_done_white_24dp.png -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/services/Service.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.services; 2 | 3 | /** 4 | * Represent a service 5 | */ 6 | public interface Service { 7 | boolean start(); 8 | boolean stop(); 9 | boolean isRunning(); 10 | } 11 | -------------------------------------------------------------------------------- /cSploit/src/main/res/menu/main_multi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [csploit.strings] 5 | file_filter = cSploit/res/values-/strings.xml 6 | source_file = cSploit/res/values/strings.xml 7 | source_lang = en 8 | trans.zh = cSploit/res/values-zh-rCN/strings.xml 9 | type = ANDROID 10 | -------------------------------------------------------------------------------- /cSploit/src/main/res/menu/exploit_finder.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Oct 17 19:27:29 PDT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /cSploit/src/main/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/net/reference/Reference.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.net.reference; 2 | 3 | /** 4 | * a reference to something 5 | * 6 | * TODO: getDrawableResourceId 7 | */ 8 | public interface Reference { 9 | String getName(); 10 | String getSummary(); 11 | } 12 | -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable/rounded_square_grey.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/Ready.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | /** 4 | * a child is ready to perform some specific operation. 5 | */ 6 | public class Ready implements Event { 7 | @Override 8 | public String toString() { 9 | return "Ready: {}"; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable/rounded_square.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /cSploit/src/main/res/anim/fadein.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /cSploit/src/main/res/anim/fadeout.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /cSploit/src/main/res/menu/console.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | -------------------------------------------------------------------------------- /cSploit/src/main/res/menu/inspector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /cSploit/src/main/res/menu/traceroute.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /cSploit/src/main/res/layout/dirpicker_list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable/ic_stop_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable/ic_play_arrow_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /cSploit/src/main/res/menu/wifi_scanner.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/net/reference/Vulnerability.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.net.reference; 2 | 3 | /** 4 | * a vulnerability reference 5 | */ 6 | public interface Vulnerability extends Reference, Url { 7 | /** 8 | * get vulnerability severity 9 | * 10 | * @return vulnerability severity (from 0 to 100) 11 | */ 12 | short getSeverity(); 13 | String getDescription(); 14 | } 15 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/ChildDied.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | /** 4 | * a child has died 5 | */ 6 | public class ChildDied implements Event { 7 | public final int signal; 8 | 9 | public ChildDied(int signal) { 10 | this.signal = signal; 11 | } 12 | 13 | public String toString() { 14 | return String.format("ChildDied: { signal=%d }", signal); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/services/MenuControllableService.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.services; 2 | 3 | import android.app.Activity; 4 | import android.view.MenuItem; 5 | 6 | /** 7 | * A service that can be controlled from the main app menu. 8 | */ 9 | public interface MenuControllableService { 10 | void onMenuClick(Activity activity, MenuItem item); 11 | void buildMenuItem(MenuItem item); 12 | } 13 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/Newline.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | /** 4 | * got a newline from a child. 5 | */ 6 | public class Newline implements Event { 7 | public final String line; 8 | 9 | public Newline(String line) { 10 | this.line = line; 11 | } 12 | 13 | public String toString() { 14 | return String.format("NewlineEvent: { line='%s' }", line); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /cSploit/src/main/res/menu/hijacker.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/ChildEnd.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | /** 4 | * a child is ended 5 | */ 6 | public class ChildEnd implements Event { 7 | public final int exit_status; 8 | 9 | public ChildEnd(int exit_status) { 10 | this.exit_status = exit_status; 11 | } 12 | 13 | public String toString() { 14 | return String.format("ChildEnd: { exit_status=%d }", exit_status); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /cSploit/src/main/res/menu/password_sniffer.xml: -------------------------------------------------------------------------------- 1 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /cSploit/src/main/res/menu/port_scanner.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 11 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/StderrNewline.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | /** 4 | * a line has been printed on child stderr 5 | */ 6 | public class StderrNewline implements Event { 7 | public final String line; 8 | 9 | public StderrNewline(String line) { 10 | this.line = line; 11 | } 12 | 13 | @Override 14 | public String toString() { 15 | return "StderrNewline: { line='" + this.line + "' }"; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /cSploit/src/main/res/anim/slide_in_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 12 | -------------------------------------------------------------------------------- /cSploit/src/main/res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 12 | -------------------------------------------------------------------------------- /cSploit/src/main/res/menu/vulnerability_finder.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/Attempts.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | /** 4 | * hydra attempts status 5 | */ 6 | public class Attempts implements Event { 7 | public final long sent; 8 | public final long left; 9 | public final long elapsed; 10 | public final long eta; 11 | 12 | public Attempts(long sent, long left, long elapsed, long eta) { 13 | this.sent = sent; 14 | this.left = left; 15 | this.elapsed = elapsed; 16 | this.eta = eta; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/HostLost.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | import java.net.InetAddress; 4 | 5 | /** 6 | * an host has been lost 7 | */ 8 | public class HostLost implements Event { 9 | public final InetAddress ipAddress; 10 | 11 | public HostLost(InetAddress ipAddress) { 12 | this.ipAddress = ipAddress; 13 | } 14 | 15 | public String toString() { 16 | return String.format("HostLost: { ipAddress='%s' }", ipAddress.getHostAddress()); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /cSploit/src/main/res/menu/login_cracker.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/FuseBind.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | /** 4 | * a new fuse mountpoint has been found 5 | */ 6 | public class FuseBind implements Event { 7 | public final String source, mountpoint; 8 | 9 | public FuseBind(String source, String mountpoint) { 10 | this.source = source; 11 | this.mountpoint = mountpoint; 12 | } 13 | 14 | @Override 15 | public String toString() { 16 | return String.format("FuseBind: { source='%s', mountpoint='%s' }", this.source, this.mountpoint); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/Os.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | /** 4 | * os info found 5 | */ 6 | public class Os implements Event { 7 | public final short accuracy; 8 | public final String os; 9 | public final String type; 10 | 11 | public Os(short accuracy, String os, String type) { 12 | this.accuracy = accuracy; 13 | this.os = os; 14 | this.type = type; 15 | } 16 | 17 | public String toString() { 18 | return String.format("Os: { accuracy=%d, os='%s', type='%s' }", accuracy, os, type); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/Login.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | import java.net.InetAddress; 4 | 5 | /** 6 | * a login has been found 7 | */ 8 | public class Login implements Event { 9 | public final int port; 10 | public final InetAddress address; 11 | public final String login; 12 | public final String password; 13 | 14 | public Login(int port, InetAddress address, String login, String password) { 15 | this.port = port; 16 | this.address = address; 17 | this.login = login; 18 | this.password = password; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /cSploit/src/main/res/layout/plugin_mitm.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 16 | -------------------------------------------------------------------------------- /cSploit/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | android.library=false 16 | 17 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/Packet.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | import java.net.InetAddress; 4 | 5 | /** 6 | * sniffed a packet 7 | */ 8 | public class Packet implements Event { 9 | public final InetAddress src; 10 | public final InetAddress dst; 11 | public final int len; 12 | 13 | public Packet(InetAddress src, InetAddress dst, int len) { 14 | this.src = src; 15 | this.dst = dst; 16 | this.len = len; 17 | } 18 | 19 | @Override 20 | public String toString() { 21 | return String.format("Packet: { src='%s', dst='%s', len=%d }", src.getHostAddress(), dst.getHostAddress(), len); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/Hop.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | import java.net.InetAddress; 4 | 5 | /** 6 | * an hop has been found 7 | */ 8 | public class Hop implements Event { 9 | public final int hop; 10 | public final long usec; 11 | public final InetAddress node; 12 | public final String name; 13 | 14 | public Hop(int hop, long usec, InetAddress node, String name) { 15 | this.hop = hop; 16 | this.usec = usec; 17 | this.node = node; 18 | this.name = name; 19 | } 20 | 21 | public String toString() { 22 | return String.format("HopEvent: { hop=%d, usec=%d, node=%s, name='%s' }", hop, usec, node.getHostAddress(), name); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /cSploit/src/main/res/menu/browser.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | 14 | 19 | 20 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/helpers/ThreadHelper.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.helpers; 2 | 3 | import android.os.Looper; 4 | 5 | import java.util.concurrent.Executor; 6 | import java.util.concurrent.Executors; 7 | 8 | /** 9 | * Help cSploit dealing with threads 10 | */ 11 | public final class ThreadHelper { 12 | 13 | private final static Executor EXECUTOR = Executors.newCachedThreadPool(); 14 | 15 | /** 16 | * share an Executor among all cSploit components 17 | * @return an Executor for running background stuff 18 | */ 19 | public static Executor getSharedExecutor() { 20 | return EXECUTOR; 21 | } 22 | 23 | public static boolean isOnMainThread() { 24 | return Looper.myLooper() == Looper.getMainLooper(); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/update/CoreUpdate.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.update; 2 | 3 | import android.content.Context; 4 | 5 | import org.csploit.android.R; 6 | import org.csploit.android.core.System; 7 | 8 | /** 9 | * A core update 10 | */ 11 | public class CoreUpdate extends Update { 12 | public CoreUpdate(Context context, String url, String version) { 13 | this.url = url; 14 | this.version = version; 15 | name = "core.tar.xz"; 16 | path = String.format("%s/%s", System.getStoragePath(), name); 17 | archiver = Update.archiveAlgorithm.tar; 18 | compression = Update.compressionAlgorithm.xz; 19 | executableOutputDir = outputDir = System.getCorePath(); 20 | prompt = String.format(context.getString(R.string.new_core_found), version); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/Message.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | /** 4 | * a child generated a message 5 | */ 6 | public class Message implements Event { 7 | public enum Severity { 8 | VERBOSE, 9 | INFO, 10 | WARNING, 11 | ERROR, 12 | FATAL 13 | } 14 | 15 | public final Severity severity; 16 | public final String message; 17 | 18 | public Message(String severity, String message) throws IllegalArgumentException { 19 | // we use String to avoid caching tens of jmethodID ( one for every enum value ) 20 | this.severity = Severity.valueOf(severity); 21 | this.message = message; 22 | } 23 | 24 | @Override 25 | public String toString() { 26 | return String.format("Message: { Severity='%s', message='%s' }", severity.name(), message); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable/actionbar_gradient.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | DEVICE: 2 | 3 | 4 | OS version: 5 | 6 | 7 | **cSploit version:** 8 | 9 | 10 | **busybox** *(installed or not):* 11 | 12 | 13 | **Rooted with supersu?** 14 | 15 | 16 | **logcat** *(filter it!):* 17 | [How-to guide](https://forum.xda-developers.com/showthread.php?t=1726238) 18 | 19 | ------------------------------------------------------------------------------------------------------------------------------ 20 | 21 | **Daemon specific questions** 22 | 23 | Go version: 24 | 25 | 26 | OS: 27 | 28 | 29 | Using Docker (incase of unofficial build.) 30 | 31 | Actions performed: 32 | 33 | 34 | Logs: 35 | ------------------------------------------------------------------------------------------------------------------------------ 36 | 37 | **Issue:** 38 | *Remember to search for issues alike before creating new one!* 39 | 40 | -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-hdpi/actionbar_gradient.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /cSploit/src/main/res/drawable-mdpi/actionbar_gradient.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/Account.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | import java.net.InetAddress; 4 | 5 | /** 6 | * an account has been found 7 | */ 8 | public class Account implements Event { 9 | public final InetAddress address; 10 | public final String protocol; 11 | public final String username; 12 | public final String password; 13 | 14 | public Account(InetAddress address, String protocol, String username, String password) { 15 | this.address = address; 16 | this.protocol = protocol; 17 | this.username = username; 18 | this.password = password; 19 | } 20 | 21 | @Override 22 | public String toString() { 23 | return String.format("Account: { address='%s', protocol='%s', username='%s', password='%s' }", 24 | address.getHostAddress(), protocol, username, password); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/services/Services.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.services; 2 | 3 | import android.content.Context; 4 | 5 | /** 6 | * Services provider 7 | */ 8 | public final class Services { 9 | private static Context context; 10 | private static NetworkRadar networkRadar; 11 | private static MsfRpcdService msfRpcdService; 12 | 13 | public static void init(Context context) { 14 | Services.context = context; 15 | } 16 | 17 | public synchronized static NetworkRadar getNetworkRadar() { 18 | if(networkRadar == null) { 19 | networkRadar = new NetworkRadar(context); 20 | } 21 | return networkRadar; 22 | } 23 | 24 | public synchronized static MsfRpcdService getMsfRpcdService() { 25 | if(msfRpcdService == null) { 26 | msfRpcdService = new MsfRpcdService(context); 27 | } 28 | return msfRpcdService; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/update/MsfUpdate.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.update; 2 | 3 | import android.content.Context; 4 | 5 | import org.csploit.android.R; 6 | import org.csploit.android.core.*; 7 | import org.csploit.android.core.System; 8 | 9 | /** 10 | * A MSF update 11 | */ 12 | public class MsfUpdate extends Update { 13 | public MsfUpdate(Context context, String url, String version) { 14 | this.url = url; 15 | this.version = version; 16 | 17 | name = "msf.tar.xz"; 18 | path = String.format("%s/%s", System.getStoragePath(), name); 19 | outputDir = System.getMsfPath(); 20 | executableOutputDir = ExecChecker.msf().getRoot(); 21 | archiver = Update.archiveAlgorithm.tar; 22 | compression = Update.compressionAlgorithm.xz; 23 | fixShebang = wipeOnFail = true; 24 | prompt = context.getString(R.string.new_msf_found); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/update/RubyUpdate.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.update; 2 | 3 | import android.content.Context; 4 | 5 | import org.csploit.android.R; 6 | import org.csploit.android.core.*; 7 | import org.csploit.android.core.System; 8 | 9 | /** 10 | * A ruby update 11 | */ 12 | public class RubyUpdate extends Update { 13 | public RubyUpdate(Context context, String url, String version) { 14 | this.url = url; 15 | this.version = version; 16 | name = "ruby.tar.xz"; 17 | path = String.format("%s/%s", System.getStoragePath(), name); 18 | archiver = Update.archiveAlgorithm.tar; 19 | compression = Update.compressionAlgorithm.xz; 20 | 21 | outputDir = System.getRubyPath(); 22 | executableOutputDir = ExecChecker.ruby().getRoot(); 23 | fixShebang = wipeOnFail = true; 24 | prompt = context.getString(R.string.new_ruby_found); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/Host.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | import java.net.InetAddress; 4 | import java.util.Arrays; 5 | 6 | /** 7 | * an host has been found 8 | */ 9 | public class Host implements Event { 10 | public final byte[] ethAddress; 11 | public final InetAddress ipAddress; 12 | public final String name; 13 | 14 | public Host(byte[] ethAddress, InetAddress ipAddress, String name) { 15 | this.ethAddress = Arrays.copyOf(ethAddress, ethAddress.length); 16 | this.ipAddress = ipAddress; 17 | this.name = name; 18 | } 19 | 20 | public String toString() { 21 | return String.format("Host: { ethAddress=[%02X:%02X:%02X:%02X:%02X:%02X], ipAddress='%s', name='%s' }", 22 | ethAddress[0], ethAddress[1], ethAddress[2], ethAddress[3], ethAddress[4], ethAddress[5], 23 | ipAddress.getHostAddress(), name); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /cSploit/src/main/java/org/csploit/android/events/Port.java: -------------------------------------------------------------------------------- 1 | package org.csploit.android.events; 2 | 3 | /** 4 | * an open port has been found 5 | */ 6 | public class Port implements Event { 7 | public final String protocol; 8 | public final int port; 9 | public final String service; 10 | public final String version; 11 | 12 | public Port(String protocol, int port) { 13 | this.protocol = protocol; 14 | this.port = port; 15 | this.service = null; 16 | this.version = null; 17 | } 18 | 19 | public Port(String protocol, int port, String service, String version) { 20 | this.protocol = protocol; 21 | this.port = port; 22 | this.service = service; 23 | this.version = version; 24 | } 25 | 26 | public String toString() { 27 | return String.format("Port: { protocol='%s', port=%d, service='%s', version='%s' }", 28 | protocol, port, service, version); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /setup-cronjob.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Copyleft (C) 2014 The dSploit Project 4 | # 5 | # Author: Louis Teboul (a.k.a Androguide.fr) 6 | # admin@androguide.fr 7 | # 8 | # Licensed under the GNU GENERAL PUBLIC LICENSE version 3 'or later' 9 | # The GNU General Public License is a free, copyleft license for software and other kinds of works. 10 | # see the LICENSE file distributed with this work for a full version of the License. 11 | 12 | CYAN="\\033[1;36m" 13 | GREEN="\\033[1;32m" 14 | RESET="\\e[0m" 15 | DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" 16 | 17 | if [ -f "${DIR}/cronjob.txt" ]; then 18 | rm -f $DIR/cronjob.txt 19 | fi 20 | 21 | echo -n -e "${CYAN}Generating cronjob file...${RESET}" 22 | echo "00 00 * * * /bin/bash ${DIR}/nightly-build.sh" > $DIR/cronjob.txt 23 | 24 | echo -n -e "${CYAN}Adding job to cron...${RESET}" 25 | crontab cronjob.txt 26 | 27 | echo -n -e "${GREEN}Done.${RESET}" 28 | -------------------------------------------------------------------------------- /cSploit/src/main/res/layout/dirpicker_chooser_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 |