├── .idea ├── droid.iml ├── misc.xml ├── modules.xml └── workspace.xml ├── README.md ├── attack_modules.py ├── attack_modules.pyc ├── attackers ├── 1.txt └── 2.txt ├── banner.py ├── banner.pyc ├── diff-droid.py ├── logger_modules.py ├── logger_modules.pyc ├── loggers ├── 2.txt └── webview.js ├── updater.py └── updater.pyc /.idea/droid.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antojoseph/diff-droid/HEAD/.idea/droid.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antojoseph/diff-droid/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antojoseph/diff-droid/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antojoseph/diff-droid/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # diff-droid 2 | -------------------------------------------------------------------------------- /attack_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antojoseph/diff-droid/HEAD/attack_modules.py -------------------------------------------------------------------------------- /attack_modules.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antojoseph/diff-droid/HEAD/attack_modules.pyc -------------------------------------------------------------------------------- /attackers/1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /attackers/2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antojoseph/diff-droid/HEAD/banner.py -------------------------------------------------------------------------------- /banner.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antojoseph/diff-droid/HEAD/banner.pyc -------------------------------------------------------------------------------- /diff-droid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antojoseph/diff-droid/HEAD/diff-droid.py -------------------------------------------------------------------------------- /logger_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antojoseph/diff-droid/HEAD/logger_modules.py -------------------------------------------------------------------------------- /logger_modules.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antojoseph/diff-droid/HEAD/logger_modules.pyc -------------------------------------------------------------------------------- /loggers/2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loggers/webview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antojoseph/diff-droid/HEAD/loggers/webview.js -------------------------------------------------------------------------------- /updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antojoseph/diff-droid/HEAD/updater.py -------------------------------------------------------------------------------- /updater.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antojoseph/diff-droid/HEAD/updater.pyc --------------------------------------------------------------------------------