├── .gitignore ├── .idea └── vcs.xml ├── AUTHOR.rd ├── Icons ├── acrobat.ico ├── excel.ico ├── flash.ico ├── powerpoint.ico └── word.ico ├── LICENSE ├── Manifest └── manifest.manifest ├── README.md ├── Resource ├── acrobat.insane ├── adobe.insane ├── excel.insane ├── powerpoint.insane └── word.insane ├── Screens ├── shot.png ├── shot2.png └── shot3.png ├── Templates └── Insane.py ├── bin ├── __init__.py └── settings.py ├── dammed.py ├── enc.py ├── insanity.py ├── install.sh ├── python-2.7.12.msi ├── pywin32-220.win32-py2.7.exe ├── requirements.txt ├── striker.py ├── updater.py └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /AUTHOR.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/AUTHOR.rd -------------------------------------------------------------------------------- /Icons/acrobat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/Icons/acrobat.ico -------------------------------------------------------------------------------- /Icons/excel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/Icons/excel.ico -------------------------------------------------------------------------------- /Icons/flash.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/Icons/flash.ico -------------------------------------------------------------------------------- /Icons/powerpoint.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/Icons/powerpoint.ico -------------------------------------------------------------------------------- /Icons/word.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/Icons/word.ico -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/LICENSE -------------------------------------------------------------------------------- /Manifest/manifest.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/Manifest/manifest.manifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/README.md -------------------------------------------------------------------------------- /Resource/acrobat.insane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/Resource/acrobat.insane -------------------------------------------------------------------------------- /Resource/adobe.insane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/Resource/adobe.insane -------------------------------------------------------------------------------- /Resource/excel.insane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/Resource/excel.insane -------------------------------------------------------------------------------- /Resource/powerpoint.insane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/Resource/powerpoint.insane -------------------------------------------------------------------------------- /Resource/word.insane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/Resource/word.insane -------------------------------------------------------------------------------- /Screens/shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/Screens/shot.png -------------------------------------------------------------------------------- /Screens/shot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/Screens/shot2.png -------------------------------------------------------------------------------- /Screens/shot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/Screens/shot3.png -------------------------------------------------------------------------------- /Templates/Insane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/Templates/Insane.py -------------------------------------------------------------------------------- /bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/bin/settings.py -------------------------------------------------------------------------------- /dammed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/dammed.py -------------------------------------------------------------------------------- /enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/enc.py -------------------------------------------------------------------------------- /insanity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/insanity.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/install.sh -------------------------------------------------------------------------------- /python-2.7.12.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/python-2.7.12.msi -------------------------------------------------------------------------------- /pywin32-220.win32-py2.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/pywin32-220.win32-py2.7.exe -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pycrypto==2.6.1 2 | -------------------------------------------------------------------------------- /striker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/striker.py -------------------------------------------------------------------------------- /updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4w4k3/Insanity-Framework/HEAD/updater.py -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 2.0 LAST 2 | --------------------------------------------------------------------------------