ail-typo-squatting


Nameail-typo-squatting JSON
Version 2.7.3 PyPI version JSON
download
home_pagehttps://github.com/typosquatter/ail-typo-squatting
SummaryGenerate list of domain name using Domain name permutation engine to feed AIL
upload_time2023-10-20 12:41:46
maintainerAlexandre Dulaunoy
docs_urlNone
authorDavid Cruciani
requires_python>=3.8,<4.0
licenseBSD-2-Clause
keywords typo-squatting typosquatting
VCS
bugtrack_url
requirements certifi charset-normalizer dnspython filelock idna inflect pyyaml requests-file requests retrie six tldextract urllib3
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ail-typo-squatting

ail-typo-squatting is a Python library to generate list of potential typo squatting domains with domain name permutation engine to feed AIL and other systems. 

The tool can be used as a stand-alone tool or to feed other systems.

# Requirements

- Python 3.6+
- [inflect](https://github.com/jaraco/inflect) library
- [pyyaml](https://pyyaml.org/wiki/PyYAMLDocumentation)

## Optional

- [dnspython](https://github.com/rthalley/dnspython)

# Installation

## Source install

ail-typo-squatting can be install with poetry. If you don't have poetry installed, you can do the following `curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python`.

```bash
$ poetry install
$ poetry shell
$ cd ail-typo-squatting
$ python typo.py -h
```

## pip installation

```bash
$ pip3 install ail-typo-squatting
```

# Usage

```bash
dacru@dacru:~/git/ail-typo-squatting/bin$ python3 typo.py --help  
usage: typo.py [-h] [-v] [-dn DOMAINNAME [DOMAINNAME ...]] [-fdn FILEDOMAINNAME] [-o OUTPUT]
               [-fo FORMATOUTPUT] [-br] [-dnsr] [-dnsl] [-l LIMIT] [-var] [-ko] [-a] [-om] [-repe] [-repl]
               [-drepl] [-cho] [-add] [-md] [-sd] [-vs] [-ada] [-hg] [-ahg] [-cm] [-hp] [-wt] [-wsld] [-at]
               [-sub] [-sp] [-cdd] [-addns] [-ns] [-combo] [-ca]

optional arguments:
  -h, --help            show this help message and exit
  -v                    verbose, more display
  -dn DOMAINNAME [DOMAINNAME ...], --domainName DOMAINNAME [DOMAINNAME ...]
                        list of domain name
  -fdn FILEDOMAINNAME, --filedomainName FILEDOMAINNAME
                        file containing list of domain name
  -o OUTPUT, --output OUTPUT
                        path to ouput location
  -fo FORMATOUTPUT, --formatoutput FORMATOUTPUT
                        format for the output file, yara - regex - yaml - text. Default: text
  -br, --betterregex    Use retrie for faster regex
  -dnsr, --dnsresolving
                        resolve all variation of domain name to see if it's up or not
  -dnsl, --dnslimited   resolve all variation of domain name but keep only up domain in final result json
  -l LIMIT, --limit LIMIT
                        limit of variations for a domain name
  -var, --givevariations
                        give the algo that generate variations
  -ko, --keeporiginal   Keep in the result list the original domain name
  -a, --all             Use all algo
  -om, --omission       Leave out a letter of the domain name
  -repe, --repetition   Character Repeat
  -repl, --replacement  Character replacement
  -drepl, --doublereplacement
                        Double Character Replacement
  -cho, --changeorder   Change the order of letters in word
  -add, --addition      Add a character in the domain name
  -md, --missingdot     Delete a dot from the domain name
  -sd, --stripdash      Delete of a dash from the domain name
  -vs, --vowelswap      Swap vowels within the domain name
  -ada, --adddash       Add a dash between the first and last character in a string
  -hg, --homoglyph      One or more characters that look similar to another character but are different are
                        called homogylphs
  -ahg, --all_homoglyph
                        generate all possible homoglyph permutations. Ex: circl.lu, e1rc1.lu
  -cm, --commonmisspelling
                        Change a word by is misspellings
  -hp, --homophones     Change word by an other who sound the same when spoken
  -wt, --wrongtld       Change the original top level domain to another
  -wsld, --wrongsld     Change the original second level domain to another
  -at, --addtld         Adding a tld before the original tld
  -sub, --subdomain     Insert a dot at varying positions to create subdomain
  -sp, --singularpluralize
                        Create by making a singular domain plural and vice versa
  -cdd, --changedotdash
                        Change dot to dash
  -addns, --adddynamicdns
                        Add dynamic dns at the end of the domain
  -ns, --numeralswap    Change a numbers to words and vice versa. Ex: circlone.lu, circl1.lu
  -combo                Combine multiple algo on a domain name
  -ca, --catchall       Combine with -dnsr. Generate a random string in front of the domain.
```

# Usage example

1. Creation of variations for `ail-project.org` and `circl.lu`, using all algorithm.

```bash
dacru@dacru:~/git/ail-typo-squatting/bin$ python3 typo.py -dn ail-project.org circl.lu -a -o .
```

2. Creation of variations for a file who contains domain name, using character omission - subdomain - hyphenation.

```bash
dacru@dacru:~/git/ail-typo-squatting/bin$ python3 typo.py -fdn domain.txt -co -sub -hyp -o . -fo yara
```

3. Creation of variations for `ail-project.org` and `circl.lu`, using all algorithm and using dns resolution.

```bash
dacru@dacru:~/git/ail-typo-squatting/bin$ python3 typo.py -dn ail-project.org circl.lu -a -dnsr -o .
```

4. Creation of variations for `ail-project.org`  and give the algorithm that generate the variation (**only for text format**).

```bash
dacru@dacru:~/git/ail-typo-squatting/bin$ python3 typo.py -dn ail-project.org -a -o - -var
```

# Used as a library

## To run all algorithms

```python
from ail_typo_squatting import runAll
import math

resultList = list()
domainList = ["google.com"]
formatoutput = "yara"
pathOutput = "."
for domain in domainList:
    resultList = runAll(
        domain=domain, 
        limit=math.inf, 
        formatoutput=formatoutput, 
        pathOutput=pathOutput, 
        verbose=False, 
        givevariations=False,
        keeporiginal=False
    )

    print(resultList)
    resultList = list()
```

## To run specific algorithm

```python
from ail_typo_squatting import formatOutput, omission, subdomain, addDash
import math

resultList = list()
domainList = ["google.com"]
limit = math.inf
formatoutput = "yara"
pathOutput = "."
for domain in domainList:
    resultList = omission(domain=domain, resultList=resultList, verbose=False, limit=limit, givevariations=False,  keeporiginal=False)

    resultList = subdomain(domain=domain, resultList=resultList, verbose=False, limit=limit, givevariations=False,  keeporiginal=False)

    resultList = addDash(domain=domain, resultList=resultList, verbose=False, limit=limit, givevariations=False,  keeporiginal=False)

    print(resultList)
    formatOutput(format=formatoutput, resultList=resultList, domain=domain, pathOutput=pathOutput, givevariations=False)

    resultList = list()
```

# Sample output

There's **4 format** possible for the output file:

- text
- yara
- regex
- sigma

For **Text** file, each line is a variation.

```
ail-project.org
il-project.org
al-project.org
ai-project.org
ailproject.org
ail-roject.org
ail-poject.org
ail-prject.org
ail-proect.org
ail-projct.org
ail-projet.org
ail-projec.org
aail-project.org
aiil-project.org
...
```

For **Yara** file, each rule is a variation.

```
rule ail-project_org {
    meta:
        domain = "ail-project.org"
    strings: 
        $s0 = "ail-project.org"
        $s1 = "il-project.org"
        $s2 = "al-project.org"
        $s3 = "ai-project.org"
        $s4 = "ailproject.org"
        $s5 = "ail-roject.org"
        $s6 = "ail-poject.org"
        $s7 = "ail-prject.org"
        $s8 = "ail-proect.org"
        $s9 = "ail-projct.org"
        $s10 = "ail-projet.org"
        $s11 = "ail-projec.org"
    condition:
         any of ($s*)
}
```

For **Regex** file, each variations is transform into regex and concatenate with other to do only one big regex.

```
ail\-project\.org|il\-project\.org|al\-project\.org|ai\-project\.org|ailproject\.org|ail\-roject\.org|ail\-poject\.org|ail\-prject\.org|ail\-proect\.org|ail\-projct\.org|ail\-projet\.org|ail\-projec\.org
```

For **Sigma** file, each variations are list under `variations` key.

```
title: ail-project.org
variations:
- ail-project.org
- il-project.org
- al-project.org
- ai-project.org
- ailproject.org
- ail-roject.org
- ail-poject.org
- ail-prject.org
- ail-proect.org
- ail-projct.org
- ail-projet.org
- ail-projec.org
```

## DNS output

In case DNS resolve is selected, an additional file will be created in JSON format

each keys are variations and may have a field "ip" if the domain name have been resolved. The filed "NotExist" will be there each time with a Boolean value to determine if the domain is existing or not.

```json
{
    "circl.lu": {
        "NotExist": false,
        "ip": [
            "185.194.93.14"
        ]
    },
    "ircl.lu": {
        "NotExist": true
    },
    "crcl.lu": {
        "NotExist": true
    },
    "cicl.lu": {
        "NotExist": true
    },
    "cirl.lu": {
        "NotExist": true
    },
    "circ.lu": {
        "NotExist": true
    },
    "ccircl.lu": {
        "NotExist": true
    },
    "ciircl.lu": {
        "NotExist": true
    },
    ...
}
```

# List of algorithms used

| Algo               | Description                                                                                                                                                                                                                               |
|:------------------ |:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| AddDash            | These typos are created by adding a dash between the first and last character in a string.                                                                                                                                                |
| Addition           | These typos are created by add a characters in the domain name.                                                                                                                                                                           |
| AddDynamicDns      | These typos are created by adding a dynamic dns at the end of the original domain.                                                                                                                                                        |
| AddTld             | These typos are created by adding a tld before the right tld. Example: google.com becomes google.com.it                                                                                                                                   |
| ChangeDotDash      | These typos are created by changing a dot to a dash.                                                                                                                                                                                      |
| ChangeOrder        | These typos are created by changing the order of letters in the each part of the domain.                                                                                                                                                  |
| Combo              | These typos are created by combining multiple algorithms. For example, circl.lu becomes cirl6.lu                                                                                                                                          |
| CommonMisspelling  | These typos are created by changing a word by is misspelling. Over 8000 common misspellings from Wikipedia. For example, www.youtube.com becomes www.youtub.com and www.abseil.com becomes www.absail.com.                                |
| Double Replacement | These typos are created by replacing identical, consecutive letters of the domain name.                                                                                                                                                   |
| Homoglyph          | These typos are created by replacing characters to another character that look similar but are different.  An example is that the lower case l looks similar to the numeral one, e.g. l vs 1. For example, google.com becomes goog1e.com. |
| Homophones         | These typos are created by changing word by an other who sound the same when spoken. Over 450 sets of words that sound the same when spoken. For example, www.base.com becomes www.bass.com.                                              |
| MissingDot         | These typos are created by deleting a dot from the domain name.                                                                                                                                                                           |
| NumeralSwap        | These typos are created by changing a number to words and vice versa. For example, circlone.lu becomes circl1.lu.                                                                                                                         |
| Omission           | These typos are created by leaving out a letter of the domain name, one letter at a time.                                                                                                                                                 |
| Repetition         | These typos are created by repeating a letter of the domain name.                                                                                                                                                                         |
| Replacement        | These typos are created by replacing each letter of the domain name.                                                                                                                                                                      |
| StripDash          | These typos are created by deleting a dash from the domain name.                                                                                                                                                                          |
| SingularPluralize  | These typos are created by making a singular domain plural and vice versa.                                                                                                                                                                |
| Subdomain          | These typos are created by placing a dot in the domain name in order to create subdomain. Example: google.com becomes goo.gle.com                                                                                                         |
| VowelSwap          | These typos are created by swapping vowels within the domain name except for the first letter. For example, www.google.com becomes www.gaagle.com.                                                                                        |
| WrongTld           | These typos are created by changing the original top level domain to another. For example, www.trademe.co.nz becomes www.trademe.co.mz and www.google.com becomes www.google.org Uses the 19 most common top level domains.               |
| WrongSld           | These typos are created by changing the original second level domain to another. For example, www.trademe.co.uk becomes www.trademe.ac.uk and www.google.com will still be www.google.com .                                               |

# Acknowledgment

![](./img/cef.png)

The project has been co-funded by CEF-TC-2020-2 - 2020-EU-IA-0260 - JTAN - Joint Threat Analysis Network.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/typosquatter/ail-typo-squatting",
    "name": "ail-typo-squatting",
    "maintainer": "Alexandre Dulaunoy",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "a@foo.be",
    "keywords": "typo-squatting,typosquatting",
    "author": "David Cruciani",
    "author_email": "david.cruciani@securitymadein.lu",
    "download_url": "https://files.pythonhosted.org/packages/28/da/da6c0c8a67d9729e6ac0f0f00e836bc68a69e4dcb99cf65f9c0dedcc155f/ail_typo_squatting-2.7.3.tar.gz",
    "platform": null,
    "description": "# ail-typo-squatting\n\nail-typo-squatting is a Python library to generate list of potential typo squatting domains with domain name permutation engine to feed AIL and other systems. \n\nThe tool can be used as a stand-alone tool or to feed other systems.\n\n# Requirements\n\n- Python 3.6+\n- [inflect](https://github.com/jaraco/inflect) library\n- [pyyaml](https://pyyaml.org/wiki/PyYAMLDocumentation)\n\n## Optional\n\n- [dnspython](https://github.com/rthalley/dnspython)\n\n# Installation\n\n## Source install\n\nail-typo-squatting can be install with poetry. If you don't have poetry installed, you can do the following `curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python`.\n\n```bash\n$ poetry install\n$ poetry shell\n$ cd ail-typo-squatting\n$ python typo.py -h\n```\n\n## pip installation\n\n```bash\n$ pip3 install ail-typo-squatting\n```\n\n# Usage\n\n```bash\ndacru@dacru:~/git/ail-typo-squatting/bin$ python3 typo.py --help  \nusage: typo.py [-h] [-v] [-dn DOMAINNAME [DOMAINNAME ...]] [-fdn FILEDOMAINNAME] [-o OUTPUT]\n               [-fo FORMATOUTPUT] [-br] [-dnsr] [-dnsl] [-l LIMIT] [-var] [-ko] [-a] [-om] [-repe] [-repl]\n               [-drepl] [-cho] [-add] [-md] [-sd] [-vs] [-ada] [-hg] [-ahg] [-cm] [-hp] [-wt] [-wsld] [-at]\n               [-sub] [-sp] [-cdd] [-addns] [-ns] [-combo] [-ca]\n\noptional arguments:\n  -h, --help            show this help message and exit\n  -v                    verbose, more display\n  -dn DOMAINNAME [DOMAINNAME ...], --domainName DOMAINNAME [DOMAINNAME ...]\n                        list of domain name\n  -fdn FILEDOMAINNAME, --filedomainName FILEDOMAINNAME\n                        file containing list of domain name\n  -o OUTPUT, --output OUTPUT\n                        path to ouput location\n  -fo FORMATOUTPUT, --formatoutput FORMATOUTPUT\n                        format for the output file, yara - regex - yaml - text. Default: text\n  -br, --betterregex    Use retrie for faster regex\n  -dnsr, --dnsresolving\n                        resolve all variation of domain name to see if it's up or not\n  -dnsl, --dnslimited   resolve all variation of domain name but keep only up domain in final result json\n  -l LIMIT, --limit LIMIT\n                        limit of variations for a domain name\n  -var, --givevariations\n                        give the algo that generate variations\n  -ko, --keeporiginal   Keep in the result list the original domain name\n  -a, --all             Use all algo\n  -om, --omission       Leave out a letter of the domain name\n  -repe, --repetition   Character Repeat\n  -repl, --replacement  Character replacement\n  -drepl, --doublereplacement\n                        Double Character Replacement\n  -cho, --changeorder   Change the order of letters in word\n  -add, --addition      Add a character in the domain name\n  -md, --missingdot     Delete a dot from the domain name\n  -sd, --stripdash      Delete of a dash from the domain name\n  -vs, --vowelswap      Swap vowels within the domain name\n  -ada, --adddash       Add a dash between the first and last character in a string\n  -hg, --homoglyph      One or more characters that look similar to another character but are different are\n                        called homogylphs\n  -ahg, --all_homoglyph\n                        generate all possible homoglyph permutations. Ex: circl.lu, e1rc1.lu\n  -cm, --commonmisspelling\n                        Change a word by is misspellings\n  -hp, --homophones     Change word by an other who sound the same when spoken\n  -wt, --wrongtld       Change the original top level domain to another\n  -wsld, --wrongsld     Change the original second level domain to another\n  -at, --addtld         Adding a tld before the original tld\n  -sub, --subdomain     Insert a dot at varying positions to create subdomain\n  -sp, --singularpluralize\n                        Create by making a singular domain plural and vice versa\n  -cdd, --changedotdash\n                        Change dot to dash\n  -addns, --adddynamicdns\n                        Add dynamic dns at the end of the domain\n  -ns, --numeralswap    Change a numbers to words and vice versa. Ex: circlone.lu, circl1.lu\n  -combo                Combine multiple algo on a domain name\n  -ca, --catchall       Combine with -dnsr. Generate a random string in front of the domain.\n```\n\n# Usage example\n\n1. Creation of variations for `ail-project.org` and `circl.lu`, using all algorithm.\n\n```bash\ndacru@dacru:~/git/ail-typo-squatting/bin$ python3 typo.py -dn ail-project.org circl.lu -a -o .\n```\n\n2. Creation of variations for a file who contains domain name, using character omission - subdomain - hyphenation.\n\n```bash\ndacru@dacru:~/git/ail-typo-squatting/bin$ python3 typo.py -fdn domain.txt -co -sub -hyp -o . -fo yara\n```\n\n3. Creation of variations for `ail-project.org` and `circl.lu`, using all algorithm and using dns resolution.\n\n```bash\ndacru@dacru:~/git/ail-typo-squatting/bin$ python3 typo.py -dn ail-project.org circl.lu -a -dnsr -o .\n```\n\n4. Creation of variations for `ail-project.org`  and give the algorithm that generate the variation (**only for text format**).\n\n```bash\ndacru@dacru:~/git/ail-typo-squatting/bin$ python3 typo.py -dn ail-project.org -a -o - -var\n```\n\n# Used as a library\n\n## To run all algorithms\n\n```python\nfrom ail_typo_squatting import runAll\nimport math\n\nresultList = list()\ndomainList = [\"google.com\"]\nformatoutput = \"yara\"\npathOutput = \".\"\nfor domain in domainList:\n    resultList = runAll(\n        domain=domain, \n        limit=math.inf, \n        formatoutput=formatoutput, \n        pathOutput=pathOutput, \n        verbose=False, \n        givevariations=False,\n        keeporiginal=False\n    )\n\n    print(resultList)\n    resultList = list()\n```\n\n## To run specific algorithm\n\n```python\nfrom ail_typo_squatting import formatOutput, omission, subdomain, addDash\nimport math\n\nresultList = list()\ndomainList = [\"google.com\"]\nlimit = math.inf\nformatoutput = \"yara\"\npathOutput = \".\"\nfor domain in domainList:\n    resultList = omission(domain=domain, resultList=resultList, verbose=False, limit=limit, givevariations=False,  keeporiginal=False)\n\n    resultList = subdomain(domain=domain, resultList=resultList, verbose=False, limit=limit, givevariations=False,  keeporiginal=False)\n\n    resultList = addDash(domain=domain, resultList=resultList, verbose=False, limit=limit, givevariations=False,  keeporiginal=False)\n\n    print(resultList)\n    formatOutput(format=formatoutput, resultList=resultList, domain=domain, pathOutput=pathOutput, givevariations=False)\n\n    resultList = list()\n```\n\n# Sample output\n\nThere's **4 format** possible for the output file:\n\n- text\n- yara\n- regex\n- sigma\n\nFor **Text** file, each line is a variation.\n\n```\nail-project.org\nil-project.org\nal-project.org\nai-project.org\nailproject.org\nail-roject.org\nail-poject.org\nail-prject.org\nail-proect.org\nail-projct.org\nail-projet.org\nail-projec.org\naail-project.org\naiil-project.org\n...\n```\n\nFor **Yara** file, each rule is a variation.\n\n```\nrule ail-project_org {\n    meta:\n        domain = \"ail-project.org\"\n    strings: \n        $s0 = \"ail-project.org\"\n        $s1 = \"il-project.org\"\n        $s2 = \"al-project.org\"\n        $s3 = \"ai-project.org\"\n        $s4 = \"ailproject.org\"\n        $s5 = \"ail-roject.org\"\n        $s6 = \"ail-poject.org\"\n        $s7 = \"ail-prject.org\"\n        $s8 = \"ail-proect.org\"\n        $s9 = \"ail-projct.org\"\n        $s10 = \"ail-projet.org\"\n        $s11 = \"ail-projec.org\"\n    condition:\n         any of ($s*)\n}\n```\n\nFor **Regex** file, each variations is transform into regex and concatenate with other to do only one big regex.\n\n```\nail\\-project\\.org|il\\-project\\.org|al\\-project\\.org|ai\\-project\\.org|ailproject\\.org|ail\\-roject\\.org|ail\\-poject\\.org|ail\\-prject\\.org|ail\\-proect\\.org|ail\\-projct\\.org|ail\\-projet\\.org|ail\\-projec\\.org\n```\n\nFor **Sigma** file, each variations are list under `variations` key.\n\n```\ntitle: ail-project.org\nvariations:\n- ail-project.org\n- il-project.org\n- al-project.org\n- ai-project.org\n- ailproject.org\n- ail-roject.org\n- ail-poject.org\n- ail-prject.org\n- ail-proect.org\n- ail-projct.org\n- ail-projet.org\n- ail-projec.org\n```\n\n## DNS output\n\nIn case DNS resolve is selected, an additional file will be created in JSON format\n\neach keys are variations and may have a field \"ip\" if the domain name have been resolved. The filed \"NotExist\" will be there each time with a Boolean value to determine if the domain is existing or not.\n\n```json\n{\n    \"circl.lu\": {\n        \"NotExist\": false,\n        \"ip\": [\n            \"185.194.93.14\"\n        ]\n    },\n    \"ircl.lu\": {\n        \"NotExist\": true\n    },\n    \"crcl.lu\": {\n        \"NotExist\": true\n    },\n    \"cicl.lu\": {\n        \"NotExist\": true\n    },\n    \"cirl.lu\": {\n        \"NotExist\": true\n    },\n    \"circ.lu\": {\n        \"NotExist\": true\n    },\n    \"ccircl.lu\": {\n        \"NotExist\": true\n    },\n    \"ciircl.lu\": {\n        \"NotExist\": true\n    },\n    ...\n}\n```\n\n# List of algorithms used\n\n| Algo               | Description                                                                                                                                                                                                                               |\n|:------------------ |:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| AddDash            | These typos are created by adding a dash between the first and last character in a string.                                                                                                                                                |\n| Addition           | These typos are created by add a characters in the domain name.                                                                                                                                                                           |\n| AddDynamicDns      | These typos are created by adding a dynamic dns at the end of the original domain.                                                                                                                                                        |\n| AddTld             | These typos are created by adding a tld before the right tld. Example: google.com becomes google.com.it                                                                                                                                   |\n| ChangeDotDash      | These typos are created by changing a dot to a dash.                                                                                                                                                                                      |\n| ChangeOrder        | These typos are created by changing the order of letters in the each part of the domain.                                                                                                                                                  |\n| Combo              | These typos are created by combining multiple algorithms. For example, circl.lu becomes cirl6.lu                                                                                                                                          |\n| CommonMisspelling  | These typos are created by changing a word by is misspelling. Over 8000 common misspellings from Wikipedia. For example, www.youtube.com becomes www.youtub.com and www.abseil.com becomes www.absail.com.                                |\n| Double Replacement | These typos are created by replacing identical, consecutive letters of the domain name.                                                                                                                                                   |\n| Homoglyph          | These typos are created by replacing characters to another character that look similar but are different.  An example is that the lower case l looks similar to the numeral one, e.g. l vs 1. For example, google.com becomes goog1e.com. |\n| Homophones         | These typos are created by changing word by an other who sound the same when spoken. Over 450 sets of words that sound the same when spoken. For example, www.base.com becomes www.bass.com.                                              |\n| MissingDot         | These typos are created by deleting a dot from the domain name.                                                                                                                                                                           |\n| NumeralSwap        | These typos are created by changing a number to words and vice versa. For example, circlone.lu becomes circl1.lu.                                                                                                                         |\n| Omission           | These typos are created by leaving out a letter of the domain name, one letter at a time.                                                                                                                                                 |\n| Repetition         | These typos are created by repeating a letter of the domain name.                                                                                                                                                                         |\n| Replacement        | These typos are created by replacing each letter of the domain name.                                                                                                                                                                      |\n| StripDash          | These typos are created by deleting a dash from the domain name.                                                                                                                                                                          |\n| SingularPluralize  | These typos are created by making a singular domain plural and vice versa.                                                                                                                                                                |\n| Subdomain          | These typos are created by placing a dot in the domain name in order to create subdomain. Example: google.com becomes goo.gle.com                                                                                                         |\n| VowelSwap          | These typos are created by swapping vowels within the domain name except for the first letter. For example, www.google.com becomes www.gaagle.com.                                                                                        |\n| WrongTld           | These typos are created by changing the original top level domain to another. For example, www.trademe.co.nz becomes www.trademe.co.mz and www.google.com becomes www.google.org Uses the 19 most common top level domains.               |\n| WrongSld           | These typos are created by changing the original second level domain to another. For example, www.trademe.co.uk becomes www.trademe.ac.uk and www.google.com will still be www.google.com .                                               |\n\n# Acknowledgment\n\n![](./img/cef.png)\n\nThe project has been co-funded by CEF-TC-2020-2 - 2020-EU-IA-0260 - JTAN - Joint Threat Analysis Network.\n",
    "bugtrack_url": null,
    "license": "BSD-2-Clause",
    "summary": "Generate list of domain name using Domain name permutation engine to feed AIL",
    "version": "2.7.3",
    "project_urls": {
        "Homepage": "https://github.com/typosquatter/ail-typo-squatting",
        "Repository": "https://github.com/typosquatter/ail-typo-squatting"
    },
    "split_keywords": [
        "typo-squatting",
        "typosquatting"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78fb03a97f8b50be214b0e51a044b864460440f0422630d88db0d8f9ad95d11f",
                "md5": "5fed316e0d609a551e5765ebb6ea6ae8",
                "sha256": "cbc7bfec0bb4abde7b8a7cdf282e0a5e8c3e5f61e6af98860a5b042cea56a437"
            },
            "downloads": -1,
            "filename": "ail_typo_squatting-2.7.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5fed316e0d609a551e5765ebb6ea6ae8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 74982,
            "upload_time": "2023-10-20T12:41:43",
            "upload_time_iso_8601": "2023-10-20T12:41:43.917174Z",
            "url": "https://files.pythonhosted.org/packages/78/fb/03a97f8b50be214b0e51a044b864460440f0422630d88db0d8f9ad95d11f/ail_typo_squatting-2.7.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28dada6c0c8a67d9729e6ac0f0f00e836bc68a69e4dcb99cf65f9c0dedcc155f",
                "md5": "a74ff84f78740162e5a81fda14d916e8",
                "sha256": "1a04c25c3b4a74ed96f7ac22a32d8a6d6876192105c357728ec7ae5be8b802ca"
            },
            "downloads": -1,
            "filename": "ail_typo_squatting-2.7.3.tar.gz",
            "has_sig": false,
            "md5_digest": "a74ff84f78740162e5a81fda14d916e8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 65669,
            "upload_time": "2023-10-20T12:41:46",
            "upload_time_iso_8601": "2023-10-20T12:41:46.163265Z",
            "url": "https://files.pythonhosted.org/packages/28/da/da6c0c8a67d9729e6ac0f0f00e836bc68a69e4dcb99cf65f9c0dedcc155f/ail_typo_squatting-2.7.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-20 12:41:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "typosquatter",
    "github_project": "ail-typo-squatting",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "certifi",
            "specs": [
                [
                    "==",
                    "2023.7.22"
                ]
            ]
        },
        {
            "name": "charset-normalizer",
            "specs": [
                [
                    "==",
                    "3.2.0"
                ]
            ]
        },
        {
            "name": "dnspython",
            "specs": [
                [
                    "==",
                    "2.4.2"
                ]
            ]
        },
        {
            "name": "filelock",
            "specs": [
                [
                    "==",
                    "3.12.4"
                ]
            ]
        },
        {
            "name": "idna",
            "specs": [
                [
                    "==",
                    "3.4"
                ]
            ]
        },
        {
            "name": "inflect",
            "specs": [
                [
                    "==",
                    "5.6.2"
                ]
            ]
        },
        {
            "name": "pyyaml",
            "specs": [
                [
                    "==",
                    "6.0.1"
                ]
            ]
        },
        {
            "name": "requests-file",
            "specs": [
                [
                    "==",
                    "1.5.1"
                ]
            ]
        },
        {
            "name": "requests",
            "specs": [
                [
                    "==",
                    "2.31.0"
                ]
            ]
        },
        {
            "name": "retrie",
            "specs": [
                [
                    "==",
                    "0.2.3"
                ]
            ]
        },
        {
            "name": "six",
            "specs": [
                [
                    "==",
                    "1.16.0"
                ]
            ]
        },
        {
            "name": "tldextract",
            "specs": [
                [
                    "==",
                    "5.0.1"
                ]
            ]
        },
        {
            "name": "urllib3",
            "specs": [
                [
                    "==",
                    "2.0.5"
                ]
            ]
        }
    ],
    "lcname": "ail-typo-squatting"
}
        
Elapsed time: 0.12927s