Skip to content

Commit

Permalink
Pulled project from bzr.
Browse files Browse the repository at this point in the history
  • Loading branch information
w-shackleton committed Apr 12, 2014
2 parents ee5107d + 0ece578 commit 9d17977
Show file tree
Hide file tree
Showing 121 changed files with 13,281 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .bzrignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
bin/android-netspoof.apk
bin/classes.dex
bin/resources.ap_
bin/uk
bglarge.png
bgmedium.png
bgsmall.png
bin/android-netspoof.newproc.apk
bg-large.png
bg-med.png
bg-small.png
bin/android-netspoof.api8.apk
bzr.sf
obj
obj/local
bin/classes
bin/res
bin/android-netspoof.zip.apk
bin/AndroidManifest.xml
bin/dexedLibs
bin/jarlist.cache
9 changes: 9 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
33 changes: 33 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>android-netspoof</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
59 changes: 59 additions & 0 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
* This file is part of Network Spoofer for Android.
* Network Spoofer - change and mess with webpages and the internet on
* other people's computers
* Copyright (C) 2011 Will Shackleton
*
* Network Spoofer is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Network Spoofer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Network Spoofer, in the file COPYING.
* If not, see <http://www.gnu.org/licenses/>.
* -->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="uk.digitalsquid.netspoofer"
android:versionCode="15" android:versionName="0.9.1">
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="18"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.WAKE_LOCK"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"></uses-permission>

<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".NetSpoof"
android:label="@string/app_name" android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:label="Setup Status" android:name=".InstallStatus"></activity>
<service android:name="InstallService" android:label="Installer Service"></service>
<activity android:name=".SpoofSelector" android:label="@string/selecthack">
<intent-filter>
<action android:name="android.intent.action.PICK"></action>
</intent-filter>
</activity>
<service android:name="NetSpoofService"></service>
<activity android:name="RouterSelector" android:label="@string/selectgateway" android:noHistory="true"></activity>
<activity android:label="@string/selectvictim" android:name="VictimSelector" android:noHistory="true"></activity>
<activity android:label="@string/app_name" android:name="SpoofRunning" android:screenOrientation="portrait"></activity>
<activity android:label="@string/preferences" android:name="Preferences"></activity>
<activity android:name="About" android:theme="@android:style/Theme.Dialog" android:label="@string/about"></activity>
<activity android:name="YoutubeSelector" android:label="@string/selectvideo">
</activity>
<activity android:name="MultiSpoofDialogRunner" android:label="@string/configuring"></activity>
<activity android:name="com.lamerman.FileDialog" android:label="@string/chooseFile"></activity>

</application>
</manifest>
Loading

0 comments on commit 9d17977

Please sign in to comment.