├── LICENSE ├── README.md ├── UriDeep.py ├── data ├── confusables-table-light.txt └── deepDiccConfusables.txt ├── input_test └── domains.txt └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # uriDeep 2 | Unicode encoding attacks with machine learning. Tool based on machine learning to create amazing fake domains using 3 | confusables. Some domains can deceive IDN policies (Chrome & Firefox). 4 | 5 | I created the best (big) dictionary of confusables using neural networks. It is used in the tool and it can be download from: 6 | https://github.com/mindcrypt/uriDeep/blob/master/data/deepDiccConfusables.txt 7 | 8 |
  9 | _mindcrypt@kali:~/tool/uriDeep# python3 uriDeep.py
 10 | 
 11 |             _    ___
 12 |  /\ /\ _ __(_)  /   \___  ___ _ __
 13 | / / \ \ '__| | / /\ / _ \/ _ \ '_ \
 14 | \ \_/ / |  | |/ /_//  __/  __/ |_) |
 15 |  \___/|_|  |_/___,' \___|\___| .__/
 16 |                              |_|
 17 | 
 18 |  Version Beta
 19 |  Authors: Alfonso Muñoz (@mindcrypt)
 20 |           Miguel Hernández (@MiguelHzBz)
 21 |     
 22 | usage: uriDeep.py [-h] [-d, --domain DOMAIN] [-i FILEINPUT] [-F [FLIPPER]]
 23 |                   [-H [HOMOGLYPH]] [-l] [-S [SUBSTITUTION]] [-c] [-w] [-vt]
 24 |                   [-key API] [-o OUTPUTFILE]
 25 | 
 26 | UriDeep: Tool based on machine learning to create amazing fake domains using
 27 | confusables. Some domains can deceive IDN policies
 28 | 
 29 | optional arguments:
 30 |   -h, --help            show this help message and exit
 31 |   -d, --domain DOMAIN   check similar domains to this one
 32 |   -i FILEINPUT, --input FILEINPUT
 33 |                         List of targets. One input per line.
 34 |   -F [FLIPPER], --flipper [FLIPPER]
 35 |                         Execute flipping attack
 36 |   -H [HOMOGLYPH], --homoglyph [HOMOGLYPH]
 37 |                         Execute homoglyph attack with full table of
 38 |                         confusables
 39 |   -l, --light           To create fake domains that could deceive IDN policies
 40 |   -S [SUBSTITUTION], --substitution [SUBSTITUTION]
 41 |                         Execute substitution attack
 42 |   -c, --check           check if this domain is alive
 43 |   -w, --whois           check whois
 44 |   -vt, --virustotal     check Virus Total
 45 |   -key API, --api-key API
 46 |                         VirusTotal API Key
 47 |   -o OUTPUTFILE, --output OUTPUTFILE
 48 |                         Output file
 49 | None
 50 | Need one type of input, {-i --input} or {-d --domain}
 51 | root@kali:~/tool/uriDeep# python3 uriDeep.py -H -d www.example.org
 52 | 
 53 |             _    ___
 54 |  /\ /\ _ __(_)  /   \___  ___ _ __
 55 | / / \ \ '__| | / /\ / _ \/ _ \ '_ \
 56 | \ \_/ / |  | |/ /_//  __/  __/ |_) |
 57 |  \___/|_|  |_/___,' \___|\___| .__/
 58 |                              |_|
 59 | 
 60 |  Version Beta
 61 |  Authors: Alfonso Muñoz (@mindcrypt)
 62 |           Miguel Hernández (@MiguelHzBz)
 63 |     
 64 | Domain target: www.example.org
 65 | Option selected: Homoglyph attack
 66 | Option selected: Full confusables
 67 | Generate similar domains...
 68 | Similars domains to example: 722
 69 | {'domain_punnycode': b'www.xn--xample-9ua.org', 'domain': 'www.éxample.org'}
 70 | {'domain_punnycode': b'www.xn--xample-vwe.org', 'domain': 'www.Έxample.org'}
 71 | {'domain_punnycode': b'www.xn--xample-oj9b.org', 'domain': 'www.Ὲxample.org'}
 72 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.exam𝝆le.org'}
 73 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝐚mple.org'}
 74 | {'domain_punnycode': b'www.xn--exmple-4fc.org', 'domain': 'www.exǺmple.org'}
 75 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝙓ample.org'}
 76 | {'domain_punnycode': b'www.xn--exmple-c639a.org', 'domain': 'www.ex𐐍mple.org'}
 77 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝐸xample.org'}
 78 | {'domain_punnycode': b'www.xn--exampl-gva.org', 'domain': 'www.examplé.org'}
 79 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝐌ple.org'}
 80 | {'domain_punnycode': b'www.xn--exampe-fze.org', 'domain': 'www.examp𝛪e.org'}
 81 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.exam𝝔le.org'}
 82 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.exam𝜚le.org'}
 83 | {'domain_punnycode': b'www.xn--exampl-n21c.org', 'domain': 'www.exampl℮.org'}
 84 | {'domain_punnycode': b'www.xn--xample-hic.org', 'domain': 'www.ȇxample.org'}
 85 | {'domain_punnycode': b'www.xn--exampe-0ic.org', 'domain': 'www.exampȈe.org'}
 86 | {'domain_punnycode': b'www.xn--exmple-qxe8d.org', 'domain': 'www.exᾼmple.org'}
 87 | {'domain_punnycode': b'www.xn--xample-9nx.org', 'domain': 'www.ၿxample.org'}
 88 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝔈xample.org'}
 89 | {'domain_punnycode': b'www.xn--xample-9nf.org', 'domain': 'www.Бxample.org'}
 90 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.examp𝓘e.org'}
 91 | {'domain_punnycode': b'www.xn--exaple-kqf.org', 'domain': 'www.exaМple.org'}
 92 | {'domain_punnycode': b'www.xn--exampe-fdb.org', 'domain': 'www.exampĽe.org'}
 93 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝓶ple.org'}
 94 | {'domain_punnycode': b'www.xn--exampe-7db.org', 'domain': 'www.exampŁe.org'}
 95 | {'domain_punnycode': b'www.xn--exampl-ud4w.org', 'domain': 'www.examplᎧ.org'}
 96 | {'domain_punnycode': b'www.xn--exmple-x92c.org', 'domain': 'www.ex𝝏mple.org'}
 97 | {'domain_punnycode': b'www.xn--exmple-jta.org', 'domain': 'www.exÀmple.org'}
 98 | {'domain_punnycode': b'www.xn--exmple-cze3996c.org', 'domain': 'www.exᾊmple.org'}
 99 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝘦.org'}
