Skip to content
This repository has been archived by the owner on Apr 25, 2019. It is now read-only.

Commit

Permalink
Merge pull request #192 from thehappydinoa/master
Browse files Browse the repository at this point in the history
Misc Updates
  • Loading branch information
Re4son authored Feb 23, 2019
2 parents 1574ca1 + c68f9bd commit 1632985
Show file tree
Hide file tree
Showing 35 changed files with 1,845 additions and 2,386 deletions.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ android {
compileSdkVersion 28
buildToolsVersion '28.0.3'


dataBinding {
enabled = true
}
Expand All @@ -52,7 +53,8 @@ android {
minSdkVersion 17
targetSdkVersion 28
versionCode 22
versionName "2019.1"
versionName "2019.2"

}

sourceSets {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Thu Jan 24 06:31:27 AEDT 2019
#Sun Feb 03 12:24:27 EST 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion res/layout/nethunter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Turn on HID (newer kernels only) "
android:checked="false"/>
android:checked="true"/>

<TextView
android:id="@+id/editTextHID"
Expand Down
8 changes: 4 additions & 4 deletions res/layout/pineapple.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
android:ems="10"
android:id="@+id/pineapple_gatewayip"
android:digits="0123456789."
android:text="172.16.42.1" />
android:text="@string/pineapple_gatewayip" />

<TextView
android:layout_width="wrap_content"
Expand All @@ -40,7 +40,7 @@
android:layout_height="wrap_content"
android:ems="10"
android:id="@+id/pineapple_webport"
android:text="1471"
android:text="@string/pineapple_webport"
android:inputType="number" />

<TextView
Expand All @@ -56,7 +56,7 @@
android:ems="10"
android:id="@+id/pineapple_clientip"
android:digits="0123456789."
android:text="172.16.42.42/24" />
android:text="@string/pineapple_clientip" />

<TextView
android:layout_width="wrap_content"
Expand All @@ -71,7 +71,7 @@
android:ems="10"
android:id="@+id/pineapple_cidr"
android:digits="0123456789."
android:text="172.16.42.0/24" />
android:text="@string/pineapple_subnet" />


<CheckBox
Expand Down
11 changes: 6 additions & 5 deletions res/menu/sidebar.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android">
<menu xmlns:android="http://schemas.android.com/apk/res/android">

<group>
<item
Expand All @@ -11,8 +10,10 @@
android:id="@+id/createchroot_item"
android:icon="@drawable/ic_action_android"
android:title="@string/drawertitlecreatechroot" />
<!--Disabled as wversionmanager doesn't work-->
<item
android:id="@+id/checkforupdate_item"
android:enabled="false"
android:icon="@drawable/ic_system_update_black_36dp"
android:title="@string/drawertitlecheckupdate" />
</group>
Expand All @@ -28,15 +29,15 @@
<item
android:id="@+id/custom_commands_item"
android:icon="@drawable/ic_action_play"
android:title="Custom Commands" />
android:title="@string/drawertitlecustomcommands" />
<item
android:id="@+id/macchanger_item"
android:icon="@drawable/ic_action_perm_device_information"
android:title="@string/drawertitlemacchanger" />
<item
android:id="@+id/vnc_item"
android:icon="@drawable/ic_action_home"
android:title="VNC Manager" />
android:title="@string/drawertitlevncmanager" />
<item
android:id="@+id/hid_item"
android:icon="@drawable/ic_action_keyboard"
Expand Down Expand Up @@ -80,7 +81,7 @@
<item
android:id="@+id/deauth_item"
android:icon="@drawable/ic_action_network_wifi"
android:title="DeAuth" />
android:title="@string/drawertitledeauth" />
</group>

</menu>
24 changes: 15 additions & 9 deletions res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -210,29 +210,33 @@
<string name="unzippinganduntarring">Unzipping and untarring....</string>
<string name="downloadfailscheck">Something went wrong verifying the downloaded file. Whoops. Try again.</string>
<string name="aboutchroot">The \"chroot\" is a full installation of Kali Linux that shares processing, networking, storage, and other resources with Android. It resides in your internal app storage area and requires about 400MB for the minimal core installation.</string>
<string name="extractinganddeploying">Extracting and Deploying</string>


<string name="nhwarning">Nethunter installs and uses a standard Kali Linux distribution \"under the hood\". To support this functionality, some <u>standard Android security features such as Security Enhanced Linux (selinux) are disabled</u>. Moreover, Kali\'s Linux processes may run with full root privileges and can therefore access system functionality well beyond the normal Android security model. Consider therefore that this device, as a hybrid, may not be as secure as either standard Kali Linux OR standard Android, and you are advised not to install or use Nethunter on \"daily driver\" devices or devices which store or access sensitive/private data.</string>
<string name="nhwarning">Nethunter installs and uses a standard Kali Linux distribution \"under the hood\". To support this functionality, some <u>standard Android security features such as Security Enhanced Linux (SELinux) are disabled</u>. Moreover, Kali\'s Linux processes may run with full root privileges and can therefore access system functionality well beyond the normal Android security model. Consider therefore that this device, as a hybrid, may not be as secure as either standard Kali Linux OR standard Android, and you are advised not to install or use Nethunter on \"daily driver\" devices or devices which store or access sensitive/private data.</string>
<string name="unknown">Unknown</string>
<string name="statusText">Status:</string>
<string name="licenseInfo">Nethunter is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html">GPLv2</a> and source is available at <a href="https://github.com/offensive-security">github.com/offensive-security</a>. Some icons are licensed from Google, Inc. under <a href="https://creativecommons.org/licenses/by/4.0">CC BY 4.0</a>. Android-WVersionManager and jTar is licensed under Apache 2.0. </string>
<string name="attack_launched">Attack launched!</string>

<!-- sidebar menu item titles -->
<string name="drawertitlenethunter">Home</string>
<string name="drawertitlecreatechroot">Kali Chroot Manager</string>
<string name="drawertitlecheckupdate">Check App Update</string>
<string name="drawertitlekaliservices">Kali Services</string>
<string name="drawertitlecustomcommands">Custom Commands</string>
<string name="drawertitlemacchanger">MAC Changer</string>
<string name="drawertitlevncmanager">VNC Manager</string>
<string name="drawertitlehid">HID Attacks</string>
<string name="drawertitleduckhunter">DuckHunter HID</string>
<string name="drawertitlebadusb">Bad USB MITM Attack</string>
<string name="drawertitlemana">Mana Wireless Toolkit</string>
<string name="drawertitlemacchanger">MAC Changer</string>
<string name="drawertitlempc">Metasploit Payload Generator</string>
<string name="drawertitlemitmf">MITM Framework</string>
<string name="drawertitlecheckupdate">Check App Update</string>
<string name="drawertitlesearchsploit">SearchSploit</string>
<string name="drawertitlenmap">Nmap Scan</string>
<string name="drawertitlempc">Metasploit Payload Generator</string>
<string name="drawertitlesearchsploit">SearchSploit</string>
<string name="drawertitlepineapple">Pineapple Connector</string>
<string name="drawertitlegps">Wardriving</string>
<string name="drawertitledeauth">DeAuth</string>
<string name="InstallAndUpdateButtonText"><![CDATA[Install & Update]]></string>
<string name="metapackagesExplanation">Choose some \"metapackages\". The chroot will also be upgraded (via \"apt-get update/dist-upgrade\").\n\nSelecting metapackages you already have installed (or no packages at all) simply update/upgrades without removing anything.\n\nDepending on what metapackages you select, you may be asked to do stuff (such as set passwords for services), so pay attention.</string>
<string name="metapackagesAdditionalInfo">Local storage requirements may be in the 20+ GB range. This installation/update will be performed in a terminal, so watch for issues. When completed, press the back button.</string>
Expand All @@ -247,7 +251,7 @@
<string name="legacychrootnegbutton">Ignore current</string>

<!-- MPC -->
<string name="mpc_description">Msfvenom Payload Creator (MPC) is a wrapper written by g0tmi1k to generate multiple types of payloads, based on users choice. The idea is to be as simple as possible (only requiring one input) to produce their payload.</string>
<string name="mpc_description">MSFvenom Payload Creator (MSFPC) is a wrapper written by g0tmi1k to generate multiple types of payloads, based on users choice. The idea is to be as simple as possible (only requiring one input) to produce their payload.</string>
<string name="mpc_type">Type:</string>
<string-array name="mpc_type_array">
<item>ASP</item>
Expand Down Expand Up @@ -362,6 +366,10 @@
<string name="pineapple_stop_OTG">Close Connection</string>
<string name="pineapple_noupstream">No upstream</string>
<string name="pineapple_transproxy">Forward port 80/443 to 8080/8083</string>
<string name="pineapple_subnet">172.16.42.0/24</string>
<string name="pineapple_webport">1471</string>
<string name="pineapple_gatewayip">172.16.42.1</string>
<string name="pineapple_clientip">172.16.42.42/24</string>
<!-- End PineappleFragment -->

<!-- Start GPSFragment -->
Expand All @@ -388,6 +396,4 @@
<string name="boot_notification_channel">Boot</string>
<string name="boot_notification_channel_description">Notification for run at boot services</string>


<!-- TODO: Remove or change this placeholder text -->
</resources>
Loading

0 comments on commit 1632985

Please sign in to comment.