Skip to content

Commit

Permalink
Improved Extra detection, refactoring of function names, minor bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Trummer committed Sep 17, 2015
1 parent ba2dc06 commit 577118d
Show file tree
Hide file tree
Showing 455 changed files with 1,127 additions and 723 deletions.
Empty file modified README.md 100755 → 100644
Empty file.
91 changes: 89 additions & 2 deletions exploitAPKs/qark/app/build.gradle 100755 → 100644
@@ -1,8 +1,95 @@
apply plugin: 'com.android.application'

import org.codehaus.groovy.runtime.StackTraceUtils

int[] sdksAvailable() {

def sdks = new ByteArrayOutputStream()
exec {
commandLine androidSDKDir()+'tools/android', 'list'
standardOutput = sdks
}
sdks = sdks
// get the output
.toString()
// split to strings
.split('\n')
// leave only strings with API levels
.findAll { it ==~ /\s*API level:.*/ }
// extract the API levels
.collect { (it =~ /\s*API level:\s*(\d+).*/)[0][1].toInteger() }
// sort from highest to lowest
.sort( { a, b -> b <=> a } )
sdks
}

int highestSdkAvailable(int defaultSdk) {
try {
def sdks = sdksAvailable()
def highestSdk = sdks[0]
if (highestSdk != null) {
println "Using highest found SDK " + highestSdk
highestSdk
} else {
println "No installed SDKs found. Using default SDK " + defaultSdk
defaultSdk
}
} catch (any) {
println "Exception while determining highest SDK. Using default SDK " +
defaultSdk
StackTraceUtils.sanitize(any).printStackTrace()
defaultSdk
}
}

String androidSDKDir() {
def androidExecPath = new ByteArrayOutputStream()
exec {
commandLine 'pwd'
standardOutput = androidExecPath
}

def path = androidExecPath.toString().substring(0, androidExecPath.toString().lastIndexOf('/build/qark/app'))
println path + "/settings.properties"

Properties properties = new Properties()
File propertiesFile = new File(path + '/settings.properties')
propertiesFile.withInputStream {
properties.load(it)
}
println properties.AndroidSDKPath

return properties.AndroidSDKPath
}

String[] buildToolsAvailable() {
def buildToolsDir = new File(androidSDKDir(), "build-tools")
buildToolsDir.list().sort { a, b -> b <=> a }
}

String latestBuildToolsAvailable(String defaultBuildTools) {
try {
def buildToolsVersions = buildToolsAvailable()
def latestBuildTools = buildToolsVersions[0]
if (latestBuildTools != null) {
println "Using latest found build tools " + latestBuildTools
latestBuildTools
} else {
println "No installed build tools found. Using default build tools " +
defaultBuildTools
defaultBuildTools
}
} catch (any) {
println "Exception while determining latest build tools. Using default build tools " +
defaultBuildTools
StackTraceUtils.sanitize(any).printStackTrace()
defaultBuildTools
}
}

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
compileSdkVersion highestSdkAvailable(21)
buildToolsVersion latestBuildToolsAvailable("21.1.2")
defaultConfig {
applicationId 'com.secbro.qark'
minSdkVersion 7
Expand Down
Empty file modified exploitAPKs/qark/app/proguard-rules.pro 100755 → 100644
Empty file.
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/AndroidManifest.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/ic_launcher-web.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified exploitAPKs/qark/app/src/main/ic_launcher_2-web.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified exploitAPKs/qark/app/src/main/ic_launcher_droid-web.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Expand Up @@ -28,7 +28,7 @@ protected void onCreate(Bundle savedInstanceState) {
SharedPreferences prefs = this.getSharedPreferences(
getPackageName(), Context.MODE_PRIVATE);
TextView textview = (TextView) findViewById(R.id.activity_broadcast_stealer_text_view);
textview.setText(prefs.getString("foo", "default" ));
textview.setText(prefs.getString("foo", "Listening..." ));
Intent msgIntent = new Intent(this, BroadcastStealerService.class);
msgIntent.setAction("Start");
startService(msgIntent);
Expand Down
Expand Up @@ -39,7 +39,7 @@ public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
getActivity().getPackageName(), Context.MODE_PRIVATE);
TextView textview = (TextView) retVal.findViewById(R.id.activity_broadcast_stealer_text_view);

textview.setText(prefs.getString("foo", "default" ));
textview.setText(prefs.getString("foo", "Listening..." ));
Intent msgIntent = new Intent(this.getActivity(), BroadcastStealerService.class);
msgIntent.setAction("Start");
this.getActivity().startService(msgIntent);
Expand All @@ -53,7 +53,7 @@ public void onResume() {
getActivity().getPackageName(), Context.MODE_PRIVATE);
TextView textview = (TextView) this.getActivity().findViewById(R.id.activity_broadcast_stealer_text_view);

textview.setText(prefs.getString("foo", "default" ));
textview.setText(prefs.getString("foo", "Listening..." ));
super.onResume();
}