100 | {'domain_punnycode': b'www.xn--xample-9y8b.org', 'domain': 'www.Ἑxample.org'}
101 | {'domain_punnycode': b'www.xn--exmple-qxe.org', 'domain': 'www.ex𝜶mple.org'}
102 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.exampℑe.org'}
103 | {'domain_punnycode': b'www.xn--exampe-mo0b.org', 'domain': 'www.exampᥣe.org'}
104 | {'domain_punnycode': b'www.xn--exmple-xyc.org', 'domain': 'www.exəmple.org'}
105 | {'domain_punnycode': b'www.xn--exaple-r4t.org', 'domain': 'www.exaตple.org'}
106 | {'domain_punnycode': b'www.xn--exampl-ntr.org', 'domain': 'www.exampl౿.org'}
107 | {'domain_punnycode': b'www.xn--exampe-tt6a.org', 'domain': 'www.exampᛁe.org'}
108 | {'domain_punnycode': b'www.xn--exampl-1fx.org', 'domain': 'www.examplၕ.org'}
109 | {'domain_punnycode': b'www.xn--exampe-fq0b.org', 'domain': 'www.exampᥬe.org'}
110 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝘌xample.org'}
111 | {'domain_punnycode': b'www.xn--exampe-0889d.org', 'domain': 'www.examp𝓁e.org'}
112 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝖠mple.org'}
113 | {'domain_punnycode': b'www.xn--exmple-4v49a.org', 'domain': 'www.ex\U000104b1mple.org'}
114 | {'domain_punnycode': b'www.xn--xample-v339a.org', 'domain': 'www.𐐩xample.org'}
115 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝔩e.org'}
116 | {'domain_punnycode': b'www.example.org', 'domain': 'www.example.org'}
117 | {'domain_punnycode': b'www.xn--exampl-nr4w.org', 'domain': 'www.examplꮼ.org'}
118 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝗔mple.org'}
119 | {'domain_punnycode': b'www.xn--exampl-1we.org', 'domain': 'www.examplΈ.org'}
120 | {'domain_punnycode': b'www.xn--exampe-mwa.org', 'domain': 'www.exampÏe.org'}
121 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝐗ample.org'}
122 | {'domain_punnycode': b'www.xn--xample-hye.org', 'domain': 'www.ϵxample.org'}
123 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝔢.org'}
124 | {'domain_punnycode': b'www.xn--xample-94a.org', 'domain': 'www.ěxample.org'}
125 | {'domain_punnycode': b'www.xn--exmple-jua.org', 'domain': 'www.exåmple.org'}
126 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝔏e.org'}
127 | {'domain_punnycode': b'www.xn--exmple-xw8b.org', 'domain': 'www.exἍmple.org'}
128 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝗮mple.org'}
129 | {'domain_punnycode': b'www.xn--exaple-rh8a.org', 'domain': 'www.exa៣ple.org'}
130 | {'domain_punnycode': b'www.xn--exmple-qh8d.org', 'domain': 'www.exȺmple.org'}
131 | {'domain_punnycode': b'www.xn--exampe-fze.org', 'domain': 'www.examp𝝞e.org'}
132 | {'domain_punnycode': b'www.xn--exmple-qta.org', 'domain': 'www.exámple.org'}
133 | {'domain_punnycode': b'www.example.org', 'domain': 'www.example.org'}
134 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.exam𝞠le.org'}
135 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝙴xample.org'}
136 | {'domain_punnycode': b'www.xn--eample-bm29a.org', 'domain': 'www.e𐌢ample.org'}
137 | {'domain_punnycode': b'www.xn--exampl-uxc.org', 'domain': 'www.examplƁ.org'}
138 | {'domain_punnycode': b'www.xn--exampl-nye.org', 'domain': 'www.exampl𝜠.org'}
139 | {'domain_punnycode': b'www.xn--exampe-mh3c.org', 'domain': 'www.examp∣e.org'}
140 | {'domain_punnycode': b'www.xn--exampl-n4a.org', 'domain': 'www.examplĖ.org'}
141 | {'domain_punnycode': b'www.xn--exmple-jgc.org', 'domain': 'www.exǽmple.org'}
142 | {'domain_punnycode': b'www.xn--exmple-qxe.org', 'domain': 'www.ex𝞐mple.org'}
143 | {'domain_punnycode': b'www.xn--exmple-qwe.org', 'domain': 'www.exΆmple.org'}
144 | {'domain_punnycode': b'www.xn--eample-pra.org', 'domain': 'www.e×ample.org'}
145 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝒙ample.org'}
146 | {'domain_punnycode': b'www.xn--exampl-180b.org', 'domain': 'www.examplᧉ.org'}
147 | {'domain_punnycode': b'www.xn--eample-i53w.org', 'domain': 'www.eꞳample.org'}
148 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.exam𝛠le.org'}
149 | {'domain_punnycode': b'www.xn--exampl-g5a.org', 'domain': 'www.examplĚ.org'}
150 | {'domain_punnycode': b'www.xn--exaple-krs.org', 'domain': 'www.exaതple.org'}
151 | {'domain_punnycode': b'www.xn--exmple-j9b.org', 'domain': 'www.exǟmple.org'}
152 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝗑ample.org'}
153 | {'domain_punnycode': b'www.xn--exampl-1339a.org', 'domain': 'www.exampl𐐩.org'}
154 | {'domain_punnycode': b'www.xn--exmple-xoc.org', 'domain': 'www.exȧmple.org'}
155 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝒑le.org'}
156 | {'domain_punnycode': b'www.xn--xample-2of.org', 'domain': 'www.Еxample.org'}
157 | {'domain_punnycode': b'www.xn--xample-23a.org', 'domain': 'www.ĕxample.org'}
158 | {'domain_punnycode': b'www.xn--xample-2ua.org', 'domain': 'www.Èxample.org'}
159 | {'domain_punnycode': b'www.xn--exmple-x9b.org', 'domain': 'www.exǡmple.org'}
160 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝐋e.org'}
161 | {'domain_punnycode': b'www.xn--eample-pr3d.org', 'domain': 'www.e⤬ample.org'}
162 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampⅬe.org'}
163 | {'domain_punnycode': b'www.xn--exampe-t29b.org', 'domain': 'www.exampῙe.org'}
164 | {'domain_punnycode': b'www.xn--exampe-mxk.org', 'domain': 'www.exampߊe.org'}
165 | {'domain_punnycode': b'www.xn--xample-ouf.org', 'domain': 'www.Ёxample.org'}
166 | {'domain_punnycode': b'www.examp|e.org', 'domain': 'www.examp|e.org'}
167 | {'domain_punnycode': b'www.xn--exampl-gvc.org', 'domain': 'www.examplɆ.org'}
168 | {'domain_punnycode': b'www.xn--exampe-03z.org', 'domain': 'www.exampራe.org'}
169 | {'domain_punnycode': b'www.exampIe.org', 'domain': 'www.exampIe.org'}
170 | {'domain_punnycode': b'www.xn--exmple-c6q.org', 'domain': 'www.exఐmple.org'}
171 | {'domain_punnycode': b'www.xn--exmple-cze7107c.org', 'domain': 'www.exᾍmple.org'}
172 | {'domain_punnycode': b'www.xn--xample-9yc.org', 'domain': 'www.ɛxample.org'}
173 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝐴mple.org'}
174 | {'domain_punnycode': b'www.xn--exmple-4nf.org', 'domain': 'www.exаmple.org'}
175 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝘦xample.org'}
176 | {'domain_punnycode': b'www.examPle.org', 'domain': 'www.examPle.org'}
177 | {'domain_punnycode': b'www.xn--xample-ht4v.org', 'domain': 'www.ꓰxample.org'}
178 | {'domain_punnycode': b'www.xn--xample-2of.org', 'domain': 'www.еxample.org'}
179 | {'domain_punnycode': b'www.xn--exmple-qxe.org', 'domain': 'www.ex𝞪mple.org'}
180 | {'domain_punnycode': b'www.xn--exampe-7d8c.org', 'domain': 'www.examp╽e.org'}
181 | {'domain_punnycode': b'www.xn--exmple-48b.org', 'domain': 'www.exǝmple.org'}
182 | {'domain_punnycode': b'www.xn--eample-ii11b.org', 'domain': 'www.e𑀌ample.org'}
183 | {'domain_punnycode': b'www.xn--exmple-jx3a.org', 'domain': 'www.exᓇmple.org'}
184 | {'domain_punnycode': b'www.xn--exampl-nye.org', 'domain': 'www.exampl𝜺.org'}
185 | {'domain_punnycode': b'www.xn--exampl-8qb.org', 'domain': 'www.examplƂ.org'}
186 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examPle.org'}
187 | {'domain_punnycode': b'www.xn--eample-3j29a.org', 'domain': 'www.e𐌗ample.org'}
188 | {'domain_punnycode': b'www.xn--exmple-xv2a.org', 'domain': 'www.exᐐmple.org'}
189 | {'domain_punnycode': b'www.xn--exampe-fh29a.org', 'domain': 'www.examp𐌉e.org'}
190 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝔼xample.org'}
191 | {'domain_punnycode': b'www.xn--xample-oh6v.org', 'domain': 'www.ꘓxample.org'}
192 | {'domain_punnycode': b'www.xn--exmple-xv49a.org', 'domain': 'www.ex\U000104b0mple.org'}
193 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝗽le.org'}
194 | {'domain_punnycode': b'www.xn--exampe-m70a.org', 'domain': 'www.exampዬe.org'}
195 | {'domain_punnycode': b'www.xn--xample-oyc.org', 'domain': 'www.ɘxample.org'}
196 | {'domain_punnycode': b'www.xn--examle-s65b.org', 'domain': 'www.examᴩle.org'}
197 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝕰.org'}
198 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝑬xample.org'}
199 | {'domain_punnycode': b'www.xn--exaple-r3c.org', 'domain': 'www.exaⱮple.org'}
200 | {'domain_punnycode': b'www.xn--exampl-g5a.org', 'domain': 'www.examplě.org'}
201 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝗉le.org'}
202 | {'domain_punnycode': b'www.xn--exampe-73z.org', 'domain': 'www.exampሬe.org'}
203 | {'domain_punnycode': b'www.xn--exampl-uj9b.org', 'domain': 'www.examplῈ.org'}
204 | {'domain_punnycode': b'www.xn--exmple-4nf.org', 'domain': 'www.exАmple.org'}
205 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.exam𝜌le.org'}
206 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.examp𝑰e.org'}
207 | {'domain_punnycode': b'www.xn--exampl-gva.org', 'domain': 'www.examplÉ.org'}
208 | {'domain_punnycode': b'www.xn--xample-h21c.org', 'domain': 'www.℮xample.org'}
209 | {'domain_punnycode': b'www.example.org', 'domain': 'www.example.org'}
210 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.examp𝕀e.org'}
211 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝙚xample.org'}
212 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝘈mple.org'}
213 | {'domain_punnycode': b'www.xn--exmple-qw8b.org', 'domain': 'www.exἌmple.org'}
214 | {'domain_punnycode': b'www.xn--xample-huf.org', 'domain': 'www.Ѐxample.org'}
215 | {'domain_punnycode': b'www.xn--xample-v80b.org', 'domain': 'www.ᧉxample.org'}
216 | {'domain_punnycode': b'www.xn--exmple-cx8b.org', 'domain': 'www.exἏmple.org'}
217 | {'domain_punnycode': b'www.xn--eample-31e.org', 'domain': 'www.eχample.org'}
218 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝓮xample.org'}
219 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝕏ample.org'}
220 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝑝le.org'}
221 | {'domain_punnycode': b'www.xn--eample-3v8d.org', 'domain': 'www.eⲬample.org'}
222 | {'domain_punnycode': b'www.xn--examle-zxb.org', 'domain': 'www.examƥle.org'}
223 | {'domain_punnycode': b'www.xn--examle-ez1c.org', 'domain': 'www.exam℞le.org'}
224 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝐄.org'}
225 | {'domain_punnycode': b'www.xn--exampe-m7f.org', 'domain': 'www.exampґe.org'}
226 | {'domain_punnycode': b'www.xn--exaple-kdf.org', 'domain': 'www.exaϺple.org'}
227 | {'domain_punnycode': b'www.cxample.org', 'domain': 'www.ⅽxample.org'}
228 | {'domain_punnycode': b'www.xn--exmple-4lg.org', 'domain': 'www.exӕmple.org'}
229 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampⅼe.org'}
230 | {'domain_punnycode': b'www.xn--exampe-fze.org', 'domain': 'www.examp𝞘e.org'}
231 | {'domain_punnycode': b'www.xn--exampe-tr3a.org', 'domain': 'www.exampᒪe.org'}
232 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝕖.org'}
233 | {'domain_punnycode': b'www.xn--exmple-cze9007c.org', 'domain': 'www.exᾌmple.org'}
234 | {'domain_punnycode': b'www.xn--exmple-xta.org', 'domain': 'www.exâmple.org'}
235 | {'domain_punnycode': b'www.xn--exmple-chc.org', 'domain': 'www.exȀmple.org'}
236 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.examϱle.org'}
237 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝙡e.org'}
238 | {'domain_punnycode': None, 'domain': 'www.exampﺎe.org'}
239 | {'domain_punnycode': b'www.xn--exampe-fjc.org', 'domain': 'www.exampȋe.org'}
240 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.exam𝛒le.org'}
241 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.examp𝗜e.org'}
242 | {'domain_punnycode': b'www.xn--exampl-nye.org', 'domain': 'www.examplϵ.org'}
243 | {'domain_punnycode': b'www.xn--exampl-ue4w.org', 'domain': 'www.examplᎬ.org'}
244 | {'domain_punnycode': b'www.exam4le.org', 'domain': 'www.exam4le.org'}
245 | {'domain_punnycode': b'www.xn--exampe-7839a.org', 'domain': 'www.examp𐐛e.org'}
246 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝐱ample.org'}
247 | {'domain_punnycode': b'www.xn--exampl-1o8d.org', 'domain': 'www.examplⲉ.org'}
248 | {'domain_punnycode': b'www.xn--exampe-7s6a.org', 'domain': 'www.exampᚾe.org'}
249 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝔵ample.org'}
250 | {'domain_punnycode': b'www.xn--xample-hye.org', 'domain': 'www.𝛆xample.org'}
251 | {'domain_punnycode': b'www.xn--exampe-fvi.org', 'domain': 'www.examp١e.org'}
252 | {'domain_punnycode': b'www.xn--exmple-qta.org', 'domain': 'www.exÁmple.org'}
253 | {'domain_punnycode': b'www.xn--exampe-m6b.org', 'domain': 'www.exampǏe.org'}
254 | {'domain_punnycode': b'www.xn--exampl-gof.org', 'domain': 'www.examplБ.org'}
255 | {'domain_punnycode': b'www.xn--eample-3tg.org', 'domain': 'www.eӼample.org'}
256 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝗺ple.org'}
257 | {'domain_punnycode': b'www.xn--exmple-48c.org', 'domain': 'www.exɅmple.org'}
258 | {'domain_punnycode': b'www.xn--eample-wm4a.org', 'domain': 'www.eᕁample.org'}
259 | {'domain_punnycode': b'www.xn--exmple-4v9b.org', 'domain': 'www.exᾸmple.org'}
260 | {'domain_punnycode': b'www.xn--exampe-060a.org', 'domain': 'www.exampዩe.org'}
261 | {'domain_punnycode': b'www.xn--exampe-mcb.org', 'domain': 'www.exampĹe.org'}
262 | {'domain_punnycode': b'www.xn--exmple-4xw.org', 'domain': 'www.exခmple.org'}
263 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝒶mple.org'}
264 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝕖xample.org'}
265 | {'domain_punnycode': b'www.xn--examle-e97d.org', 'domain': 'www.examⱀle.org'}
266 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝔞mple.org'}
267 | {'domain_punnycode': b'www.xn--exampe-0q8d.org', 'domain': 'www.exampⲒe.org'}
268 | {'domain_punnycode': b'www.xn--exampl-ufx.org', 'domain': 'www.examplၔ.org'}
269 | {'domain_punnycode': b'www.xn--xample-htr.org', 'domain': 'www.౿xample.org'}
270 | {'domain_punnycode': b'www.xn--examle-en4v.org', 'domain': 'www.examꓑle.org'}
271 | {'domain_punnycode': b'www.xn--exampe-mq4v.org', 'domain': 'www.exampꓡe.org'}
272 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝑒.org'}
273 | {'domain_punnycode': b'www.xn--xample-vyc.org', 'domain': 'www.əxample.org'}
274 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝚖ple.org'}
275 | {'domain_punnycode': b'www.xn--exmple-qxe.org', 'domain': 'www.ex𝛢mple.org'}
276 | {'domain_punnycode': b'www.xn--xample-vfx.org', 'domain': 'www.ၕxample.org'}
277 | {'domain_punnycode': b'www.xn--exmple-cf4w.org', 'domain': 'www.exꭿmple.org'}
278 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝓵e.org'}
279 | {'domain_punnycode': b'www.xn--exmple-4yc.org', 'domain': 'www.exɚmple.org'}
280 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝓂ple.org'}
281 | {'domain_punnycode': b'www.xn--exampe-tvf.org', 'domain': 'www.exampІe.org'}
282 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.examp𝐼e.org'}
283 | {'domain_punnycode': b'www.xn--exampl-uva.org', 'domain': 'www.examplË.org'}
284 | {'domain_punnycode': b'www.xn--xample-vk4w.org', 'domain': 'www.Ꮛxample.org'}
285 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝕝e.org'}
286 | {'domain_punnycode': b'www.xn--exampe-m5c.org', 'domain': 'www.exampɺe.org'}
287 | {'domain_punnycode': b'www.xn--exampl-1k4w.org', 'domain': 'www.examplꮛ.org'}
288 | {'domain_punnycode': b'www.xn--exampl-gzc.org', 'domain': 'www.examplℇ.org'}
289 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝓛e.org'}
290 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝐿e.org'}
291 | {'domain_punnycode': b'www.xn--xample-hye.org', 'domain': 'www.𝜠xample.org'}
292 | {'domain_punnycode': b'www.xn--xample-vp29a.org', 'domain': 'www.𐌴xample.org'}
293 | {'domain_punnycode': b'www.xn--eample-bw9d.org', 'domain': 'www.eⵝample.org'}
294 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝙴.org'}
295 | {'domain_punnycode': b'www.xn--xample-9oc.org', 'domain': 'www.Ȩxample.org'}
296 | {'domain_punnycode': b'www.xn--exampe-mo7c.org', 'domain': 'www.examp│e.org'}
297 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝘓e.org'}
298 | {'domain_punnycode': b'www.examp1e.org', 'domain': 'www.examp1e.org'}
299 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampLe.org'}
300 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝕩ample.org'}
301 | {'domain_punnycode': b'www.xn--xample-hye.org', 'domain': 'www.𝝚xample.org'}
302 | {'domain_punnycode': b'www.xn--xample-2o9d.org', 'domain': 'www.ⴹxample.org'}
303 | {'domain_punnycode': b'www.example.org', 'domain': 'www.example.org'}
304 | {'domain_punnycode': b'www.xn--exampl-8o9d.org', 'domain': 'www.examplⴹ.org'}
305 | {'domain_punnycode': b'www.xn--examle-66f.org', 'domain': 'www.examҎle.org'}
306 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝗹e.org'}
307 | {'domain_punnycode': b'www.xn--eample-bsf.org', 'domain': 'www.eХample.org'}
308 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝙖mple.org'}
309 | {'domain_punnycode': b'www.xn--xample-h4a.org', 'domain': 'www.Ėxample.org'}
310 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝓐mple.org'}
311 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝘗le.org'}
312 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝘼mple.org'}
313 | {'domain_punnycode': b'www.xn--examle-62b.org', 'domain': 'www.examƿle.org'}
314 | {'domain_punnycode': b'www.xn--exaple-rl6b.org', 'domain': 'www.exaᵯple.org'}
315 | {'domain_punnycode': b'www.xn--exampe-m9m.org', 'domain': 'www.examp।e.org'}
316 | {'domain_punnycode': b'www.xn--exaple-rkg.org', 'domain': 'www.exaӍple.org'}
317 | {'domain_punnycode': b'www.xn--exampe-me8c.org', 'domain': 'www.examp╿e.org'}
318 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝑥ample.org'}
319 | {'domain_punnycode': b'www.xn--xample-o739a.org', 'domain': 'www.𐐔xample.org'}
320 | {'domain_punnycode': b'www.xn--eample-3b8c.org', 'domain': 'www.e╳ample.org'}
321 | {'domain_punnycode': b'www.xn--exmple-cze1007c.org', 'domain': 'www.exᾋmple.org'}
322 | {'domain_punnycode': b'www.xn--xample-vt5a.org', 'domain': 'www.ᘓxample.org'}
323 | {'domain_punnycode': b'www.xn--exampe-0vf.org', 'domain': 'www.exampїe.org'}
324 | {'domain_punnycode': b'www.xn--exampe-7p5c.org', 'domain': 'www.examp⎬e.org'}
325 | {'domain_punnycode': b'www.example.org', 'domain': 'www.Example.org'}
326 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝑚ple.org'}
327 | {'domain_punnycode': b'www.xn--exampl-1tf.org', 'domain': 'www.examplэ.org'}
328 | {'domain_punnycode': b'www.xn--exampe-fwa.org', 'domain': 'www.exampÎe.org'}
329 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝒆.org'}
330 | {'domain_punnycode': b'www.xn--exaple-yze.org', 'domain': 'www.exa𝛭ple.org'}
331 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝘟ample.org'}
332 | {'domain_punnycode': b'www.xn--xample-ova.org', 'domain': 'www.ëxample.org'}
333 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝙰mple.org'}
334 | {'domain_punnycode': b'www.xn--exmple-ct5a.org', 'domain': 'www.exᘐmple.org'}
335 | {'domain_punnycode': b'www.xn--exampe-t2e.org', 'domain': 'www.exampϊe.org'}
336 | {'domain_punnycode': b'www.xn--exmple-4w8b.org', 'domain': 'www.exἎmple.org'}
337 | {'domain_punnycode': b'www.xn--exampe-fze.org', 'domain': 'www.examp𝚰e.org'}
338 | {'domain_punnycode': b'www.xn--exampe-0kg.org', 'domain': 'www.exampӀe.org'}
339 | {'domain_punnycode': b'www.xn--exampl-1z5b.org', 'domain': 'www.examplᴇ.org'}
340 | {'domain_punnycode': b'www.xn--xample-9gg.org', 'domain': 'www.ҽxample.org'}
341 | {'domain_punnycode': b'www.xn--exampl-n6e.org', 'domain': 'www.examplϜ.org'}
342 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝙋le.org'}
343 | {'domain_punnycode': b'www.xn--exampl-uyc.org', 'domain': 'www.examplɘ.org'}
344 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝖬ple.org'}
345 | {'domain_punnycode': b'www.xn--exmple-cdg.org', 'domain': 'www.exҨmple.org'}
346 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ℯxample.org'}
347 | {'domain_punnycode': b'www.xn--exmple-jxc.org', 'domain': 'www.exɒmple.org'}
348 | {'domain_punnycode': b'www.xn--xample-9uf.org', 'domain': 'www.Єxample.org'}
349 | {'domain_punnycode': b'www.xn--exaple-k03w.org', 'domain': 'www.exaꬺple.org'}
350 | {'domain_punnycode': b'www.xn--exampe-fze.org', 'domain': 'www.exampιe.org'}
351 | {'domain_punnycode': b'www.xn--xample-hye.org', 'domain': 'www.𝞔xample.org'}
352 | {'domain_punnycode': b'www.xn--examle-lp4w.org', 'domain': 'www.examᏢle.org'}
353 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝘌.org'}
354 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.exam𝚸le.org'}
355 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝒂mple.org'}
356 | {'domain_punnycode': b'www.xn--eample-3c6a.org', 'domain': 'www.e᙮ample.org'}
357 | {'domain_punnycode': b'www.exampLe.org', 'domain': 'www.exampLe.org'}
358 | {'domain_punnycode': b'www.xn--xample-2hc.org', 'domain': 'www.Ȅxample.org'}
359 | {'domain_punnycode': b'www.xn--xample-hye.org', 'domain': 'www.𝛦xample.org'}
360 | {'domain_punnycode': b'www.xn--exmple-4s4v.org', 'domain': 'www.exꓮmple.org'}
361 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝕻le.org'}
362 | {'domain_punnycode': b'www.xn--exampe-mcb.org', 'domain': 'www.exampĺe.org'}
363 | {'domain_punnycode': b'www.xn--exampl-83a.org', 'domain': 'www.examplĕ.org'}
364 | {'domain_punnycode': b'www.xn--exampe-0c1c.org', 'domain': 'www.examp₮e.org'}
365 | {'domain_punnycode': b'www.xn--examle-66f.org', 'domain': 'www.examҏle.org'}
366 | {'domain_punnycode': b'www.xn--exampe-ts4c.org', 'domain': 'www.examp⌊e.org'}
367 | {'domain_punnycode': b'www.xn--examle-l6e.org', 'domain': 'www.examϜle.org'}
368 | {'domain_punnycode': b'www.xn--exampl-nic.org', 'domain': 'www.examplȇ.org'}
369 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝐞.org'}
370 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampℓe.org'}
371 | {'domain_punnycode': None, 'domain': 'www.exampןe.org'}
372 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.exam𝞀le.org'}
373 | {'domain_punnycode': b'www.exampse.org', 'domain': 'www.exampſe.org'}
374 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.exam𝛲le.org'}
375 | {'domain_punnycode': b'www.xn--exampe-tvk.org', 'domain': 'www.examp߁e.org'}
376 | {'domain_punnycode': b'www.xn--exampe-71c.org', 'domain': 'www.exampɩe.org'}
377 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝓮.org'}
378 | {'domain_punnycode': b'www.xn--exampl-1y3w.org', 'domain': 'www.examplꬲ.org'}
379 | {'domain_punnycode': b'www.xn--exaple-yi29a.org', 'domain': 'www.exa𐌑ple.org'}
380 | {'domain_punnycode': b'www.xn--xample-vo8d.org', 'domain': 'www.Ⲉxample.org'}
381 | {'domain_punnycode': b'www.xn--exmple-czw.org', 'domain': 'www.exဇmple.org'}
382 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examplℰ.org'}
383 | {'domain_punnycode': b'www.xn--exampl-nic.org', 'domain': 'www.examplȆ.org'}
384 | {'domain_punnycode': b'www.xn--exaple-5r8d.org', 'domain': 'www.exaⲘple.org'}
385 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝙢ple.org'}
386 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examplⅇ.org'}
387 | {'domain_punnycode': b'www.xn--examle-lp4w.org', 'domain': 'www.examꮲle.org'}
388 | {'domain_punnycode': b'www.example.org', 'domain': 'www.example.org'}
389 | {'domain_punnycode': b'www.xn--exmple-4ta.org', 'domain': 'www.exãmple.org'}
390 | {'domain_punnycode': b'www.xn--exampl-nye.org', 'domain': 'www.examplε.org'}
391 | {'domain_punnycode': b'www.xn--eample-31e.org', 'domain': 'www.eΧample.org'}
392 | {'domain_punnycode': b'www.xn--exmple-xk0b.org', 'domain': 'www.exᥑmple.org'}
393 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exaℳple.org'}
394 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exAmple.org'}
395 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝑙e.org'}
396 | {'domain_punnycode': b'www.xn--xample-hic.org', 'domain': 'www.Ȇxample.org'}
397 | {'domain_punnycode': b'www.example.org', 'domain': 'www.eⅹample.org'}
398 | {'domain_punnycode': b'www.example.org', 'domain': 'www.example.org'}
399 | {'domain_punnycode': b'www.examplE.org', 'domain': 'www.examplE.org'}
400 | {'domain_punnycode': b'www.xn--exampe-0t5c.org', 'domain': 'www.examp⎿e.org'}
401 | {'domain_punnycode': b'www.xn--exaple-yg4w.org', 'domain': 'www.exaᎷple.org'}
402 | {'domain_punnycode': b'www.xn--exmple-qlg.org', 'domain': 'www.exӓmple.org'}
403 | {'domain_punnycode': b'www.xn--exmple-q339a.org', 'domain': 'www.ex𐐀mple.org'}
404 | {'domain_punnycode': b'www.xn--exmple-cze5896c.org', 'domain': 'www.exᾉmple.org'}
405 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝕬mple.org'}
406 | {'domain_punnycode': b'www.xn--xample-2hc.org', 'domain': 'www.ȅxample.org'}
407 | {'domain_punnycode': b'www.xn--exampe-0dd.org', 'domain': 'www.exampʟe.org'}
408 | {'domain_punnycode': b'www.xn--exmple-jf5a.org', 'domain': 'www.exᗋmple.org'}
409 | {'domain_punnycode': b'www.xn--exampl-nmg.org', 'domain': 'www.examplӖ.org'}
410 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.exam𝞎le.org'}
411 | {'domain_punnycode': b'www.xn--exampl-nuf.org', 'domain': 'www.examplЀ.org'}
412 | {'domain_punnycode': b'www.xn--exmple-ce4w.org', 'domain': 'www.exᎪmple.org'}
413 | {'domain_punnycode': b'www.xn--eample-wc6a.org', 'domain': 'www.e᙭ample.org'}
414 | {'domain_punnycode': b'www.xn--exmple-xta.org', 'domain': 'www.exÂmple.org'}
415 | {'domain_punnycode': b'www.xn--exampe-08a.org', 'domain': 'www.exampĭe.org'}
416 | {'domain_punnycode': b'www.xn--xample-23a.org', 'domain': 'www.Ĕxample.org'}
417 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝐸.org'}
418 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝖫e.org'}
419 | {'domain_punnycode': b'www.xn--exampe-0l29a.org', 'domain': 'www.examp𐌠e.org'}
420 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝐀mple.org'}
421 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝒳ample.org'}
422 | {'domain_punnycode': b'www.xn--xample-94a.org', 'domain': 'www.Ěxample.org'}
423 | {'domain_punnycode': b'www.examp1e.org', 'domain': 'www.examp𝟷e.org'}
424 | {'domain_punnycode': b'www.xn--exmple-cw9b.org', 'domain': 'www.exᾹmple.org'}
425 | {'domain_punnycode': b'www.xn--xample-hva.org', 'domain': 'www.Êxample.org'}
426 | {'domain_punnycode': b'www.xn--exampe-0s4c.org', 'domain': 'www.examp⌋e.org'}
427 | {'domain_punnycode': b'www.xn--exampe-tof.org', 'domain': 'www.exampГe.org'}
428 | {'domain_punnycode': b'www.xn--exampl-83a.org', 'domain': 'www.examplĔ.org'}
429 | {'domain_punnycode': b'www.xn--exampe-fze.org', 'domain': 'www.examp𝜤e.org'}
430 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exaⅿple.org'}
431 | {'domain_punnycode': b'www.xn--xample-9uc.org', 'domain': 'www.Ɇxample.org'}
432 | {'domain_punnycode': b'www.xn--exampl-gpc.org', 'domain': 'www.examplȨ.org'}
433 | {'domain_punnycode': b'www.xn--exampl-n4a.org', 'domain': 'www.examplė.org'}
434 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝐄xample.org'}
435 | {'domain_punnycode': b'www.xn--exmple-clg.org', 'domain': 'www.exӐmple.org'}
436 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝐥e.org'}
437 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝕰xample.org'}
438 | {'domain_punnycode': b'www.xn--exmple-qxe.org', 'domain': 'www.ex𝛼mple.org'}
439 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝒜mple.org'}
440 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exaⅯple.org'}
441 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝖊.org'}
442 | {'domain_punnycode': b'www.xn--exampl-1339a.org', 'domain': 'www.exampl𐐁.org'}
443 | {'domain_punnycode': b'www.xn--exampl-nva.org', 'domain': 'www.examplÊ.org'}
444 | {'domain_punnycode': b'www.xn--exmple-qxe.org', 'domain': 'www.ex𝚨mple.org'}
445 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝚎.org'}
446 | {'domain_punnycode': b'www.xn--eample-bfg.org', 'domain': 'www.eҳample.org'}
447 | {'domain_punnycode': b'www.xn--examle-zxb.org', 'domain': 'www.examƤle.org'}
448 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝔈.org'}
449 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝓪mple.org'}
450 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝖤xample.org'}
451 | {'domain_punnycode': b'www.xn--exampl-1o8d.org', 'domain': 'www.examplⲈ.org'}
452 | {'domain_punnycode': b'www.xn--eample-3v8d.org', 'domain': 'www.eⲭample.org'}
453 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.examp𝙸e.org'}
454 | {'domain_punnycode': b'www.xn--xample-9uf.org', 'domain': 'www.єxample.org'}
455 | {'domain_punnycode': b'www.xn--exampe-fd4w.org', 'domain': 'www.exampᎥe.org'}
456 | {'domain_punnycode': b'www.xn--exmple-x92c.org', 'domain': 'www.ex𝜕mple.org'}
457 | {'domain_punnycode': None, 'domain': 'www.exampﺍe.org'}
458 | {'domain_punnycode': b'www.xn--exmple-cxc.org', 'domain': 'www.exɑmple.org'}
459 | {'domain_punnycode': b'www.xn--eample-bi11b.org', 'domain': 'www.e𑀋ample.org'}
460 | {'domain_punnycode': b'www.xn--exampe-m7f.org', 'domain': 'www.exampҐe.org'}
461 | {'domain_punnycode': b'www.xn--exampl-uuf.org', 'domain': 'www.examplЁ.org'}
462 | {'domain_punnycode': b'www.xn--exampe-0t4v.org', 'domain': 'www.exampꓲe.org'}
463 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.exam𝝦le.org'}
464 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝕞ple.org'}
465 | {'domain_punnycode': b'www.xn--xample-vz5b.org', 'domain': 'www.ᴇxample.org'}
466 | {'domain_punnycode': b'www.xn--examle-ex4a.org', 'domain': 'www.examᕵle.org'}
467 | {'domain_punnycode': b'www.xn--exampl-gvf.org', 'domain': 'www.examplє.org'}
468 | {'domain_punnycode': b'www.xn--exampe-7va.org', 'domain': 'www.exampÍe.org'}
469 | {'domain_punnycode': b'www.example.org', 'domain': 'www.eXample.org'}
470 | {'domain_punnycode': b'www.xn--exaple-yze.org', 'domain': 'www.exa𝚳ple.org'}
471 | {'domain_punnycode': b'www.xn--exampl-go4c.org', 'domain': 'www.exampl⋴.org'}
472 | {'domain_punnycode': b'www.xn--examle-ld1c.org', 'domain': 'www.exam₱le.org'}
473 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝓔xample.org'}
474 | {'domain_punnycode': b'www.examp1e.org', 'domain': 'www.examp𝟏e.org'}
475 | {'domain_punnycode': b'www.xn--exampe-mb49a.org', 'domain': 'www.examp𐑊e.org'}
476 | {'domain_punnycode': b'www.xn--exampe-mt9d.org', 'domain': 'www.exampⵏe.org'}
477 | {'domain_punnycode': b'www.xn--exampl-1p29a.org', 'domain': 'www.exampl𐌴.org'}
478 | {'domain_punnycode': b'www.xn--exampl-nye.org', 'domain': 'www.exampl𝚬.org'}
479 | {'domain_punnycode': b'www.xn--exmple-4ta.org', 'domain': 'www.exÃmple.org'}
480 | {'domain_punnycode': b'www.xn--exmple-cng.org', 'domain': 'www.exӚmple.org'}
481 | {'domain_punnycode': b'www.xn--xample-oe4w.org', 'domain': 'www.Ꭼxample.org'}
482 | {'domain_punnycode': b'www.xn--exampe-mf4w.org', 'domain': 'www.exampᎰe.org'}
483 | {'domain_punnycode': b'www.xn--exampl-nye.org', 'domain': 'www.exampl𝞔.org'}
484 | {'domain_punnycode': b'www.xn--exampe-f3b.org', 'domain': 'www.exampǀe.org'}
485 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝔐ple.org'}
486 | {'domain_punnycode': b'www.examp1e.org', 'domain': 'www.examp𝟙e.org'}
487 | {'domain_punnycode': b'www.xn--exampe-t37c.org', 'domain': 'www.examp╎e.org'}
488 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝗟e.org'}
489 | {'domain_punnycode': b'www.xn--xample-o3a.org', 'domain': 'www.ēxample.org'}
490 | {'domain_punnycode': b'www.xn--examle-lf3a.org', 'domain': 'www.examᑭle.org'}
491 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝗠ple.org'}
492 | {'domain_punnycode': b'www.xn--xample-9n4c.org', 'domain': 'www.⋴xample.org'}
493 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝘢mple.org'}
494 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝘮ple.org'}
495 | {'domain_punnycode': b'www.xn--exampe-02c.org', 'domain': 'www.exampɭe.org'}
496 | {'domain_punnycode': b'www.xn--xample-2qb.org', 'domain': 'www.Ƃxample.org'}
497 | {'domain_punnycode': b'www.xn--xample-ova.org', 'domain': 'www.Ëxample.org'}
498 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝑴ple.org'}
499 | {'domain_punnycode': b'www.xn--exampl-1yc.org', 'domain': 'www.examplə.org'}
500 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝙚.org'}
501 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝓅le.org'}
502 | {'domain_punnycode': b'www.xn--examle-6qb.org', 'domain': 'www.examƂle.org'}
503 | {'domain_punnycode': b'www.xn--xample-9ua.org', 'domain': 'www.Éxample.org'}
504 | {'domain_punnycode': b'www.xn--eample-31e.org', 'domain': 'www.e𝚾ample.org'}
505 | {'domain_punnycode': b'www.xn--exmple-cua.org', 'domain': 'www.exÄmple.org'}
506 | {'domain_punnycode': b'www.xn--exampe-0l4w.org', 'domain': 'www.exampᏐe.org'}
507 | {'domain_punnycode': b'www.xn--examle-zf1c.org', 'domain': 'www.exam₽le.org'}
508 | {'domain_punnycode': b'www.xn--exampe-71c.org', 'domain': 'www.exampƖe.org'}
509 | {'domain_punnycode': b'www.xn--exmple-xoc.org', 'domain': 'www.exȦmple.org'}
510 | {'domain_punnycode': b'www.xn--exampe-m2c.org', 'domain': 'www.exampⱢe.org'}
511 | {'domain_punnycode': b'www.xn--exmple-qxe.org', 'domain': 'www.exΑmple.org'}
512 | {'domain_punnycode': b'www.xn--exampl-gzc.org', 'domain': 'www.examplɛ.org'}
513 | {'domain_punnycode': b'www.xn--exaple-yl0b.org', 'domain': 'www.exaᥖple.org'}
514 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.exampℐe.org'}
515 | {'domain_punnycode': b'www.xn--exmple-cw8b.org', 'domain': 'www.exἊmple.org'}
516 | {'domain_punnycode': b'www.xn--exampe-mk9b.org', 'domain': 'www.exampῚe.org'}
517 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝚡ample.org'}
518 | {'domain_punnycode': b'www.xn--xample-vy3w.org', 'domain': 'www.ꬲxample.org'}
519 | {'domain_punnycode': b'www.xn--eample-is4v.org', 'domain': 'www.eꓫample.org'}
520 | {'domain_punnycode': None, 'domain': 'www.exampاe.org'}
521 | {'domain_punnycode': b'www.xn--exampl-nq4c.org', 'domain': 'www.exampl⋿.org'}
522 | {'domain_punnycode': b'www.xn--eample-ize.org', 'domain': 'www.eϰample.org'}
523 | {'domain_punnycode': b'www.xn--exampl-1k4w.org', 'domain': 'www.examplᏋ.org'}
524 | {'domain_punnycode': b'www.xn--exmple-qit.org', 'domain': 'www.exටmple.org'}
525 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝙀xample.org'}
526 | {'domain_punnycode': b'www.xn--exmple-jta.org', 'domain': 'www.exàmple.org'}
527 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝑷le.org'}
528 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝖑e.org'}
529 | {'domain_punnycode': b'www.xn--xample-vo8d.org', 'domain': 'www.ⲉxample.org'}
530 | {'domain_punnycode': b'www.xn--xample-v4a.org', 'domain': 'www.Ęxample.org'}
531 | {'domain_punnycode': b'www.xn--exampl-nye.org', 'domain': 'www.examplΕ.org'}
532 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝗘xample.org'}
533 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝘹ample.org'}
534 | {'domain_punnycode': b'www.xn--exmple-cbc.org', 'domain': 'www.exǣmple.org'}
535 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝖕le.org'}
536 | {'domain_punnycode': b'www.xn--eample-p84d.org', 'domain': 'www.e⨰ample.org'}
537 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝑳e.org'}
538 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝖷ample.org'}
539 | {'domain_punnycode': b'www.xn--exampl-nye.org', 'domain': 'www.exampl𝛆.org'}
540 | {'domain_punnycode': b'www.xn--exampl-88b.org', 'domain': 'www.examplƎ.org'}
541 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampℒe.org'}
542 | {'domain_punnycode': b'www.xn--exmple-qhc.org', 'domain': 'www.exȂmple.org'}
543 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝔓le.org'}
544 | {'domain_punnycode': b'www.xn--exampe-0va.org', 'domain': 'www.exampÌe.org'}
545 | {'domain_punnycode': b'www.xn--exampl-nye.org', 'domain': 'www.exampl𝛦.org'}
546 | {'domain_punnycode': b'www.xn--xample-h4a.org', 'domain': 'www.ėxample.org'}
547 | {'domain_punnycode': b'www.xn--examle-sdf.org', 'domain': 'www.examϼle.org'}
548 | {'domain_punnycode': b'www.3xample.org', 'domain': 'www.3xample.org'}
549 | {'domain_punnycode': b'www.xn--exampe-mm4w.org', 'domain': 'www.exampᏓe.org'}
550 | {'domain_punnycode': b'www.xn--exampl-8hc.org', 'domain': 'www.examplȅ.org'}
551 | {'domain_punnycode': b'www.xn--exaple-5hu.org', 'domain': 'www.exa๓ple.org'}
552 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝓔.org'}
553 | {'domain_punnycode': b'www.xn--exmple-xyc.org', 'domain': 'www.exƏmple.org'}
554 | {'domain_punnycode': b'www.xn--exmple-j549a.org', 'domain': 'www.ex\U000104e0mple.org'}
555 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝕃e.org'}
556 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.examΡle.org'}
557 | {'domain_punnycode': b'www.xn--eample-pr6a.org', 'domain': 'www.eᚷample.org'}
558 | {'domain_punnycode': b'www.xn--exampie-cie.org', 'domain': 'www.exampİe.org'}
559 | {'domain_punnycode': b'www.xn--exampl-u3a.org', 'domain': 'www.examplē.org'}
560 | {'domain_punnycode': b'www.xn--eample-wy4a.org', 'domain': 'www.eᕽample.org'}
561 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝕷e.org'}
562 | {'domain_punnycode': b'www.xn--exampe-0ic.org', 'domain': 'www.exampȉe.org'}
563 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝑋ample.org'}
564 | {'domain_punnycode': b'www.xn--exmple-cua.org', 'domain': 'www.exämple.org'}
565 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝔼.org'}
566 | {'domain_punnycode': b'www.xn--xample-od4w.org', 'domain': 'www.Ꭷxample.org'}
567 | {'domain_punnycode': b'www.xn--exampl-ghg.org', 'domain': 'www.examplҽ.org'}
568 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝖊xample.org'}
569 | {'domain_punnycode': b'www.xn--eample-3n9d.org', 'domain': 'www.eⴴample.org'}
570 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝐩le.org'}
571 | {'domain_punnycode': b'www.xn--exampe-tvb.org', 'domain': 'www.exampƚe.org'}
572 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝔪ple.org'}
573 | {'domain_punnycode': b'www.xn--exmple-4339a.org', 'domain': 'www.ex𐐂mple.org'}
574 | {'domain_punnycode': b'www.xn--exaple-ym5a.org', 'domain': 'www.exaᗰple.org'}
575 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝕡le.org'}
576 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.exampIe.org'}
577 | {'domain_punnycode': b'www.xn--exmple-cze7796c.org', 'domain': 'www.exᾈmple.org'}
578 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.exampⅠe.org'}
579 | {'domain_punnycode': b'www.xn--eample-ww5d.org', 'domain': 'www.e⪤ample.org'}
580 | {'domain_punnycode': b'www.xn--exmple-qxe.org', 'domain': 'www.ex𝝖mple.org'}
581 | {'domain_punnycode': b'www.xn--exampe-7639a.org', 'domain': 'www.examp𐐹e.org'}
582 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝚕e.org'}
583 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝓍ample.org'}
584 | {'domain_punnycode': b'www.xn--xample-hr4w.org', 'domain': 'www.ꮼxample.org'}
585 | {'domain_punnycode': b'www.xn--eample-31e.org', 'domain': 'www.e𝝬ample.org'}
586 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝗲xample.org'}
587 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝖾.org'}
588 | {'domain_punnycode': b'www.xn--exmple-xmg.org', 'domain': 'www.exӘmple.org'}
589 | {'domain_punnycode': b'www.xn--xample-vtf.org', 'domain': 'www.эxample.org'}
590 | {'domain_punnycode': b'www.xn--exampe-t2c.org', 'domain': 'www.exampɬe.org'}
591 | {'domain_punnycode': b'www.exaMple.org', 'domain': 'www.exaMple.org'}
592 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝗣le.org'}
593 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examplℯ.org'}
594 | {'domain_punnycode': b'www.xn--exmple-4za.org', 'domain': 'www.exĀmple.org'}
595 | {'domain_punnycode': b'www.xn--eample-31e.org', 'domain': 'www.e𝞦ample.org'}
596 | {'domain_punnycode': b'www.xn--exampl-u3a.org', 'domain': 'www.examplĒ.org'}
597 | {'domain_punnycode': b'www.xn--exampl-1we.org', 'domain': 'www.examplΈ.org'}
598 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.examp𝐈e.org'}
599 | {'domain_punnycode': b'www.xn--xample-hva.org', 'domain': 'www.êxample.org'}
600 | {'domain_punnycode': b'www.xn--examle-6l6b.org', 'domain': 'www.examᵱle.org'}
601 | {'domain_punnycode': b'www.exAmple.org', 'domain': 'www.exAmple.org'}
602 | {'domain_punnycode': b'www.xn--exampl-8y8b.org', 'domain': 'www.examplἘ.org'}
603 | {'domain_punnycode': b'www.xn--xample-9yc.org', 'domain': 'www.ℇxample.org'}
604 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝗲.org'}
605 | {'domain_punnycode': b'www.xn--eample-ir3d.org', 'domain': 'www.e⤫ample.org'}
606 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝘔ple.org'}
607 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exaMple.org'}
608 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝗘.org'}
609 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝘭e.org'}
610 | {'domain_punnycode': b'www.xn--exampe-fxe.org', 'domain': 'www.exampίe.org'}
611 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝚙le.org'}
612 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝑎mple.org'}
613 | {'domain_punnycode': b'www.xn--exampl-gz8b.org', 'domain': 'www.examplἙ.org'}
614 | {'domain_punnycode': b'www.xn--exampl-uva.org', 'domain': 'www.examplë.org'}
615 | {'domain_punnycode': b'www.xn--exmple-q339a.org', 'domain': 'www.ex𐐨mple.org'}
616 | {'domain_punnycode': b'www.xn--xample-o3a.org', 'domain': 'www.Ēxample.org'}
617 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ⅇxample.org'}
618 | {'domain_punnycode': b'www.xn--exaple-yze.org', 'domain': 'www.exa𝜧ple.org'}
619 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝖺mple.org'}
620 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝔸mple.org'}
621 | {'domain_punnycode': b'www.xn--exampe-tf4w.org', 'domain': 'www.exampᎱe.org'}
622 | {'domain_punnycode': b'www.xn--exaple-yx6a.org', 'domain': 'www.exaᛖple.org'}
623 | {'domain_punnycode': b'www.xn--exampl-8hc.org', 'domain': 'www.examplȄ.org'}
624 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.exam𝜬le.org'}
625 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝒍e.org'}
626 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝖃ample.org'}
627 | {'domain_punnycode': b'www.xn--exampe-t9a.org', 'domain': 'www.exampıe.org'}
628 | {'domain_punnycode': b'www.xn--examle-6t8d.org', 'domain': 'www.examⲣle.org'}
629 | {'domain_punnycode': b'www.xn--exampe-m6b.org', 'domain': 'www.exampǐe.org'}
630 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examplE.org'}
631 | {'domain_punnycode': b'www.xn--exampl-gox.org', 'domain': 'www.examplၿ.org'}
632 | {'domain_punnycode': b'www.xn--exmple-qxe.org', 'domain': 'www.ex𝝰mple.org'}
633 | {'domain_punnycode': b'www.xn--exampe-m2c.org', 'domain': 'www.exampɫe.org'}
634 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝖝ample.org'}
635 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝔢xample.org'}
636 | {'domain_punnycode': b'www.xn--xample-hye.org', 'domain': 'www.Εxample.org'}
637 | {'domain_punnycode': b'www.xn--xample-2y8b.org', 'domain': 'www.Ἐxample.org'}
638 | {'domain_punnycode': b'www.xn--exaple-k1t.org', 'domain': 'www.exaฅple.org'}
639 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝑨mple.org'}
640 | {'domain_punnycode': b'www.xn--exmple-jw8b.org', 'domain': 'www.exἋmple.org'}
641 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝕄ple.org'}
642 | {'domain_punnycode': b'www.xn--exaple-ky6v.org', 'domain': 'www.exaꙦple.org'}
643 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.exam𝞺le.org'}
644 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝕸ple.org'}
645 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝔄mple.org'}
646 | {'domain_punnycode': b'www.xn--exmple-cw49a.org', 'domain': 'www.ex\U000104b2mple.org'}
647 | {'domain_punnycode': b'www.xn--exmple-xv8b.org', 'domain': 'www.exἈmple.org'}
648 | {'domain_punnycode': b'www.xn--exmple-qhc.org', 'domain': 'www.exȃmple.org'}
649 | {'domain_punnycode': b'www.xn--examle-erf.org', 'domain': 'www.examРle.org'}
650 | {'domain_punnycode': b'www.xn--exampl-14a.org', 'domain': 'www.examplĘ.org'}
651 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝐏le.org'}
652 | {'domain_punnycode': b'www.xn--xample-oxc.org', 'domain': 'www.Ɓxample.org'}
653 | {'domain_punnycode': b'www.xn--eample-bfg.org', 'domain': 'www.eҲample.org'}
654 | {'domain_punnycode': b'www.example.org', 'domain': 'www.eⅩample.org'}
655 | {'domain_punnycode': b'www.xn--exmple-xq4w.org', 'domain': 'www.exꮹmple.org'}
656 | {'domain_punnycode': b'www.xn--exmple-x0a.org', 'domain': 'www.exĄmple.org'}
657 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝑿ample.org'}
658 | {'domain_punnycode': b'www.xn--exmple-qlg.org', 'domain': 'www.exӒmple.org'}
659 | {'domain_punnycode': b'www.xn--xample-vk4w.org', 'domain': 'www.ꮛxample.org'}
660 | {'domain_punnycode': b'www.xn--xample-vwe.org', 'domain': 'www.Έxample.org'}
661 | {'domain_punnycode': b'www.xn--exaple-yze.org', 'domain': 'www.exaΜple.org'}
662 | {'domain_punnycode': b'www.xn--exampl-1t5a.org', 'domain': 'www.examplᘓ.org'}
663 | {'domain_punnycode': b'www.xn--exampe-fze.org', 'domain': 'www.exampΙe.org'}
664 | {'domain_punnycode': b'www.xn--examle-6t8d.org', 'domain': 'www.examⲢle.org'}
665 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.examρle.org'}
666 | {'domain_punnycode': b'www.xn--exampe-7oj.org', 'domain': 'www.examp۱e.org'}
667 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝓜ple.org'}
668 | {'domain_punnycode': b'www.xn--exampe-tvf.org', 'domain': 'www.exampіe.org'}
669 | {'domain_punnycode': b'www.xn--xample-ofx.org', 'domain': 'www.ၔxample.org'}
670 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.examp𝕴e.org'}
671 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝚇ample.org'}
672 | {'domain_punnycode': b'www.xn--exmple-jua.org', 'domain': 'www.exÅmple.org'}
673 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝔛ample.org'}
674 | {'domain_punnycode': b'www.xn--exampl-nye.org', 'domain': 'www.exampl𝝚.org'}
675 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝙀.org'}
676 | {'domain_punnycode': b'www.xn--exmple-4f5c.org', 'domain': 'www.ex⍺mple.org'}
677 | {'domain_punnycode': b'www.xn--exaple-r3c.org', 'domain': 'www.exaɱple.org'}
678 | {'domain_punnycode': b'www.ex4mple.org', 'domain': 'www.ex4mple.org'}
679 | {'domain_punnycode': b'www.xn--eample-wv5b.org', 'domain': 'www.eᳳample.org'}
680 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝐦ple.org'}
681 | {'domain_punnycode': b'www.xn--exampe-tvb.org', 'domain': 'www.exampȽe.org'}
682 | {'domain_punnycode': b'www.example.org', 'domain': 'www.example.org'}
683 | {'domain_punnycode': b'www.xn--exmple-qxe.org', 'domain': 'www.exαmple.org'}
684 | {'domain_punnycode': b'www.xn--eample-bsf.org', 'domain': 'www.eхample.org'}
685 | {'domain_punnycode': b'www.xn--exmple-qxe.org', 'domain': 'www.ex𝜜mple.org'}
686 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.examp𝖨e.org'}
687 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.exampℹe.org'}
688 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝕒mple.org'}
689 | {'domain_punnycode': b'www.xn--xample-hmg.org', 'domain': 'www.Ӗxample.org'}
690 | {'domain_punnycode': b'www.xn--exaple-yze.org', 'domain': 'www.exa𝝡ple.org'}
691 | {'domain_punnycode': b'www.xn--example-0ma.org', 'domain': 'www.exampŀe.org'}
692 | {'domain_punnycode': b'www.xn--exmple-xmg.org', 'domain': 'www.exәmple.org'}
693 | {'domain_punnycode': b'www.xn--exampe-to4w.org', 'domain': 'www.exampᏞe.org'}
694 | {'domain_punnycode': b'www.xn--exmple-c639a.org', 'domain': 'www.ex𐐵mple.org'}
695 | {'domain_punnycode': b'www.xn--exmple-45b.org', 'domain': 'www.exǍmple.org'}
696 | {'domain_punnycode': b'www.examplc.org', 'domain': 'www.examplⅽ.org'}
697 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝑒xample.org'}
698 | {'domain_punnycode': b'www.xn--exampl-8of.org', 'domain': 'www.examplе.org'}
699 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝖆mple.org'}
700 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝙻e.org'}
701 | {'domain_punnycode': b'www.xn--xample-hye.org', 'domain': 'www.𝚬xample.org'}
702 | {'domain_punnycode': b'www.xn--eample-31e.org', 'domain': 'www.e𝛸ample.org'}
703 | {'domain_punnycode': b'www.example.org', 'domain': 'www.example.org'}
704 | {'domain_punnycode': b'www.eXample.org', 'domain': 'www.eXample.org'}
705 | {'domain_punnycode': b'www.xn--exmple-48q.org', 'domain': 'www.exఞmple.org'}
706 | {'domain_punnycode': b'www.examp1e.org', 'domain': 'www.examp𝟭e.org'}
707 | {'domain_punnycode': b'www.xn--exmple-c65b.org', 'domain': 'www.exᴧmple.org'}
708 | {'domain_punnycode': b'www.xn--exaple-yze.org', 'domain': 'www.exa𝞛ple.org'}
709 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.examp𝙄e.org'}
710 | {'domain_punnycode': b'www.xn--exampe-77a.org', 'domain': 'www.exampĩe.org'}
711 | {'domain_punnycode': b'www.xn--exmple-qxe.org', 'domain': 'www.ex𝛂mple.org'}
712 | {'domain_punnycode': b'www.xn--exmple-4v8b.org', 'domain': 'www.exἉmple.org'}
713 | {'domain_punnycode': b'www.xn--eample-i84d.org', 'domain': 'www.e⨯ample.org'}
714 | {'domain_punnycode': b'www.xn--xample-hye.org', 'domain': 'www.𝜺xample.org'}
715 | {'domain_punnycode': b'www.xn--xample-v339a.org', 'domain': 'www.𐐁xample.org'}
716 | {'domain_punnycode': b'www.Example.org', 'domain': 'www.Example.org'}
717 | {'domain_punnycode': b'www.xn--exaple-k8t.org', 'domain': 'www.exaศple.org'}
718 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examℙle.org'}
719 | {'domain_punnycode': b'www.xn--exampe-0cb.org', 'domain': 'www.exampĻe.org'}
720 | {'domain_punnycode': b'www.xn--exmple-qze.org', 'domain': 'www.exΛmple.org'}
721 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝖒ple.org'}
722 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝙭ample.org'}
723 | {'domain_punnycode': b'www.xn--exampl-nva.org', 'domain': 'www.examplê.org'}
724 | {'domain_punnycode': b'www.xn--examle-zcf.org', 'domain': 'www.examϷle.org'}
725 | {'domain_punnycode': b'www.xn--exmple-qwe.org', 'domain': 'www.exΆmple.org'}
726 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝑃le.org'}
727 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝚎xample.org'}
728 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝙿le.org'}
729 | {'domain_punnycode': b'www.xn--examle-e35b.org', 'domain': 'www.examᴘle.org'}
730 | {'domain_punnycode': b'www.xn--eample-31e.org', 'domain': 'www.e𝜲ample.org'}
731 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝘱le.org'}
732 | {'domain_punnycode': b'www.xn--exaple-543w.org', 'domain': 'www.exaꭑple.org'}
733 | {'domain_punnycode': b'www.xn--xample-h6e.org', 'domain': 'www.Ϝxample.org'}
734 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ex𝚊mple.org'}
735 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝓧ample.org'}
736 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝗫ample.org'}
737 | {'domain_punnycode': b'www.xn--exampe-f38d.org', 'domain': 'www.exampⳐe.org'}
738 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝙇e.org'}
739 | {'domain_punnycode': b'www.xn--exmple-ce5a.org', 'domain': 'www.exᗅmple.org'}
740 | {'domain_punnycode': b'www.xn--exampe-to6a.org', 'domain': 'www.exampᚨe.org'}
741 | {'domain_punnycode': b'www.xn--examle-ze5c.org', 'domain': 'www.exam⍴le.org'}
742 | {'domain_punnycode': b'www.xn--examle-erf.org', 'domain': 'www.examрle.org'}
743 | {'domain_punnycode': b'www.xn--exmple-j0a.org', 'domain': 'www.exĂmple.org'}
744 | {'domain_punnycode': b'www.xn--exampl-8ua.org', 'domain': 'www.examplÈ.org'}
745 | {'domain_punnycode': b'www.xn--exampe-m8a.org', 'domain': 'www.exampīe.org'}
746 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝗆ple.org'}
747 | {'domain_punnycode': b'www.example.org', 'domain': 'www.examp𝗅e.org'}
748 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝙥le.org'}
749 | {'domain_punnycode': b'www.xn--exampl-gvf.org', 'domain': 'www.examplЄ.org'}
750 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝖯le.org'}
751 | {'domain_punnycode': b'www.xn--exampe-7db.org', 'domain': 'www.exampłe.org'}
752 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝔁ample.org'}
753 | {'domain_punnycode': b'www.exanple.org', 'domain': 'www.exanple.org'}
754 | {'domain_punnycode': b'www.xn--example-0ma.org', 'domain': 'www.exampĿe.org'}
755 | {'domain_punnycode': b'www.xn--exampe-005b.org', 'domain': 'www.exampᴌe.org'}
756 | {'domain_punnycode': b'www.xn--exampl-nt4v.org', 'domain': 'www.examplꓰ.org'}
757 | {'domain_punnycode': b'www.xn--exmple-cj9b.org', 'domain': 'www.exᾺmple.org'}
758 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝙈ple.org'}
759 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝑬.org'}
760 | {'domain_punnycode': b'www.xn--exampe-fxe.org', 'domain': 'www.exampΊe.org'}
761 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exampl𝖤.org'}
762 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝐞xample.org'}
763 | {'domain_punnycode': b'www.exampl3.org', 'domain': 'www.exampl3.org'}
764 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝙼ple.org'}
765 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝒫le.org'}
766 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝓟le.org'}
767 | {'domain_punnycode': b'www.xn--eample-353w.org', 'domain': 'www.eꭖample.org'}
768 | {'domain_punnycode': b'www.example.org', 'domain': 'www.ℰxample.org'}
769 | {'domain_punnycode': b'www.xn--xample-hye.org', 'domain': 'www.εxample.org'}
770 | {'domain_punnycode': b'www.xn--exampl-uh6v.org', 'domain': 'www.examplꘓ.org'}
771 | {'domain_punnycode': b'www.xn--examle-z0e.org', 'domain': 'www.exam𝟈le.org'}
772 | {'domain_punnycode': b'www.example.org', 'domain': 'www.e𝘅ample.org'}
773 | {'domain_punnycode': b'www.xn--exmple-chc.org', 'domain': 'www.exȁmple.org'}
774 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝑀ple.org'}
775 | {'domain_punnycode': b'www.xn--exaple-5p4v.org', 'domain': 'www.exaꓟple.org'}
776 | {'domain_punnycode': b'www.xn--exampl-8of.org', 'domain': 'www.examplЕ.org'}
777 | {'domain_punnycode': b'www.xn--xample-28b.org', 'domain': 'www.Ǝxample.org'}
778 | {'domain_punnycode': b'www.xn--exampe-tr4w.org', 'domain': 'www.exampᏭe.org'}
779 | {'domain_punnycode': b'www.ex@mple.org', 'domain': 'www.ex@mple.org'}
780 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exa𝒎ple.org'}
781 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝓹le.org'}
782 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝒆xample.org'}
783 | {'domain_punnycode': b'www.xn--exmple-qt5a.org', 'domain': 'www.exᘒmple.org'}
784 | {'domain_punnycode': b'www.example.org', 'domain': 'www.𝖾xample.org'}
785 | {'domain_punnycode': b'www.xn--xample-hq4c.org', 'domain': 'www.⋿xample.org'}
786 | {'domain_punnycode': b'www.xn--exampe-0kg.org', 'domain': 'www.exampӏe.org'}
787 | {'domain_punnycode': b'www.example.org', 'domain': 'www.exam𝔭le.org'}
788 | {'domain_punnycode': b'www.xn--exampe-fjc.org', 'domain': 'www.exampȊe.org'}
789 | {'domain_punnycode': b'www.xn--exampl-u739a.org', 'domain': 'www.exampl𐐔.org'}
790 | {'domain_punnycode': b'www.exampie.org', 'domain': 'www.examp𝘐e.org'}
791 | 
792 | mindcrypt@kali:~/tool/uriDeep# python3 uriDeep.py -l -H -d www.example.org
793 | 
794 |             _    ___
795 |  /\ /\ _ __(_)  /   \___  ___ _ __
796 | / / \ \ '__| | / /\ / _ \/ _ \ '_ \
797 | \ \_/ / |  | |/ /_//  __/  __/ |_) |
798 |  \___/|_|  |_/___,' \___|\___| .__/
799 |                              |_|
800 | 
801 |  Version Beta
802 |  Authors: Alfonso Muñoz (@mindcrypt)
803 |           Miguel Hernández (@MiguelHzBz)
804 |     
805 | Domain target: www.example.org
806 | Option selected: Homoglyph attack
807 | Option selected: Lite confusables
808 | Generate similar domains...
809 | Similars domains to example: 5
810 | {'domain': 'www.exąmple.org', 'domain_punnycode': b'www.xn--exmple-x0a.org'}
811 | {'domain': 'www.examplę.org', 'domain_punnycode': b'www.xn--exampl-14a.org'}
812 | {'domain': 'www.exampļe.org', 'domain_punnycode': b'www.xn--exampe-0cb.org'}
813 | {'domain': 'www.ęxample.org', 'domain_punnycode': b'www.xn--xample-v4a.org'}
814 | {'domain': 'www.example.org', 'domain_punnycode': b'www.example.org'}
815 | root@kali:~/tool/uriDeep# 
816 | 
817 | 
818 | 819 | -------------------------------------------------------------------------------- /UriDeep.py: -------------------------------------------------------------------------------- 1 | import argparse 2 | import sys 3 | import signal 4 | from tld import get_tld 5 | import idna 6 | import socket 7 | import whois 8 | import os 9 | from glob import glob 10 | import json 11 | import time 12 | 13 | DESCRIPTION = ('UriDeep: Tool based on machine learning to create amazing fake domains using confusables. Some domains can deceive IDN policies') 14 | 15 | CONFUSABLES_FULL = "./data/deepDiccConfusables.txt" 16 | CONFUSABLES_LIGHT = "./data/confusables-table-light.txt" 17 | 18 | def banner(delay_time=1): 19 | print(""" 20 | _ ___ 21 | /\ /\ _ __(_) / \___ ___ _ __ 22 | / / \ \ '__| | / /\ / _ \/ _ \ '_ \\ 23 | \ \_/ / | | |/ /_// __/ __/ |_) | 24 | \___/|_| |_/___,' \___|\___| .__/ 25 | |_| 26 | 27 | Version Beta 28 | Authors: Alfonso Muñoz (@mindcrypt) 29 | Miguel Hernández (@MiguelHzBz) 30 | """) 31 | time.sleep(delay_time) 32 | def getArgs(): 33 | parser = argparse.ArgumentParser(description=DESCRIPTION) 34 | parser.add_argument('-d, --domain', action='store', dest='domain', 35 | help='check similar domains to this one') 36 | parser.add_argument('-i', '--input', dest='fileinput', 37 | help='List of targets. One input per line.') 38 | 39 | parser.add_argument('-F','--flipper', dest='flipper',default=False, nargs='?', const=True, type=bool, help='Execute flipping attack') 40 | parser.add_argument('-H','--homoglyph', dest='homoglyph',default=False, nargs='?',const=True, type=bool,help="Execute homoglyph attack with full table of confusables") 41 | parser.add_argument('-l', '--light', action='store_true', help='To create fake domains that could deceive IDN policies') 42 | parser.add_argument('-S','--substitution', dest='substitution',default=False, nargs='?', const=True, type=bool, help="Execute substitution attack") 43 | 44 | parser.add_argument('-c', '--check', action='store_true', 45 | help='check if this domain is alive') 46 | 47 | 48 | parser.add_argument('-w', '--whois', action='store_true',dest='whois', 49 | help='check whois') 50 | 51 | parser.add_argument('-vt', '--virustotal', action='store_true',dest='virustotal', 52 | help='check Virus Total') 53 | parser.add_argument('-key', '--api-key', dest='api', 54 | help='VirusTotal API Key') 55 | 56 | parser.add_argument('-o', '--output', dest='outputfile', help='Output file') 57 | 58 | 59 | args = parser.parse_args() 60 | testArgs(args,parser) 61 | return args 62 | 63 | def testArgs(args,parser): 64 | if (not args.domain and not args.fileinput): 65 | print(parser.print_help()) 66 | print("Need one type of input, {-i --input} or {-d --domain}") 67 | sys.exit(-1) 68 | 69 | if(args.virustotal and not args.api): 70 | print('Please, enter a VirusTotal API Key with -api or --api-key') 71 | sys.exit(-1) 72 | 73 | if not (args.homoglyph or args.substitution or args.flipper): 74 | print(parser.print_help()) 75 | print("Need one type of attack, {-F --flipper} {-H --homoglyph} or {-S --substitution}") 76 | sys.exit(-1) 77 | if args.fileinput: 78 | try: 79 | f = open(args.fileinput, 'r') 80 | f.close() 81 | except Exception: 82 | print(parser.print_help()) 83 | print("--------------\n\n") 84 | print("Wrong input file.\n\n") 85 | print("--------------") 86 | sys.exit(-1) 87 | if (args.outputfile): 88 | try: 89 | f = open(args.outputfile, 'w') 90 | f.close() 91 | except Exception: 92 | print("--------------") 93 | print("Wrong output file.\n\n") 94 | print("--------------") 95 | print(parser.print_help()) 96 | sys.exit(-1) 97 | 98 | def read_data(filename): 99 | with open(filename, 'r') as f: 100 | lines = f.readlines() 101 | return lines 102 | 103 | def who_is(domain): 104 | try: 105 | return whois.whois(domain) 106 | except whois.parser.PywhoisError: 107 | print('Whois not found!') 108 | return('Whois not found!') 109 | except: 110 | return ('Whois timeout') 111 | 112 | def read_domain(domain): 113 | res = get_tld(domain, as_object=True, fix_protocol=True) 114 | return res 115 | 116 | def read_confusables(filename): 117 | lines, confusables = [], {} 118 | with open(filename, 'r') as f: 119 | lines = f.readlines() 120 | for line in lines: 121 | characters = list(line.replace('\n', '')) 122 | latin_character = characters[0] 123 | confusables[latin_character] = characters 124 | return confusables 125 | 126 | def generate_flipper_domains(dom): 127 | 128 | domain = dom.domain 129 | new_urls_without_letter = [] 130 | n = 0 131 | m = len(domain) 132 | 133 | if m == 1: 134 | new_urls_without_letter.append(domain) 135 | elif m == 2: 136 | new_domain = domain[1] + domain[0] 137 | new_urls_without_letter.append(new_domain) 138 | 139 | else: 140 | 141 | while n < m and m > 2: 142 | 143 | if n == 0 : 144 | new_domain = domain[n + 1] + domain[n] + domain[n + 2:m] 145 | 146 | elif n == 1: 147 | new_domain = domain[0] + domain[n + 1] + domain[n] + domain[n + 2:m] 148 | 149 | elif 1 < n < m - 1: 150 | new_domain = domain[0:n] + domain[n + 1] + domain[n] + domain[n + 2:m] 151 | 152 | n = n + 1 153 | new_urls_without_letter.append(new_domain+"."+dom.tld) 154 | new_urls_list = list(set(new_urls_without_letter)) 155 | return new_urls_list 156 | 157 | def generate_substitution_domains(dom): 158 | domain = dom.domain 159 | 160 | new_urls_with_double_letter = [] 161 | n = 0 162 | m = len(domain) 163 | while n < m: 164 | new_domain = domain[0:n] + domain[n] + domain[n] + domain[n+1:m] 165 | new_urls_with_double_letter.append(new_domain+"."+dom.tld) 166 | new_domain = domain[0:n] + domain[n+1:m] 167 | new_urls_with_double_letter.append(new_domain+"."+dom.tld) 168 | n = n + 1 169 | new_urls_list = list(set(new_urls_with_double_letter)) 170 | return new_urls_list 171 | 172 | def change(res, i, confusables): 173 | domain = res.domain 174 | subdomain = res.subdomain 175 | tld = res 176 | domains = [] 177 | if domain[i] in confusables: 178 | for c in confusables[domain[i]]: 179 | new_domain = list(domain) 180 | new_domain[i] = c 181 | if(subdomain): 182 | domains.append('{}.{}.{}'.format(subdomain, ''.join(new_domain), tld)) 183 | else: 184 | domains.append('{}.{}'.format(''.join(new_domain), tld)) 185 | 186 | return domains 187 | 188 | 189 | def similar_domains(res, confusables): 190 | domain = res.domain 191 | domains = [] 192 | for i, c in enumerate(domain): 193 | domains.extend(change(res, i, confusables)) 194 | return set(domains) 195 | 196 | def to_punnycode(domain): 197 | try: 198 | return domain.encode("idna") 199 | except Exception as e: 200 | pass 201 | 202 | def is_alive(domain): 203 | try: 204 | socket.gethostbyname(domain) 205 | return True 206 | except Exception as e: 207 | return False 208 | 209 | def to_punnycode_array(domains): 210 | return list(filter(None, [to_punnycode(x) for x in domains])) 211 | 212 | def main(): 213 | banner(1) 214 | signal.signal(signal.SIGINT, signal.SIG_DFL) 215 | args = getArgs() 216 | idomains = list() 217 | if args.domain: 218 | idomains.append(args.domain) 219 | else: 220 | lines = read_data(args.fileinput) 221 | for line in lines: 222 | idomains.append(line.strip()) 223 | d_salida = {'result':[]} 224 | for domain in idomains: 225 | domain_list = [] 226 | print('Domain target: ' + domain) 227 | dom = read_domain(domain) 228 | if args.homoglyph: 229 | print('Option selected: Homoglyph attack') 230 | if args.light: 231 | print('Option selected: Lite confusables') 232 | confusables = read_confusables(CONFUSABLES_LIGHT) 233 | else: 234 | print('Option selected: Full confusables') 235 | confusables = read_confusables(CONFUSABLES_FULL) 236 | print('Generate similar domains...') 237 | domains_h = set(similar_domains(dom, confusables)) 238 | domain_list.extend(domains_h) 239 | if args.flipper: 240 | print('Option selected: Flipping attack') 241 | print('Generate similar domains...') 242 | domains_f = set(generate_flipper_domains(dom)) 243 | domain_list.extend(domains_f) 244 | if args.substitution: 245 | print('Option selected: Substitution attack') 246 | print('Generate similar domains...') 247 | domains_s = set(generate_substitution_domains(dom)) 248 | domain_list.extend(domains_s) 249 | if len(domain_list) > 0: 250 | print('Similars domains to {}: {}'.format(dom.domain,len(domain_list))) 251 | for punnydomain in domain_list: 252 | s = {'domain':punnydomain} 253 | s["domain_punnycode"] = to_punnycode(punnydomain) 254 | if(args.check and is_alive(punnydomain)): 255 | s["active"] = True 256 | if args.whois: 257 | print("Check Whois: {}".format(punnydomain.decode("utf-8"))) 258 | w = who_is(punnydomain.decode("utf-8")) 259 | s["whois"] = w 260 | if args.virustotal: 261 | print("Check Virus Total: {}".format(punnydomain.decode("utf-8"))) 262 | vt = VirusTotalPublicApi(API_KEY) 263 | response = vt.get_url_report('https://{}'.format(punnydomain.decode("utf-8")), scan='1') 264 | json_vt = (json.dumps(response, sort_keys=False, indent=4)) 265 | s["virustotal"] = json_vt 266 | d_salida["result"].append(s) 267 | if args.outputfile: 268 | print("\n") 269 | print("******************************************************") 270 | print("Outputfile with the summary: {}".format(args.outputfile)) 271 | with open(args.outputfile, 'w') as outfile: 272 | json.dump(d_salida, outfile,default=str) 273 | else: 274 | for j in d_salida["result"]: 275 | print(j) 276 | 277 | if __name__ == '__main__': 278 | main() 279 | -------------------------------------------------------------------------------- /data/confusables-table-light.txt: -------------------------------------------------------------------------------- 1 | aą 2 | eę 3 | gģġ 4 | jį 5 | kķ 6 | lļ 7 | nņ 8 | rŗ 9 | sş 10 | tţ 11 | uų 12 | -------------------------------------------------------------------------------- /data/deepDiccConfusables.txt: -------------------------------------------------------------------------------- 1 | aаɑaǟǡȁȃȧӓàáâãäå𝕒𝙖𝚊𝗮𝘢𐐨𝑎ꭿခAÀÁÂÃÄÅΑᎪĂĄǍǺȀȂȦȺɅΆΛАӐӒAἈἉἊἋἌἍἎἏᾈᾉᾊᾋᾌᾍᾸᾹᾺΆᾼᗅᗋɒαఐఞ𐓠ǝӚ𝜕𝝏əɚᥑටӘƏᘐ𐐂𐐀@Ҩᘒဇ𐐵әᓇᐐĀꮹ𐐍ᴧ𐒰𐒱𐒲ǣǽӕ4𝝰𝖆𝓪𝞪𝔞𝒂𝛂⍺𝒶𝜶𝛼𝐚𝖺𝙰𝐴𝑨𝚨𝕬𝖠𝛢𝝖𝒜𝜜𝓐𝞐𝗔𝘈ꓮ𝐀𝔄𝔸𝘼 2 | bƀߕᖯᏏᵬ␢Ⱃ𐌜ҍ𐒑ꮦᑲᒂЬb𝑏𝗯Ƅ𝕓𝖇𝓫𝚋𝔟𝒃𝘣𝒷𝙗𝐛𝖻𝕭𝙱𝚩ꓐ𝜝𝛣𝖡𝝗𝗕𝓑𝞑𝔅ℬ𝘉𝘽Ꞵ𝐁ᗷ𝐵𝔹ɓΒBƁƂƉɃБᏴḄḆⲂВᗾƅ𐐚𐑂𐐒ʙβᛒBß𐌁ɞଓওദꗏ꧵꧸ϸᘫᘶᘸᴈϐ𐒈Ϭ๖ϭᱠʪ3ƃ 3 | cϲсꮳⲥc𐓧𝑐𝘤ᥴ𝗰𝕔𝖈𝓬𝔠𝒸𝙘𝐜ℂ𝕮𝒞𝖢𐌂𝗖ꓚ𝓒𝘾🝌ᴄⅽćᘧ᧚င𝖼𝚌⪽𐐽𝒄𝞻ဧꮯⲤ𐐕Ꮳᘳꮸƈ ᘹͼℭⅭↅCᏟᏨϾ꒝C𝐂𝐶𝑪𝘊𝙲ꇃꌓƈϹƈƈСⵛςҁƈ ɔ𐑋ᴐວᦱↄ၁эၥͽꬿↃϿᘰ𐐣ͻ 4 | dd𝓭𝚍ⅆ𝑑𝗱Ꮷ𝒅𝘥𝖉ꓒ𝐝𝖽𝔡𝕕𝒹𝙙𝕯ⅅ𝓓𝙳𝔇𝑫𝘋𝒟𝘿ꓓ𝐃𝖣𝐷𝗗𝔻ᗞďđƌȡɖɗԁᵭⅾ꒯ꮷᑯⳝ꧸𐒈ᑻᒇᕷᘕଧȸ𐓱ƊᎠᗬⅮↁDĎƉᏴᗪḌ𐓈ⳜĐժD6 5 | eе𝓮𝚎𝗲𝒆𝘦𝖊ℯ𝐞𝖾ꬲ𝔢𝕖𝙚𝕰𝙴𝛦𝑬𝚬𝜠𝖤𝗘𝝚𝓔𝞔𝔈𝘌ℰ𝙀ꓰ𝐸ⴹ𝔼⋿ҽ౿ȅȇéêëēĕėěe𝑒ၔၕᧉɘəɛεϵэєᴇꘓⲈⲉ℮ⅇⅽ⋴𐐩𝛆𝜺ꮛꮼၿEɆΈΕȄȆᎧEЄ𐐔𐌴ᘓ𐐁ᏋℇĒĔĖĘĚƁƂƎȨϜЀЁБЕӖᎬἘἙῈΈ𝐄ÈÉÊË3 6 | f𝓯𝚏ք𝑓𝗳𝒇𝘧𝖋𝖿𝔣𝕗ꞙ𝒻𝙛ẝ𝑭𝕱𝖥Ꞙ𝓕ꓝ𝗙𝘍𝐅𝟊𝔉ℱ𝔽ᖴ𝙁𝙵fƒſƭʇ߁ᵮᵳꬵꬷ𝐟ҒFϜ₣ΓFłƗƚɫɬ7 7 | g𝓰𝚐ցᶃ𝑔𝗴𝒈ℊ𝖌𝐠𝗀𝔤𝕘𝙜𝑮𝘎𝕲𝖦𝔊𝔾𝒢𝙂ꓖ𝓖𝙶𝐺𝗚ĝġǥǧǵɢGĜĠĢƓǤǦǴԌᎶᏀᏩᏳḠↅ𝐆ꮆ𐓲𐓴൭𐒉𝘨ᏟᏣᏨƍɡնGg9 8 | h𝖍𝓱𝚑𝔥ℎ𝒉𝘩հ𝒽𝙝𝐡𝗁𝗵𝕙𝑯𝚮𝕳𝛨𝖧ℋℌℍⲎ𝜢𝓗𝞖𝝜𝗛𝘏ꓧ𝐇𝙃𝙷𝐻ĥħȟɦћһԧከኩኮኯᏥꚕꮒHĦǶȞΉΗΠНԨᎻⱧнⲏʜҺԦᏂᕼHh4 9 | i𝓲𝞲ꙇⅈ𝔦𝘪ӏ𝙞𝚤𝐢𝑖˛𝕚𝖎𝚒𝒊𝛊ı𝒾𝜾⍳𝜄ꭵ𝝸𝗶ͺ𝘭𝐥ﺍﺎ𝔩ℐℑ𐌉ℓ𝜤𝞘𝚕𝟏∣𝗅𝕀𝙄𝓁𐌠𝐼𝑰ǀ𝟭𝕴ߊl𝛪ⵏ𝝞𝕝𝙡𝓘𝗜𝟙𝑙ןⅠ𝘐١𝒍𝖑│۱ꓲ𝙸𝟷𝓵|𝗹1lÌÍÎÏīĭŀŕǐȋɪɫΐίϊіїᎥℹⅰί𝖏ᛙ𝖨𝗂⍿❘ᛁIĨĪĬĮİΊΙΪІЇ𝐈𝚰ⅼⲒⲓꮖӀᏆȊȈɨ𐒔ιƖȉἰἱἲἳἵὶῐῑῒΐῖɩاⅠIi 10 | j𝖏𝓳𝚓𝔧𝒋𝘫𝒿𝙟𝐣𝑗𝕛𝔍𝑱𝘑𝒥𝙅ᒍ𝐉𝖩Ʝ𝐽𝗝𝕁ꓙ𝕵𝓙𝙹Jɿ𐐣ĴɈɺЈᎫᏓᴶĵǰȷɉϳјⅉل𝗃𝗷ͿյJj1 11 | k𝖐𝓴𝚔𝔨𝒌𝘬𝓀𝙠𝐤𝗄𝑘𝗸𝕜𝑲𝚱𝒦𝜥𝛫𝖪𝝟𝗞ꓗ𝓚𝞙𝔎𝘒𝙆𝐊𝐾𝕂𝕶𝙺ķƙǩκҟᶄⱪⲔꮶKĶƘǨΚϏԞᏦKⱩЌКҜҞҠᛕKk4 12 | l𝚰𝘭𝖨𝐥ﺍﺎ𝔩ℐℑⲒ𐌉ℓ𝜤𝞘𝚕𝟏∣I𝕀𝙄𝓁𐌠𝐼𝑰ᛁ𝟭𝕴Iߊ𝛪ⵏ𝝞𝕝𝙡𝓘𝟙𝑙ן𝘐١𝒍𝖑│𝐈۱ꓲ𝙸𝟷𝓵𝑳𝖫Ⳑ𝗟ℒ𝓛𝔏ꓡ𐐛𝘓𝙇ᒪ𝐋𝐿𝕃𝕷𝙻ÌÍÎÏĩīĭİıĺŀłſƖƚǏǐȈȉȊȋɩɫɬɭɺІLⅠⅬ⎬ⱢᴌᏓᏞĹĻĽĿŁ𝗅𝗹𝗜|ⅼ⌊⌋⎿ǀ╎╽╿।ᚨᚾᥣᥬȽГҐґӀӏ߁ᎰᎱᏐῚΊ₮ዩዬι𐐹𐑊ʟϊῙራሬΙίіїᎥℹᏭاLl1 13 | m𝒎𝘮𝖒𝐦𝗆𝔪𝕞𝓂𝙢𝓶𝚖n𝑚𝗺𝛭𝑴𝚳𝜧𐌑𝖬𝗠𝝡Ⲙ𝓜𝞛ꓟ𝔐𝘔𝙈𝐌𝑀ᗰℳ𝕄𝕸𝙼ɱᵯⅿꬺꭑฅตศ๓៣MΜМӍᎷⅯⱮꙦᥖതϺᛖMm 14 | n𝒏𝘯𝖓𝐧𝗇𝔫𝕟𝓃𝙣ո𝓷𝚗ռ𝗻ꓠ𝛮𝖭𝚴𝔑𝜨𝒩𝙉𝓝𝙽ℕ𝝢𝑁𝗡Ⲛ𝑵𝘕𝞜𝕹ńņňƞǹȵɳпᥒᦵNŃŅŇŊƝǸɴΝṆṈꞐ𝐍በ𐑍ⲛⲡ𐒐𐓣ທ𝑛Ͷͷര൴ർၵԹശග႐ᦅᘏიດNn 15 | oÒÓÕőοంಂംංօ𝐨𝔬𝛔ﮦﮧ𝝈𝞼ꬽھہه𝕠ەס𝜎𝖔٥۵𝞂𝓸𝗼〇𝟬𝒪𝜪𝓞𝞞𝝤𝟢𝟘𝟎୦𝔒𝕆𝙊ꓳ𝟶𝚶𝕺σơǒǫȍȏȫȭȯȱᏫዐɵɷ🞅OƠȌႎ⬯߀0ΟОоՕOo০੦૦ଠ౦೦ѲϴǾȎȪȬȮȰΌΘǑƟŌŎŐ⭘ⲐⲞⲟ⊜⊝⍜⍥ᴏὈὉὊὋὌὍῸΌ℺ᎾᎤᏅӦӨ𑀞𑀣𑁜𝐎𝑂𝑶𝖮𝗢𝘖𝙾𝛐𝛰𝜊🄀🄁𐐫𐐬ჿᦞꮎ𐓪𐒆𐓂𐓫𐩒𐌏𐐃𐐄৹𝑜𝒐𝗈𝘰𝙤𝚘𝝄𝞸ဇθ௦ഠ๐໐ဝ၀όჾꄲꖴꙨ꧐ꭴꮕㆁⲑᴑὀὁὂὃὄὅὸόᱛ០𐒀စဓ࿀࿁०᧐ⵔѳӧөܘᥝᥲତ൦ဗၜᦅ⸰ꙩ꧞○𓏸𝝾ℴㅇɔʘ 16 | p𝔭𝘱𝙥𝑝𝕡𝖕𝛒𝒑𝝆𝓅𝗉𝞀ϱ𝗽⍴𝞺𝓹𝖯𝛲𝝦𝜬𝒫𝞠𝓟ꓑ𝗣ℙ𝘗𝐏Ⲣ𝔓𝙋ᑭ𝙿𝑃𝚸𝑷𝕻ƥƿϼрҏᵱ⍴ⲣꮲP𝐩PΡ₽℞ƂƤϜϷРҎᏢ₱𝚙ⱀ𝛠𝜚𝝔ᕵ𝞎𝟈𝜌ρpᴩᴘ4 17 | q𝔮գ𝒒𝘲զ𝓆𝙦𝐪𝗊𝑞𝗾𝕢𝖖𝓺𝚚𝖰𝔔𝒬𝙌𝓠𝚀𝑄𝗤ⵕ𝑸𝘘ℚ𝕼ƣȹʠԛQǪǬԚ𝐐ƍႭႳQq9 18 | r𝔯𝒓𝘳𝓇𝙧𝑟𝗿𝕣𝖗𝓻𝚛𝙍ꓣ𝐑𝖱ᖇ𐒴𝑅𝗥𝕽𝓡ℛℜℝ𝑹𝘙ᎡᏒŕŗřȑȓɍгтѓґᴛᴦᵳⲅꭇꭈꭸꮀꮁRŔŖŘƦȐȒɌᒥ⊦ɫΓ𝐫𝗋ʀṚⱤ𝚁ɾᎨᎵꮢГᎱЃҐԻᚱRr4 19 | sƨƾ𐑈ꮪ𐐠ȿ౭𝔰𝘴𝓈𝙨𝐬𝘀ꜱ𝕤𝖘𝓼𝚜ƽ𝒮𝙎ꓢ𝐒𝖲𝑆𝗦𝕊𝕾𝓢𝚂𝔖𝘚ꇘꇙʂЅѕᶊᵴនᏕᏚខჽទ𝒔𝗌𝑠SꮥꭶŚŜŠƈƧȘಽ᱗ᴤ꒚ꕶꙄ𐍃𐒒𝑺ऽธՏ𐒖ႽSs6 20 | tťƫƭțȶʈᵵ𝐭𝗍𝔱𝕥𝓉𝙩𝓽𝚝𝑡𝘁𝒕𝘵𝖙𝒯𝜯𝖳𝗧𐌕𝝩🝨ꓔ𝓣𝞣⟙𝔗𝘛𝙏𝐓𝑇𝕋𝕿𝚃𝛵𝑻𝚻ᵻᵼꮀTŤŦƬƮȚȾΓΤГТгтѓᎢᴛṬ₮ⰉⲦƚߙiᏐߠ⊤⊺⏆⍭꓄꓅「τTt7 21 | uÚũūűưǔǖǘǚ𝑢ǜǹȕȗʉµυሀᥔᥙⳙꭒ𝐮𝔲𝕦ʋ𝙪ꭎ𝚞𝒖𝛖ᴜ𝖚ꞟ𝜐𝗎𝓊𝝊𝓾𝞾𝞄𝘂𝘶ս𝒰𝙐𝐔𝖴𝑈𝗨∪𝕌ᑌ𝖀𝓤𝚄ꓴ𝔘𝑼𝘜ၿሁህﭦﺕﺙᦢᘢᘨᘮUŨŪŬŮŲƯǓǕǗǙǛȖɄᏌ𐓎𐓶ပμԱՍ⋃Uu 22 | vwνѵѷᗄᗐ៴ᴠⅴ𝐯𝔳𝕧𝙫𝑣ט𝒗𝖛𝗏𝛎∨𝜈𝓋𝓿𝘃𝝂𝘷𝞶𝝼𝒱𝓥𝗩𝘝𝐕𝔙𝕍ꓦ٧𝙑𝚅𝑉ᐯ𝑽۷𝖁𝖵⟇⩒⩔⩛ⱌⴸꮙꮩꮴ𐌞𐑄𝚟VѶᏙⅤ⊽⋁🜈𐓢ꮼၿᦢʋဖᎧʊ৩ဎၑၒၓပ७ల೮ত↺꣹ƱѴVv 23 | wϖబ𝐰𝗐ա𝔴𝕨𝓌𝙬𝔀𝚠𝑤𝘄𝒘𝘸𝖜𝕎𝒲𝙒𝓦𝚆ꓪ𝑊𝗪𝑾𝘞Ꮤ𝖂𝐖𝖶𝔚യ⍵ωWŴԜᎳຍய௰𐐶ᗯᘺᙡพɯшఱఒఓධᏇѠԝᴡꮃꮤѡWw 24 | xϰхҳ᙭ᳳⅹ⨰⪤ⲭꭖ𑀋𑀌XΧХҲӼⅩⴴχXxᕁ𝓍𝙭𝐱𝗑⤫𝑥𝘅⤬᙮⨯𝕩𝖝×𝔁𝚡𝔵ᕽ𝒙𝘹𝒳𝜲𝓧𝞦𝝬𐌗𝗫𝘟𝐗𝔛ⵝ𝕏𝙓𝚇ꓫⲬ𝑋𝑿𝚾╳Ꭓ𝖃ᚷ𝛸𐌢𝖷 25 | y𝙮𝐲𝝲𝑦ᶌ𝞬𝖞𝚢ꭚ𝒚𝓎𝗒ყ𝘆ү𝛾𝛄𝔂𝜸𝔶ℽ𝘺ỿ𝜰𝒴𝓨𝗬𝝪𝘠𝞤𝐘𝔜𝕐У𝙔𝚈ⲨᎩ𝑌ꓬ𝒀𝖄𝖸𝛶𝚼ᎽÝŷƴȳɣуўӯӱӳꭹ𐍅𝕪YŶŸƳȲɎΎΥΫϒϔҮὙῨῩῪΎ𐒏ഴʏγYy1 26 | zźżȥʑᴢᶎꮓz𝐳𝚣ᵶ𝓏𝙯𝗓𝑧𝘇𝕫𝖟𝔃𝔷𝒛𝘻𝗭𝚭𝛧𝓩𝘡𝜡𝙕𝞕ꓜ𝝛𝐙ℤℨ𝖅𝚉𝒵𝖹ZŹŻŽƩƵȤΖᏃẐẒẔⱫⲌ𝑍ឧ↊Z7 27 | ñÑᵰసគតឝనప ٓN ̃N ٓ𝒩 ̃𝓝 ٓ𝙽 ̃𝙽 ٓℕ ̃ℕ ٓ𝝢 ̃𝝢 ٓ𝑁 ̃𝑁 ٓ𝗡 ̃𝑵 ٓ𝘕 ̃𝘕 ٓ𝞜 ̃𝞜 ٓΝ ̃𝚗 ٓ𝚗 ̃𝑛 ٓ𝗻 ̃𝗻 ٓꓠ͂ 28 | 0߀𝛰𝖮〇oοоo𝟬𝒪𝜪Oዐ𝓞𝞞𝝤ⵔՕ𝟢𝗢𝟘𝘖ⲞОΟଠ𝟎𝐎০୦𝔒𝕆𝙊O𝙾ꓳ𝑂𐐄𝟶𝑶𝚶𐓂𝕺 29 | 1𝚰𝘭І𝖨𝐥ﺍﺎ𝔩ℐℑⲒ𐌉ℓ𝜤Ɩ𝞘Ι𝚕𝟏1∣اI𝗅𝕀𝙄𝓁𐌠𝐼𝑰ǀӀᛁ𝟭𝕴Iߊl𝛪ⵏ𝝞𝕝𝙡𝓘𝗜𝟙𝑙ןⅠ𝘐١𝒍𝖑│𝐈l۱ꓲ𝙸𝟷𝓵|ⅼ𝗹 30 | 2𝟐𝟮𝟤ꙄƧ𝟸ϨꝚ𝟚ᒿ೭೩ឧᴤꙅ²2 31 | 3Ӡ𝟯𝟑Ꝫ𝟥ꞫⳌƷЗȜ𝟛𝟹౩ɜɝဒ϶зэᱳЭᴈӞᢃᱝ🄄ᴣ³3 32 | 4𝟰𝟒𝟦𝟜𝟺Ꮞ4 33 | 5𝟝𝟓𝟱𝟧Ƽ𝟻ऽ5 34 | 6ϭ𐑆б𐐞ꮾⳓᏮɕꮆϬᧈⳒꮫරᎶ𝟔𝟼🄇6𝟞𝟲𝟨 35 | 7𐓺႗𐒇𝟽🄈7𝟟𝟳𐓒𝟕𝟩 36 | 𐌚Ȣଃȣ𝟴৪੪𝟪𝟠𝟾8Ց8 37 | 9൭ສ୬୭ⳋ𐒛𐒉𐒘੭ᑫᱧⳊ9Ꝯ𝟿𐨣੧୨৭𝟫𝟡𝟗𝟵 38 | ~ܐ⁓∼∽≁⦧⬿῀ 39 | ­¬⁃₋‐‒–-˗̵⁻−∸ⲻ⧿⨪╌╴╶╸╺╼╾﹣ᅳ𑁒‑۔➖Ⲻ 40 | (❨⦅ꉔ꒟ꕿ𐌂❲﴾ 41 | )❩⦆⸩㇁❳₎㇁〕]﴿ 42 | \𐌳⎱ 43 | /ഽ⁒∕╱Ⳇⳇ𝛪〳〴𐒃𐨁៸ʆ⎰⁁⼃⁄ノ㇓⧸丿 44 | +∔⍭⏆✛+𑀓➕᛭ 45 | >≻⍩⩼﹥›ゝゞᑃᑀ˃ᐳ❯ 46 | <ⵦ‹ᑄ˂ᚲᐸ❮ 47 | ǃ﹗!ꜝ‼!ⵑ 48 | .·․‧・﹒・⸱⋅∙ㆍ⬝𑁉٠۰܁܂𐩐ꓸ꘎ 49 | ι,‚﹐،¸ꓹ٫؍ 50 | :;:̣̦։﹕︰⍮∹∶⁚⁖ᱹ᳝𑁊ःઃ܃᠃׃܄᠉꞉᛬ː˸ꓽ 51 | `̒̚''᾽ˋ̛̀́̂̌̏̽̾́̓͐͛̕͘ 52 | =゠﹦𑁓=⫬⫭⩦⥬⋍≗≐≑≒≓≔≕≂≃᐀꓿ 53 | ?﹖१႒᠀ɁʔॽᎮ 54 | [〔꒔⟦⥏[ꁵꄸꆈꉘꋍ 55 | ""〃ˮײ″״‶ ˶ ʺ“”˝‟̋̎̈ -------------------------------------------------------------------------------- /input_test/domains.txt: -------------------------------------------------------------------------------- 1 | example.org 2 | google.com 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-whois 2 | tld 3 | idna 4 | --------------------------------------------------------------------------------