└── Spiderploit ├── log └── log.txt ├── version.txt ├── requirements.py ├── Spiderploit.py ├── liecense.txt └── list.txt /Spiderploit/log/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Spiderploit/version.txt: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /Spiderploit/requirements.py: -------------------------------------------------------------------------------- 1 | if __name__ == "__main__": 2 | import sys 3 | import subprocess 4 | 5 | def PackageManager(param = None , event = True): 6 | if param == None and event == True: 7 | try: 8 | import requests 9 | except: 10 | print(r"[-] requests Package is not Installed") 11 | try: 12 | import tqdm 13 | except: 14 | print(r"[-] tqdm package is not Installed") 15 | try: 16 | import colorama 17 | except: 18 | print(r"[-] colorama package is not Installed") 19 | try: 20 | import cfonts 21 | except: 22 | print(r"[-] cfonts package is not Installed") 23 | try: 24 | import psutil 25 | except: 26 | print(r"[-] psutil package is not Installed") 27 | try: 28 | import keyboard 29 | except: 30 | print(r"[-] keyboard package is not Installed") 31 | try: 32 | import socket 33 | except: 34 | print(r"[-] socket package is not Installed") 35 | 36 | PackageManager() 37 | 38 | def Installer(param = None , event = True): 39 | if param == None and event == True: 40 | while True: 41 | INPUT = str(input("[?] Do you want To Download and install Requirements ? (y/n) : ")) 42 | if str(INPUT) == "y" or str(INPUT) == "Y" or str(INPUT) == "yes" or str(INPUT) == "Yes": 43 | subprocess.call(["pip3" , "install" , "tqdm"]) and subprocess.call(["pip" , "install" , "tqdm"]) 44 | subprocess.call(["pip3" , "install" , "psutil"]) and subprocess.call(["pip" , "install" , "psutil"]) 45 | subprocess.call(["pip3" , "install" , "sockets"]) and subprocess.call(["pip" , "install" , "sockets"]) 46 | subprocess.call(["pip3" , "install" , "requests"]) and subprocess.call(["pip" , "install" , "requests"]) 47 | subprocess.call(["pip3" , "install" , "colorama"]) and subprocess.call(["pip" , "install" , "colorama"]) 48 | subprocess.call(["pip3" , "install" , "keyboard"]) and subprocess.call(["pip" , "install" , "keyboard"]) 49 | subprocess.call(["pip3" , "install" , "python-cfonts"]) and subprocess.call(["pip" , "install" , "python-cfonts"]) 50 | print(r"[+] Packages Successfully Installed") 51 | break 52 | elif str(INPUT) == "n" or str(INPUT) == "N" or str(INPUT) == "no" or str(INPUT) == "No": 53 | break 54 | Installer() -------------------------------------------------------------------------------- /Spiderploit/Spiderploit.py: -------------------------------------------------------------------------------- 1 | if __name__ == "__main__": 2 | try: 3 | import requests 4 | import json 5 | import colorama 6 | import cfonts 7 | import time 8 | except: 9 | from json import loads 10 | from colorama.ansi import Fore 11 | from colorama.initialise import init 12 | from cfonts import (cli , render) 13 | 14 | REQ = [ 15 | f"{colorama.ansi.Fore.WHITE}", 16 | f"{colorama.ansi.Fore.MAGENTA}", 17 | f"{colorama.ansi.Fore.GREEN}", 18 | f"{colorama.ansi.Fore.CYAN}", 19 | f"{colorama.ansi.Fore.RED}" 20 | ] 21 | 22 | def Headers(): 23 | LOGO = """ 24 | :=+=. :=+=. 25 | :*@%= =@@+: 26 | .= -%@@+ +@@#- =. 27 | +%..#@@@: :@@@#..%+ 28 | .%@::@@@@. :@@@@::@%. 29 | .@@+ %@@@* *@@@@ =@@: 30 | .@@@. .#@@@#: :#@@@#. @@@. 31 | *@@@+: :#@@@%=. +. = .=%@@@#: :+@@@# 32 | -#@@@@@*=.:#@@@@%+-%++#+=#+=%=+%@@@@#:.-*@@@@@%- 33 | .-*%@@@@@##@@@@@@@@@@@@@@@@@@@@@@##@@@@@%*=. 34 | .-+#@@@@@@@@@@@@@@@@@@@@@@@@@@@@%+-. 35 | -**########@@@@@@@@@@@@@@@@@@@@@@@@@@######****- 36 | :@@@@%##***@@@@@@@@@@@@@@@@@@@@@@@@@@***#%%@@@@- 37 | @@@: :+#@@@@#=#@@@@@@@@@@@@@@#=#@@@@#=: :@@@ 38 | =@@=+@@@@@*- %@@@@@@@@@@@@@@# -*@@@@@+-@@= 39 | *@%-@@@# %@@@@@@@@@@@@@@# .#@@@-#@# 40 | *@-+@@@. *@@@@@@@@@@@@@@* .%@@+-@# 41 | =@.+@@%. :@@@@@@@@@@@@@@: .%@@+.@+ 42 | .*::%@@- *@@@@@@@@@@@@* -@@%::*: 43 | : =%@#. #@@@@@@@@@@* .#@@= : 44 | -#@*. -%@@@@@@%- .*@#- 45 | -++-. -*%%*: .-++- 46 | """ 47 | print(f"{REQ[3]}{LOGO}") 48 | time.sleep(1.5) 49 | spiderSploit = cfonts.render("Spiderploit" , colors = ["blue" , "cyan" , "bright_blue"] , font = "chrome" , align = "left") 50 | print(spiderSploit) 51 | 52 | Headers() 53 | 54 | def MainScript(): 55 | Y = time.strftime("%Y/%m/%d") 56 | C = time.strftime("%H:%M:%S") 57 | API = requests.get("https://api.myip.com").content 58 | J = json.loads(API) 59 | PI = J["ip"] 60 | CT = J["country"] 61 | INPUT = str(input(f"{REQ[2]}[{REQ[1]}+{REQ[2]}] {REQ[3]}({REQ[4]}$piderpl0it{REQ[3]})-{REQ[3]}[{REQ[4]}~{REQ[3]}]{REQ[4]}--${REQ[0]} ")) 62 | with open("list.txt" , "r") as LIST: 63 | for ELEMENT in LIST: 64 | Protocol = requests.get(f"https://{INPUT}{ELEMENT}") 65 | if Protocol.status_code == 200: 66 | print(f"{REQ[3]}[{Y}][{C}] : [{PI}][{CT}]{REQ[0]} :: {REQ[2]}{ELEMENT} \t") 67 | with open(r"{}".format("log/log.txt") , "a") as LOG: 68 | LOG.write(f"{ELEMENT} is available in {INPUT}") 69 | LOG.close() 70 | elif Protocol.status_code != 200: 71 | print(f"{REQ[3]}[{Y}][{C}] : [{PI}][{CT}]{REQ[0]} :: {REQ[4]}{ELEMENT} \t") 72 | with open(r"{}".format("log/log.txt") , "a") as LOG: 73 | LOG.write(f"{ELEMENT} is not available in {INPUT}") 74 | LOG.close() 75 | MainScript() -------------------------------------------------------------------------------- /Spiderploit/liecense.txt: -------------------------------------------------------------------------------- 1 | By downloading or using this software or accompanying documentation you agree to the following terms and conditions. 2 | License Grant. You are hereby granted a personal, non-transferable and non-sublicenseable, nonexclusive, world-wide, royalty free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the program examples and sample applications ("Sample Applications") and any such derivative works, in source code and object code form. Except for the copyright license above, you are granted no other rights or licenses, by implication, or estoppel, or otherwise, under any patents or other intellectual property rights. 3 | No Warranties. The Sample Applications contained herein are provided on an "AS IS" basis and to the maximum extent permitted by applicable law, this material is provided AS IS AND WITH ALL FAULTS, and the authors and developers of this material and WS-I hereby disclaim all other warranties and conditions, either express, implied or statutory, including, but not limited to, any (if any) implied warranties, duties or conditions of merchantability, of fitness for a particular purpose, of accuracy or completeness of responses, of results, of workmanlike effort, of lack of viruses, and of lack of negligence. ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT WITH REGARD TO THIS MATERIAL. 4 | Limitation of Liability. IN NO EVENT WILL ANY AUTHOR, DEVELOPER, LICENSOR, OR DISTRIBUTOR OF THIS MATERIAL OR WS-I BE LIABLE TO ANY OTHER PARTY FOR THE COST OF PROCURING SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS OF USE, LOSS OF DATA, OR ANY INCIDENTAL, CONSEQUENTIAL, DIRECT, INDIRECT, PUNITIVE, OR SPECIAL DAMAGES WHETHER UNDER CONTRACT, TORT, WARRANTY, OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY OTHER AGREEMENT RELATING TO THIS MATERIAL, WHETHER OR NOT SUCH PARTY HAD ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. 5 | Redistribution. If you choose to distribute these Sample Applications or any derivative works thereof in a commercial product, you must defend and indemnify all authors, developers, licensors, and distributors (the "Indemnified Parties") of the Sample Applications against any losses, damages and costs arising from claims, lawsuits and other legal actions (excluding actions based on intellectual property infringement claims) brought by a third party against the Indemnified Parties to the extent caused by your acts or omissions in connection with your distribution. Regardless of whether your distribution is a commercial product or not, the license under which you redistribute the Sample Applications or any derivative works thereof must: 6 | effectively disclaim on behalf of all authors, developers, licensors, and distributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; 7 | effectively exclude on behalf of all authors, developers, licensors, and distributors all liability for damages, including direct, indirect, special, punitive, incidental and consequential damages, such as lost profits; 8 | state that any provisions which differ from this license are offered by you alone and not by any other party; and 9 | require that the license under which any subsequent distribution of the Sample Applications or derivative works thereof is made satisfy the terms of this section. 10 | Use of WS-I Name. WS-I rules, if any, regarding the use of its name and your ability to make claims regarding WS-I or your use of the Sample Applications can be found at https://www.github.com/shervin-glitch As a condition to your license, you agree to abide by all such rules. 11 | General. 12 | No other rights are granted by implication, estoppel or otherwise. 13 | If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. 14 | Your rights under this Agreement shall terminate if you fail to comply with any of the material terms or conditions of this Agreement and do not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all your rights under this Agreement terminate, you agree to cease use of the Sample Applications and any derivative works thereof immediately. 15 | This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. 16 | 17 | @Github@ : https://www.github.com/shervin-glitch 18 | @Instagram@ : @shervin.bdn -------------------------------------------------------------------------------- /Spiderploit/list.txt: -------------------------------------------------------------------------------- 1 | /robots.txt 2 | /wp-login.php 3 | /admin 4 | /admin/ 5 | /0manager/ 6 | /aadmin/ 7 | /acceso.php 8 | /acceso.asp 9 | /acceso.html 10 | /access.php 11 | /access.asp 12 | /access.html 13 | /access/ 14 | /account.asp 15 | /account.html 16 | /account.php 17 | /accounts/ 18 | /acct_login/ 19 | /adm.php 20 | /adm.asp 21 | /adm.html 22 | /adm/ 23 | /adm_user 24 | /adm_usr 25 | /admin1.asp 26 | /admin1.htm 27 | /admin1.html 28 | /admin1.php 29 | /admin1/ 30 | /admin2.asp 31 | /admin2.html 32 | /admin2.php 33 | /admin4_account/ 34 | /admin4_colon/ 35 | /admin.asp 36 | /admin.htm 37 | /admin.html 38 | /admin.php 39 | /admin/ 40 | /admin/account.asp 41 | /admin/account.html 42 | /admin/account.php 43 | /admin/adminLogin.htm 44 | /admin/adminLogin.html 45 | /admin/controlpanel.asp 46 | /admin/controlpanel.htm 47 | /admin/controlpanel.html 48 | /admin/controlpanel.php 49 | /admin/cp.asp 50 | /admin/cp.html 51 | /admin/cp.php 52 | /admin/home.asp 53 | /admin/home.php 54 | /admin/index.asp 55 | /admin/index.html 56 | /admin/index.php 57 | /admin/login.asp 58 | /admin/login.htm 59 | /admin/login.html 60 | /admin/login.php 61 | /admin_area/ 62 | /admin_area.asp 63 | /admin_area.html 64 | /admin_area.php 65 | /admin_area/admin.php 66 | /admin_area/admin.asp 67 | /admin_area/admin.html 68 | /admin_area/login.php 69 | /admin_area/login.asp 70 | /admin_area/login.html 71 | /adminArea 72 | /adminarea 73 | /adminarea.html 74 | /adminarea.php 75 | /admincontrol.asp 76 | /admincontrol.html 77 | /admincontrol.php 78 | /admincontrol/ 79 | /admincp/ 80 | /administer/ 81 | /administr8.asp 82 | /administr8.html 83 | /administr8.php 84 | /administr8/ 85 | /administration.html 86 | /administration.php 87 | /administration/ 88 | /administrator.asp 89 | /administrator.html 90 | /administrator.php 91 | /administrator/ 92 | /administrator/account.asp 93 | /administrator/account.html 94 | /administrator/account.php 95 | /administrator/index.asp 96 | /administrator/index.html 97 | /administrator/index.php 98 | /administrator/login.asp 99 | /administrator/login.html 100 | /administrator/login.php 101 | /administratoraccounts/ 102 | /administratorlogin.php 103 | /administratorlogin.asp 104 | /administratorlogin.html 105 | /administratorlogin/ 106 | /administrators.php 107 | /administrators.asp 108 | /administrators.html 109 | /administrators/ 110 | /administrivia/ 111 | /adminitem/ 112 | /adminitems/ 113 | /adminLogin/ 114 | /adminpanel.asp 115 | /adminpanel.html 116 | /adminpanel.php 117 | /adminpanel/ 118 | /adminpro/ 119 | /admins.asp 120 | /admins.html 121 | /admins.php 122 | /admins/ 123 | /adminsite/ 124 | /AdminTools/ 125 | /admuser 126 | /admusr 127 | /auth.php 128 | /auth.asp 129 | /auth.html 130 | /authadmin.php 131 | /authadmin.asp 132 | /authadmin.html 133 | /authadmin/ 134 | /authenticate.php 135 | /authenticate.asp 136 | /authenticate.html 137 | /authenticate/ 138 | /authentication.php 139 | /authentication.asp 140 | /authentication.html 141 | /authentication/ 142 | /authuser.php 143 | /authuser.asp 144 | /authuser.html 145 | /autologin.php 146 | /autologin.asp 147 | /autologin.html 148 | /autologin/ 149 | /banneradmin/ 150 | /bb-admin/ 151 | /bb-admin/admin.php 152 | /bb-admin/admin.html 153 | /bb-admin/login.asp 154 | /bbadmin/ 155 | /bigadmin/ 156 | /blogindex/ 157 | /cadmins/ 158 | /ccp14admin/ 159 | /cgi-bin/login 160 | /cmsadmin.php 161 | /cmsadmin.asp 162 | /cmsadmin.html 163 | /cmsadmin/ 164 | /control.php 165 | /control.asp 166 | /control.html 167 | /control/ 168 | /controlpanel.asp 169 | /controlpanel.html 170 | /controlpanel.php 171 | /controlpanel/ 172 | /cp.asp 173 | /cp.html 174 | /cp.php 175 | /cp/ 176 | /cpanel/ 177 | /cpanel_file/ 178 | /customer_login/ 179 | /Database_Administration/ 180 | /database_administration/ 181 | /dir-login/ 182 | /directadmin/ 183 | /ezsqliteadmin/ 184 | /fileadmin.asp 185 | /fileadmin.html 186 | /fileadmin.php 187 | /fileadmin/ 188 | /formslogin/ 189 | /globes_admin/ 190 | /hpwebjetadmin/ 191 | /Indy_admin/ 192 | /irc-macadmin/ 193 | /isadmin.php 194 | /isadmin.asp 195 | /isadmin.html 196 | /isadmin/ 197 | /kpanel/ 198 | /letmein/ 199 | /LiveUser_Admin/ 200 | /log-in.php 201 | /log-in.asp 202 | /log-in.html 203 | /log-in/ 204 | /log_in.php 205 | /log_in.asp 206 | /log_in.html 207 | /log_in/ 208 | /login1/ 209 | /login-redirect/ 210 | /login-us/ 211 | /login.admin.php 212 | /login.asp 213 | /login.htm 214 | /login.html 215 | /login.php 216 | /login/ 217 | /login_admin.php 218 | /login_admin.asp 219 | /login_admin.html 220 | /login_admin/ 221 | /login_db/ 222 | /login_user.php 223 | /login_user.asp 224 | /login_user.html 225 | /login_user/ 226 | /loginerror/ 227 | /loginflat/ 228 | /loginok/ 229 | /loginsave/ 230 | /loginsuper/ 231 | /logo_sysadmin/ 232 | /Lotus_Domino_Admin/ 233 | /macadmin/ 234 | /manage.php 235 | /manage.asp 236 | /manage.html 237 | /manage/ 238 | /management.php 239 | /management.asp 240 | /management.html 241 | /management/ 242 | /manager.php 243 | /manager.asp 244 | /manager.html 245 | /manager/ 246 | /managment/admin 247 | /manuallogin/ 248 | /member.php 249 | /member.asp 250 | /member.html 251 | /member/ 252 | /memberadmin.php 253 | /memberadmin.asp 254 | /memberadmin.html 255 | /memberadmin/ 256 | /members.php 257 | /members.asp 258 | /members.html 259 | /members/ 260 | /memlogin/ 261 | /meta_login/ 262 | /modelsearch/login.asp 263 | /modelsearch/login.php 264 | /moderator.asp 265 | /moderator.html 266 | /moderator.php 267 | /moderator/ 268 | /moderator/admin.asp 269 | /moderator/admin.html 270 | /moderator/admin.php 271 | /moderator/login.asp 272 | /moderator/login.html 273 | /moderator/login.php 274 | /modules/admin/ 275 | /myadmin/ 276 | /navSiteAdmin/ 277 | /newsadmin/ 278 | /openvpnadmin/ 279 | /pages/admin/ 280 | /pages/admin/admin-login.php 281 | /pages/admin/admin-login.asp 282 | /pages/admin/admin-login.html 283 | /panel-administracion/ 284 | /panel-administracion/login.php 285 | /panel-administracion/login.asp 286 | /panel-administracion/login.html 287 | /panel.php 288 | /panel.asp 289 | /panel.html 290 | /panel/ 291 | /pgadmin/ 292 | /phpldapadmin/ 293 | /phpmyadmin/ 294 | /phppgadmin/ 295 | /phpSQLiteAdmin/ 296 | /platz_login/ 297 | /power_user/ 298 | /processlogin.php 299 | /processlogin.asp 300 | /processlogin.html 301 | /processlogin.php/ 302 | /project-admins/ 303 | /PSUser/ 304 | /pureadmin/ 305 | /pwadmin 306 | /radmind-1/ 307 | /radmind/ 308 | /rcLogin/ 309 | /relogin.asp 310 | /relogin.php 311 | /relogin.html 312 | /relogin/ 313 | /root/ 314 | /secret/ 315 | /secrets/ 316 | /secure/ 317 | /security/ 318 | /Server.asp 319 | /Server.html 320 | /Server.php 321 | /Server/ 322 | /server/ 323 | /server_admin_small/ 324 | /ServerAdministrator/ 325 | /showlogin/ 326 | /sign-in.php 327 | /sign-in.asp 328 | /sign-in.html 329 | /sign-in/ 330 | /sign_in.php 331 | /sign_in.asp 332 | /sign_in.html 333 | /sign_in/ 334 | /signin.php 335 | /signin.asp 336 | /signin.html 337 | /signin/ 338 | /simpleLogin/ 339 | /siteadmin.php 340 | /siteadmin.asp 341 | /siteadmin.html 342 | /siteadmin/ 343 | /smblogin/ 344 | /sql-admin/ 345 | /ss_vms_admin_sm/ 346 | /sshadmin/ 347 | /staradmin/ 348 | /sub-login/ 349 | /super1.php 350 | /super1.asp 351 | /super1.html 352 | /super1/ 353 | /super.php 354 | /super.asp 355 | /super.html 356 | /super/ 357 | /Super-Admin/ 358 | /super_index.php 359 | /super_index.asp 360 | /super_index.html 361 | /super_index/ 362 | /super_login.php 363 | /super_login.asp 364 | /super_login.html 365 | /superman.php 366 | /superman.asp 367 | /superman.html 368 | /superman/ 369 | /supermanager.php 370 | /supermanager.asp 371 | /supermanager.html 372 | /superuser.php 373 | /superuser.asp 374 | /superuser.html 375 | /superuser/ 376 | /supervise/ 377 | /supervise/Login 378 | /supervisor/ 379 | /support_login/ 380 | /sys-admin/ 381 | /sys_user 382 | /sys_usr 383 | /sysadm/ 384 | /SysAdmin2/ 385 | /sysadmin.asp 386 | /sysadmin.html 387 | /sysadmin.php 388 | /SysAdmin/ 389 | /sysadmin/ 390 | /sysadmins/ 391 | /system-administration/ 392 | /system_administration/ 393 | /sysuser 394 | /sysusr 395 | /typo3/ 396 | /ur-admin.asp 397 | /ur-admin.html 398 | /ur-admin.php 399 | /ur-admin/ 400 | /user/ 401 | /useradmin/ 402 | /UserLogin/ 403 | /users/ 404 | /usr/ 405 | /utility_login/ 406 | /uvpanel/ 407 | /vadmind/ 408 | /vmailadmin/ 409 | /vorod/ 410 | /vorud/ 411 | /webadmin.asp 412 | /webadmin.html 413 | /webadmin.php 414 | /WebAdmin/ 415 | /webadmin/ 416 | /webmaster/ 417 | /wizmysqladmin/ 418 | /wp-admin/ 419 | /wp-login.php 420 | /wp-login/ 421 | /xlogin/ 422 | /yonetici.asp 423 | /yonetici.html 424 | /yonetici.php 425 | /yonetim.asp 426 | /yonetim.html 427 | /yonetim.php 428 | /wp-content/plugins/ 429 | /wp-admin/admin-ajax.php 430 | /content-override.php 431 | /sitemap_index.xml 432 | /administrator/ 433 | /cache/ 434 | /cli/ 435 | /components/ 436 | /images/ 437 | /includes/ 438 | /installation/ 439 | /language/ 440 | /libraries/ 441 | /logs/ 442 | /media/ 443 | /modules/ 444 | /plugins/ 445 | /templates/ 446 | /tmp/ 447 | /computing/robots/check.html 448 | /posts/ 449 | /posts? 450 | /amzn/click/ 451 | /questions/ask/ 452 | /questions/ask? 453 | /search/ 454 | /search? 455 | /feeds/ 456 | /feeds? 457 | /users/login/ 458 | /users/login? 459 | /users/logout/ 460 | /users/logout? 461 | /users/filter/ 462 | /users/filter? 463 | /users/signup 464 | /users/signup/ 465 | /users/signup? 466 | /users/authenticate/ 467 | /users/authenticate? 468 | /users/oauth/* 469 | /users/flag-summary/ 470 | /users/flair/ 471 | /users/flair? 472 | /users/activity/ 473 | /users/activity/? 474 | /users/stats/ 475 | /users/*?tab=accounts 476 | /users/*?tab=activity 477 | /users/rep/show 478 | /users/rep/show? 479 | /users/prediction-data 480 | /users/prediction-data/ 481 | /users/prediction-data? 482 | /unanswered/ 483 | /unanswered? 484 | /u/ 485 | /messages/ 486 | /api/* 487 | /review/* 488 | /*/ivc/* 489 | /*?lastactivity 490 | /users/login/global/request/ 491 | /users/login/global/request? 492 | /questions/*answertab=* 493 | /questions/tagged/*+* 494 | /questions/tagged/*%20* 495 | /questions/*/answer/submit 496 | /tags/*+* 497 | /tags/*%20* 498 | /suggested-edits/ 499 | /suggested-edits? 500 | /ajax/ 501 | /plugins/ 502 | /error 503 | /gps/* 504 | /10m 505 | /jobs/cv/sign-up-and-create 506 | /jobs/n/* 507 | /jobs/a/* 508 | /jobs/apply/* 509 | /jobs/companies/n/* 510 | /jobs/companies/a/* 511 | /jobs/*/more-jobs-count 512 | /jobs/email-job 513 | /emails/* 514 | /card 515 | /shipping 516 | /payment 517 | *?* 518 | /search?q=* 519 | /profile* 520 | *utm_* 521 | /product/comment/* 522 | /rss 523 | /services 524 | /temp 525 | /testservice 526 | /upload 527 | /web%20references 528 | /bin-copy 529 | /*product/dkpi-* 530 | /profile/* 531 | /cart/* 532 | /waiting/* 533 | /checkout/* 534 | /addcomment/* 535 | /compare/* 536 | /imagecompare/* 537 | /invalidrequest 538 | /user/* 539 | /mobilecheckout/* 540 | /creditcard/* 541 | /cartinfo/* 542 | /mymessage/* 543 | /message/* 544 | /mycomment/* 545 | /myreview/* 546 | /review/* 547 | /myfavorite/* 548 | /favorite/* 549 | /guid/* 550 | /news/* 551 | /unsubscribe/* 552 | /oldproduct/* 553 | /onlinepayment/* 554 | /load/* 555 | /additionalinfo/* 556 | /mag/readme 557 | /joomla/administrator/ 558 | /orig.html 559 | /Fa/uploadedFiles/ 560 | /Services/ 561 | /App_Themes 562 | /asset 563 | /Scripts 564 | /sitemap.ashx 565 | /app-sitemap.xml 566 | /video-sitemap.xml 567 | /flats-sitemap.xml 568 | /categories-sitemap.xml 569 | /developers-sitemap.xml 570 | /app-list-sitemap.xml 571 | /automatic-list-sitemap.xml 572 | /video-list-sitemap.xml 573 | /pages-sitemap.xml 574 | /download/* 575 | /json/* 576 | /api/* 577 | /worldbook/ 578 | /offices/oce/llis/ 579 | /researchtools/ose/$ 580 | /researchtools/ose/dotbot$ 581 | /researchtools/ose/links$ 582 | /researchtools/ose/just-discovered$ 583 | /researchtools/ose/pages$ 584 | /researchtools/ose/domains$ 585 | /researchtools/ose/anchors$ 586 | /products/ 587 | /local/ 588 | /learn/ 589 | /researchtools/ose/ 590 | /researchtools/ose/dotbot$ 591 | /products/content/ 592 | /local/enterprise/confirm 593 | /researchtools/ose/ 594 | /page-strength/* 595 | /thumbs/* 596 | /api/user?* 597 | /checkout/freetrial/* 598 | /local/search/ 599 | /local/details/ 600 | /messages/ 601 | /content/audit/* 602 | /content/search/* 603 | /marketplace/ 604 | /cpresources/ 605 | /vendor/ 606 | /community/q/questions/*/view_counts 607 | /admin-preview/* 608 | --------------------------------------------------------------------------------