├── .gitattributes ├── .gitignore ├── DynamicDeviceCodes └── index.html ├── HTML-Phishing-Page ├── .gitignore ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── azure-portal.png │ └── cdn.png ├── index.html ├── js │ ├── bootstrap.js │ └── bootstrap.min.js └── web.config ├── IIS-Redirector ├── applicationHost.xdt ├── index.html └── web.config ├── IPFS-Dropper ├── DeployIPFSVM.ps1 ├── app.js └── package.json ├── LICENSE ├── Python-Flask-Redirector ├── .gitignore ├── app.py └── requirements.txt ├── README.md ├── azure_ipfs_dropper ├── Untitled 1.png ├── Untitled 10.png ├── Untitled 11.png ├── Untitled 12.png ├── Untitled 13.png ├── Untitled 14.png ├── Untitled 15.png ├── Untitled 16.png ├── Untitled 17.png ├── Untitled 18.png ├── Untitled 19.png ├── Untitled 2.png ├── Untitled 20.png ├── Untitled 21.png ├── Untitled 22.png ├── Untitled 23.png ├── Untitled 24.png ├── Untitled 25.png ├── Untitled 3.png ├── Untitled 4.png ├── Untitled 5.png ├── Untitled 6.png ├── Untitled 7.png ├── Untitled 8.png ├── Untitled 9.png └── Untitled.png ├── azureipfsdropper.md └── images ├── console.png └── dynamiccode.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/.gitignore -------------------------------------------------------------------------------- /DynamicDeviceCodes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/DynamicDeviceCodes/index.html -------------------------------------------------------------------------------- /HTML-Phishing-Page/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/.gitignore -------------------------------------------------------------------------------- /HTML-Phishing-Page/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/css/bootstrap-theme.css -------------------------------------------------------------------------------- /HTML-Phishing-Page/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /HTML-Phishing-Page/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /HTML-Phishing-Page/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /HTML-Phishing-Page/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/css/bootstrap.css -------------------------------------------------------------------------------- /HTML-Phishing-Page/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/css/bootstrap.css.map -------------------------------------------------------------------------------- /HTML-Phishing-Page/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/css/bootstrap.min.css -------------------------------------------------------------------------------- /HTML-Phishing-Page/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /HTML-Phishing-Page/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /HTML-Phishing-Page/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /HTML-Phishing-Page/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /HTML-Phishing-Page/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /HTML-Phishing-Page/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /HTML-Phishing-Page/img/azure-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/img/azure-portal.png -------------------------------------------------------------------------------- /HTML-Phishing-Page/img/cdn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/img/cdn.png -------------------------------------------------------------------------------- /HTML-Phishing-Page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/index.html -------------------------------------------------------------------------------- /HTML-Phishing-Page/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/js/bootstrap.js -------------------------------------------------------------------------------- /HTML-Phishing-Page/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/js/bootstrap.min.js -------------------------------------------------------------------------------- /HTML-Phishing-Page/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/HTML-Phishing-Page/web.config -------------------------------------------------------------------------------- /IIS-Redirector/applicationHost.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/IIS-Redirector/applicationHost.xdt -------------------------------------------------------------------------------- /IIS-Redirector/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/IIS-Redirector/index.html -------------------------------------------------------------------------------- /IIS-Redirector/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/IIS-Redirector/web.config -------------------------------------------------------------------------------- /IPFS-Dropper/DeployIPFSVM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/IPFS-Dropper/DeployIPFSVM.ps1 -------------------------------------------------------------------------------- /IPFS-Dropper/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/IPFS-Dropper/app.js -------------------------------------------------------------------------------- /IPFS-Dropper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/IPFS-Dropper/package.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Python-Flask-Redirector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/Python-Flask-Redirector/.gitignore -------------------------------------------------------------------------------- /Python-Flask-Redirector/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/Python-Flask-Redirector/app.py -------------------------------------------------------------------------------- /Python-Flask-Redirector/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/Python-Flask-Redirector/requirements.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/README.md -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 1.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 10.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 11.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 12.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 13.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 14.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 15.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 16.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 17.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 18.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 19.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 2.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 20.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 21.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 22.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 23.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 24.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 25.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 3.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 4.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 5.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 6.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 7.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 8.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled 9.png -------------------------------------------------------------------------------- /azure_ipfs_dropper/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azure_ipfs_dropper/Untitled.png -------------------------------------------------------------------------------- /azureipfsdropper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/azureipfsdropper.md -------------------------------------------------------------------------------- /images/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/images/console.png -------------------------------------------------------------------------------- /images/dynamiccode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Azure-App-Tools/HEAD/images/dynamiccode.png --------------------------------------------------------------------------------