Metadata-Version: 2.1
Name: oxdork
Version: 2021.2.1.6
Summary: Google dorking tool
Home-page: https://github.com/rlyonheart/oxdork
Author: Richard Mwewa
Author-email: richardmwewa@duck.com
License: MIT License
Description: ![Python Version](https://img.shields.io/badge/python-3.x-blue?style=flat&logo=python)
        ![OS](https://img.shields.io/badge/OS-GNU%2FLinux-red?style=flat&logo=linux)
        ![GitHub](https://img.shields.io/github/license/rlyonheart/oxdork?ystyle=flat)
        ![CodeFactor](https://www.codefactor.io/repository/github/rlyonheart/oxdork/badge)
        [![Downloads](https://static.pepy.tech/personalized-badge/oxdork?period=total&units=international_system&left_color=black&right_color=orange&left_text=pypi+downloads)](https://pepy.tech/project/oxdork)
        ![Lines of code](https://img.shields.io/tokei/lines/github/rlyonheart/oxdork)
        ![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/rlyonheart/oxdork?include_prereleases)
        ![GitHub repo size](https://img.shields.io/github/repo-size/rlyonheart/oxdork)
        
         # Google dorking
         Google hacking, also named Google dorking, is a hacker technique that uses Google Search and other Google applications to find security holes in the configuration and computer code that websites are using. Google dorking could also be used for OSINT(Open Source Intelligence).
         
        
         **o𝐱𝐝𝐨𝐫𝐤** *uses Google dorking techniques and Google dorks to find security holes and misconfigurations in web servers*.
        
        
        # Basic dorks
        
        | Dork         | Usage     | Example |
        | ------------- |:---------:|:-------:|
        | <code>allintext:</code> | *finds all specified terms in the title of a page* |  **allintext:passwords** |
        | <code>inurl:</code> | *finds a specified string in the url of a page*      |   **inurl:index.php?id=1** |
        | <code>site:</code> |  *locks a search on a specified site or domain*  |  **site:example.com**  |
        | <code>intitle:</code> |  *finds a specified strings in the title of a page* |  **intitle:"your text here"** |
        | <code>link:</code> | *searches for all links to a specified site or domain* | **link:example.com** |
        | <code>cache:</code> | *returns Google's cached copy of a specified url page* | **cache:www.example.com** |
        | <code>info:</code> | *returns summary information about a specified url* | **info:https://example.com** |
        
        
        
        # Installation & Usage
        **Clone from Github**:
        ```
        git clone https://github.com/rlyonheart/oxdork.git
        ```
        
        ```
        cd oxdork
        ```
        
        ```
        python oxdork QUERY
        ```
        
        **example**:
        ```
        python oxdork -v 'intext: osint'
        ```
        
        **Install from pypi**:
        ```
        pip install oxdork
        ```
        
        ```
        oxdork QUERY
        ```
        
        **example**:
        ```
        oxdork -v 'intext: osint'
        ```
        
        
        # Optional Arguments
        
        | Flag           | MetaVar | Usage |
        | ------------- |:----------------------:|:---------:|
        | <code>-c/--count</code>    | **NUMBER** |  *number of dork results to return (default is 50)* |
        | <code>-o/--outfile</code>      |   **FILENAME** |  *write output to a file*  |
        | <code>-v/--verbose</code>      |    |  *run oxdork in verbose mode*  |
        
        
        
        # Notes:
        * *Use VPN for better experience.*
        
        * *If search query contains spaces, it should be put inside quote* **" "** *symbols.*
        
        * *Sending more than 5 requests in less than 5 minutes will return a 429 error code. That is why using a VPN is recommended.*
        
        
        # Queries:
        A collection of 5,568 common dork queries [here](https://github.com/rlyonheart/oxdork/tree/master/dork_queries)
        
        
        # About author
        * [About.me](https://about.me/rlyonheart)
        
        # Contact author
        * [Github](https://github.com/rlyonheart)
        
        * [Twitter](https://twitter.com/rly0nheart)
Platform: UNKNOWN
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
