typosquatter / ail-typo-squatting

Generate list of potential typo squatting domains with domain name permutation engine to feed AIL and other systems.
https://typosquatter.github.io/ail-typo-squatting/
BSD 2-Clause "Simplified" License
72 stars 4 forks source link

TLD-Swap add .uk #5

Closed TiiTcHY closed 1 year ago

TiiTcHY commented 1 year ago

Would it be possible to add .uk to the TLD Swap algorithm

DavidCruciani commented 1 year ago

Hi @TiiTcHY,

Are you talking about wrongTld ? If it is, then .uk is already in the algorithm.

In case of domain like circl.co.uk, there will be variations like circl.co.lu and circl.lu. One by removing uk and an other by removing co.uk.

Is it what you are asking ?

TiiTcHY commented 1 year ago

Hi @DavidCruciani

Yes. However, if you did circl.com it would do different variations like circl.sx and circl.lu but not circl.uk or circl.co.uk.

DavidCruciani commented 1 year ago

I did a test minutes ago with circl.com and it give me circl.uk. It's normal that co.uk is not added in this algorithm cause it's using this TLD list. Are you sure you do not see circl.uk ? This is the command I typed in poetry shell: python typo.py -dn circl.com -wt -o -

TiiTcHY commented 1 year ago

Hi @DavidCruciani it would appear that i missed it then. However, would it be possible to get the .co.uk added?

DavidCruciani commented 1 year ago

Hello @TiiTcHY,

Find changes here.

Compose TLD will be added only when the current tld match: circl.lu -> circl.blogspot.lu circl.uk -> circl.ac.uk, circl.co.uk...

If each sld is added the list for the wrongTld algorithm will be very long.

Regards.

TiiTcHY commented 1 year ago

Hi @DavidCruciani Thank you.