Expand Down
Expand Up @@ -47,7 +47,7 @@ public void onReceive(Context context, Intent intent) {
Object value = bundle.get(key);
SharedPreferences prefs = getSharedPreferences(
getPackageName(), Context.MODE_PRIVATE);
prefs.edit().putString("foo", prefs.getString("foo", "default") + "\n " + "KEY: " + key + "VALUE: " + value.toString()).apply();
prefs.edit().putString("foo", prefs.getString("foo", "Listening...") + "\n " + "KEY: " + key + "VALUE: " + value.toString()).apply();
}
Log.i("BroadcastStealerService", "intent received");
}
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified exploitAPKs/qark/app/src/main/res/drawable-hdpi/ic_drawer.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified exploitAPKs/qark/app/src/main/res/drawable-mdpi/ic_drawer.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified exploitAPKs/qark/app/src/main/res/drawable-xhdpi/header2.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified exploitAPKs/qark/app/src/main/res/drawable-xhdpi/ic_drawer.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified exploitAPKs/qark/app/src/main/res/drawable-xhdpi/qark_512.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified exploitAPKs/qark/app/src/main/res/drawable-xhdpi/web_view.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified exploitAPKs/qark/app/src/main/res/drawable-xxhdpi/header3.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified exploitAPKs/qark/app/src/main/res/drawable-xxhdpi/header4.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified exploitAPKs/qark/app/src/main/res/drawable-xxhdpi/ic_drawer.png 100755 → 100644
Empty file modified exploitAPKs/qark/app/src/main/res/drawable/ic_one.png 100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/layout/activity_top_level.xml 100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/layout/fragment_top_level.xml 100755 → 100644
Empty file.
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/layout/nav_header.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/layout/tap_jacking_toast.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/layout/toolbar.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/layout/webview.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/menu/drawer_view.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/menu/menu_intent_sender.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/menu/menu_main.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/menu/menu_web_view_tests.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/mipmap-xxxhdpi/qark_512.png 100755 → 100644
Empty file modified exploitAPKs/qark/app/src/main/res/values-w820dp/dimens.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/values/colors.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/values/dimens.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/values/extraKeys.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/values/intentID.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/values/strings.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/app/src/main/res/values/styles.xml 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/build.gradle 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/gradle/wrapper/gradle-wrapper.jar 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/gradle/wrapper/gradle-wrapper.properties 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/gradlew.bat 100755 → 100644
Empty file.
Empty file modified exploitAPKs/qark/settings.gradle 100755 → 100644
Empty file.
Empty file modified lib/BeautifulSoup.py 100755 → 100644
Empty file.
Empty file modified lib/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/argparse.py 100755 → 100644
Empty file.
Empty file modified lib/axmlparserpy/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/axmlparserpy/apk.py 100755 → 100644
Empty file.
Empty file modified lib/axmlparserpy/axmlparser.py 100755 → 100644
Empty file.
Empty file modified lib/axmlparserpy/axmlprinter.py 100755 → 100644
Empty file.
Empty file modified lib/axmlparserpy/bytecode.py 100755 → 100644
Empty file.
Empty file modified lib/axmlparserpy/stringblock.py 100755 → 100644
Empty file.
Empty file modified lib/axmlparserpy/typeconstants.py 100755 → 100644
Empty file.
Empty file modified lib/blessed/LICENSE 100755 → 100644
Empty file.
Empty file modified lib/blessed/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/blessed/formatters.py 100755 → 100644
Empty file.
Empty file modified lib/blessed/keyboard.py 100755 → 100644
Empty file.
Empty file modified lib/blessed/sequences.py 100755 → 100644
Empty file.
Empty file modified lib/blessed/terminal.py 100755 → 100644
Empty file.
Empty file modified lib/blessed/tests/accessories.py 100755 → 100644
Empty file.
Empty file modified lib/blessed/tests/test_core.py 100755 → 100644
Empty file.
Empty file modified lib/blessed/tests/test_formatters.py 100755 → 100644
Empty file.
Empty file modified lib/blessed/tests/test_keyboard.py 100755 → 100644
Empty file.
Empty file modified lib/blessed/tests/test_length_sequence.py 100755 → 100644
Empty file.
Empty file modified lib/blessed/tests/test_sequences.py 100755 → 100644
Empty file.
Empty file modified lib/blessed/tests/test_wrap.py 100755 → 100644
Empty file.
Empty file modified lib/blessings/LICENSE 100755 → 100644
Empty file.
Empty file modified lib/blessings/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/blessings/tests.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/builder/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/builder/_html5lib.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/builder/_htmlparser.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/builder/_lxml.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/dammit.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/diagnose.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/element.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/testing.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/tests/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/tests/test_builder_registry.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/tests/test_docs.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/tests/test_html5lib.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/tests/test_htmlparser.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/tests/test_lxml.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/tests/test_soup.py 100755 → 100644
Empty file.
Empty file modified lib/bs4/tests/test_tree.py 100755 → 100644
Empty file.
Empty file modified lib/cfr_0_96.jar 100755 → 100644
Empty file.
Empty file modified lib/colorama/LICENSE.txt 100755 → 100644
Empty file.
Empty file modified lib/colorama/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/colorama/ansi.py 100755 → 100644
Empty file.
Empty file modified lib/colorama/ansitowin32.py 100755 → 100644
Empty file.
Empty file modified lib/colorama/initialise.py 100755 → 100644
Empty file.
Empty file modified lib/colorama/win32.py 100755 → 100644
Empty file.
Empty file modified lib/colorama/winterm.py 100755 → 100644
Empty file.
Empty file modified lib/coloredlogs.py 100755 → 100644
Empty file.
Empty file modified lib/dex2jar/lib/asm-all-3.3.1.jar 100755 → 100644
Empty file.
Empty file modified lib/dex2jar/lib/commons-lite-1.15.jar 100755 → 100644
Empty file.
Empty file modified lib/dex2jar/lib/dex-ir-1.12.jar 100755 → 100644
Empty file.
Empty file modified lib/dex2jar/lib/dex-reader-1.15.jar 100755 → 100644
Empty file.
Empty file modified lib/dex2jar/lib/dex-tools-0.0.9.15.jar 100755 → 100644
Empty file.
Empty file modified lib/dex2jar/lib/dex-translator-0.0.9.15.jar 100755 → 100644
Empty file.
Empty file modified lib/dex2jar/lib/jar-rename-1.6.jar 100755 → 100644
Empty file.
Empty file modified lib/dex2jar/lib/jasmin-p2.5.jar 100755 → 100644
Empty file.
Empty file modified lib/html5lib/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/constants.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/filters/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/filters/_base.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/filters/alphabeticalattributes.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/filters/inject_meta_charset.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/filters/lint.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/filters/optionaltags.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/filters/sanitizer.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/filters/whitespace.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/html5parser.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/ihatexml.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/inputstream.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/sanitizer.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/serializer/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/serializer/htmlserializer.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/mockParser.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/performance/concatenation.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/support.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/test_encoding.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/test_parser.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/test_parser2.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/test_sanitizer.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/test_serializer.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/test_stream.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/test_tokenizer.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/test_treeadapters.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/test_treewalkers.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/test_whitespace_filter.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/encoding/chardet/test_big5.txt 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/encoding/test-yahoo-jp.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/encoding/tests1.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/encoding/tests2.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/sanitizer/tests1.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/serializer/core.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/serializer/injectmeta.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/serializer/optionaltags.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/serializer/options.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/serializer/whitespace.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/sniffer/htmlOrFeed.json 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tokenizer/contentModelFlags.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tokenizer/domjs.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tokenizer/entities.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tokenizer/escapeFlag.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tokenizer/namedEntities.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tokenizer/numericEntities.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tokenizer/pendingSpecChanges.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tokenizer/test1.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tokenizer/test2.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tokenizer/test3.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tokenizer/test4.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tokenizer/unicodeChars.test 100755 → 100644
Empty file.
Empty file.
Empty file modified lib/html5lib/tests/testdata/tokenizer/xmlViolation.test 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/adoption01.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/adoption02.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/comments01.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/doctype01.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/domjs-unsafe.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/entities01.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/entities02.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/html5test-com.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/inbody01.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/isindex.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/main-element.dat 100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/scriptdata01.dat 100755 → 100644
Empty file.
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/scripted/ark.dat 100755 → 100644
Empty file.
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tables01.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/template.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests1.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests10.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests11.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests12.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests14.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests15.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests16.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests17.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests18.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests19.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests2.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests20.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests21.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests22.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests23.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests24.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests25.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests26.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests3.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests4.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests5.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests6.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests7.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests8.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tests9.dat 100755 → 100644
Empty file.
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/tricky01.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/webkit01.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/testdata/tree-construction/webkit02.dat 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tests/tokenizertotree.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/tokenizer.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/treeadapters/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/treeadapters/sax.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/treebuilders/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/treebuilders/_base.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/treebuilders/dom.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/treebuilders/etree.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/treebuilders/etree_lxml.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/treewalkers/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/treewalkers/_base.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/treewalkers/dom.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/treewalkers/etree.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/treewalkers/genshistream.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/treewalkers/lxmletree.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/treewalkers/pulldom.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/trie/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/trie/_base.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/trie/datrie.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/trie/py.py 100755 → 100644
Empty file.
Empty file modified lib/html5lib/utils.py 100755 → 100644
Empty file.
Empty file modified lib/jd-core-java-1.2.jar 100755 → 100644
Empty file.
Empty file modified lib/jquery/styles.css 100755 → 100644
Empty file.
Empty file modified lib/plyj/LICENSE.TXT 100755 → 100644
Empty file.
Empty file modified lib/plyj/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/plyj/model.py 100755 → 100644
Empty file.
Empty file modified lib/plyj/parser.py 100755 → 100644
Empty file.
Empty file modified lib/procyon/LICENSE.TXT 100755 → 100644
Empty file.
Empty file modified lib/procyon/procyon-decompiler-0.5.28.jar 100755 → 100644
Empty file.
Empty file modified lib/procyon/procyon-decompiler-0.5.29.jar 100755 → 100644
Empty file.
Empty file modified lib/progressbar/LICENSE.txt 100755 → 100644
Empty file.
Empty file modified lib/progressbar/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/progressbar/compat.py 100755 → 100644
Empty file.
Empty file modified lib/progressbar/widgets.py 100755 → 100644
Empty file.
Empty file modified lib/pubsub/LICENSE_BSD_Simple.txt 100755 → 100644
Empty file.
Empty file modified lib/pubsub/README.txt 100755 → 100644
Empty file.
Empty file modified lib/pubsub/RELEASE_NOTES.txt 100755 → 100644
Empty file.
Empty file modified lib/pubsub/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/pubsub/core/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/pubsub/core/arg1/__init__.py 100755 → 100644
Empty file.
Empty file modified lib/pubsub/core/arg1/listenerimpl.py 100755 → 100644
Empty file.
Empty file modified lib/pubsub/core/arg1/publisher.py 100755 → 100644
Empty file.
Empty file modified lib/pubsub/core/arg1/publishermixin.py 100755 → 100644
Empty file.
Empty file modified lib/pubsub/core/arg1/topicargspecimpl.py 100755 → 100644
Empty file.
Empty file modified lib/pubsub/core/arg1/topicmgrimpl.py 100755 → 100644
Empty file.
Empty file modified lib/pubsub/core/callables.py 100755 → 100644
Empty file.
Empty file modified lib/pubsub/core/imp2.py 100755 → 100644
Empty file.
Empty file modified lib/pubsub/core/itopicdefnprovider.py 100755 → 100644
Empty file.

0 comments on commit 577118d

Please sign in to comment.