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

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
koch.trier committed Sep 8, 2011
0 parents commit b0bf725
Show file tree
Hide file tree
Showing 418 changed files with 187,214 additions and 0 deletions.
7 changes: 7 additions & 0 deletions droidsheep/DroidSheep_public/.classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?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 kind="output" path="bin"/>
</classpath>
33 changes: 33 additions & 0 deletions droidsheep/DroidSheep_public/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>DroidSheep</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>
51 changes: 51 additions & 0 deletions droidsheep/DroidSheep_public/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="de.trier.infsec.koch.droidsheep"
android:versionName="13" android:versionCode="13">
<application
android:icon="@drawable/droidsheep_square"
android:label="DroidSheep">
<activity
android:configChanges="orientation|keyboardHidden"
android:name="de.trier.infsec.koch.droidsheep.activities.ListenActivity"
android:launchMode="singleInstance"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden"
android:name=".activities.HijackActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden"
android:name=".activities.DonateActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<service
android:exported="false"
android:name=".services.ArpspoofService">
</service>
<service
android:exported="false" android:name=".services.DroidSheepService">
</service>
</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="com.google.android.gm.permission.WRITE_GMAIL"/>
<uses-sdk android:minSdkVersion="7"></uses-sdk>
</manifest>
Binary file not shown.
Binary file added droidsheep/DroidSheep_public/bin/classes.dex
Binary file not shown.
Binary file not shown.
11 changes: 11 additions & 0 deletions droidsheep/DroidSheep_public/default.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system use,
# "build.properties", and override values to adapt the script to your
# project structure.

# Project target.
target=android-7
15 changes: 15 additions & 0 deletions droidsheep/DroidSheep_public/jni/Android.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
LOCAL_PATH := $(call my-dir)
MY_LOCAL_PATH := $(LOCAL_PATH)
include $(CLEAR_VARS)

LOCAL_MODULE := droidsheep

LOCAL_SRC_FILES:=\
droidsheep.c

APP_OPTIM := release
LOCAL_C_INCLUDES := libpcap libnet/include include
LOCAL_STATIC_LIBRARIES := libpcap libnet
include $(BUILD_EXECUTABLE)
include $(MY_LOCAL_PATH)/libpcap/Android.mk
include $(MY_LOCAL_PATH)/libnet/Android.mk
Loading

0 comments on commit b0bf725

Please sign in to comment.