Dynadot โ€” .com Transfer

I need a power tool for domain search.

Spaceship Spaceship
Watch
Impact
115
There are 100.000 NNNNN combinations and there are 17576 LLLL combinations. With such big numbers it is very difficult to search which are registered or not. How do I make this type searches?

Registrars allow you to search 500 names at once but I want to search 10 or 20 times more than this at once and it has to be very fast.

Is there such a tool?
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
.US domains.US domains
download a program called Domain Name Analyzer, that will scan pretty much as many .coms as you like.

It will take a while for DNA to load up though ;), give it time.

You might want to generate a list of the NNNNN.com's first to copy and paste into DNA :P, if you have a website online with php enabled, you could use this... Just create a file named makenumbers.php and place this code in it:
Code:
<html>
<head>
<title>NNNNN.com</title>
</head>
<body>
<?php
for($i=10000;$i<99999;$i++)
{
// Display the domain in this form: NNNNN.com
echo $i.".com<br />";
}
?>
</body>
</html>
Good luck,
Rhett.
 
0
•••
Hi Rhett,

Thank you for the great advice. I will definately try Domain Name Analyzer. I'm playing around with the trial version of Avensen and although I like its simplicity unfortunately it doesn't give accurate results and it is a bit slow.

I do have a hosting with PHP and I immediately tried your idea. It works like charm. The page populated with all the possible NNNNN's appeared in one second. Wow, I thought, that's great.

Recently I created a list of CVCV (consonant , vowel) combinations in MS Excel in took a while and some trial and error. I was thinking maybe there are easier ways with PHP. PHP looks like very interesting.

Cheers,
Erdinc
 
0
•••
PHP:
<?php

$consonants = array('b','c','d','f','g','h','j','k','l','m','n','p','q','r','s','t','v','w','x','y','z');
$vowels = array('a','e','i','o','u');

$output .= '<pre>';
foreach ($consonants as $a)
  foreach ($vowels as $b)
    foreach ($consonants as $c)
      foreach ($vowels as $d)
        $output .= $a . $b . $c . $d . ".com\n";
echo $output . '</pre>';

?>
CVCV ;)
 
1
•••
Thank you Dan,
This all is so absolutely amazing. Your code worked perfectly as well and by just changing one word I could genereate CVCC combinations.

Of course now I see from your code how I can define any characher the way I want. For instance if I wanted to check LLE combinations where E stands for Either N or L then it should be very easy.

This PHP thing is very powerful. I'm still hoping to find at list a little faster tool.

I found one Domain name analizer on download.com but it doesn't work fast enough and is limited to 3000 words. It is the same program shown on this page: http://www.dnaz.net/

Maybe there is another tool with the same name.
 
0
•••
domain name analyser is quite good; or just make a php script to do it!
 
0
•••
Dan said:
PHP:
<?php

$consonants = array('b','c','d','f','g','h','j','k','l','m','n','p','q','r','s','t','v','w','x','y','z');
$vowels = array('a','e','i','o','u');

$output .= '<pre>';
foreach ($consonants as $a)
  foreach ($vowels as $b)
    foreach ($consonants as $c)
      foreach ($vowels as $d)
        $output .= $a . $b . $c . $d . ".com\n";
echo $output . '</pre>';

?>
CVCV ;)

beautiful code Dan! :p
 
0
•••
Dan said:
PHP:
<?php

$consonants = array('b','c','d','f','g','h','j','k','l','m','n','p','q','r','s','t','v','w','x','y','z');
$vowels = array('a','e','i','o','u');

$output .= '<pre>';
foreach ($consonants as $a)
  foreach ($vowels as $b)
    foreach ($consonants as $c)
      foreach ($vowels as $d)
        $output .= $a . $b . $c . $d . ".com\n";
echo $output . '</pre>';

?>
CVCV ;)


Just to make sure nobody wastes there time, I just found out the hard way there's no CVCV.com combos left >:(
 
0
•••
hehe, thanks for the heads up tm. :D what program did you use to check it?
 
0
•••
MarcelProust said:
Hi Rhett,

Thank you for the great advice. I will definately try Domain Name Analyzer. I'm playing around with the trial version of Avensen and although I like its simplicity unfortunately it doesn't give accurate results and it is a bit slow.

I do have a hosting with PHP and I immediately tried your idea. It works like charm. The page populated with all the possible NNNNN's appeared in one second. Wow, I thought, that's great.

Recently I created a list of CVCV (consonant , vowel) combinations in MS Excel in took a while and some trial and error. I was thinking maybe there are easier ways with PHP. PHP looks like very interesting.

Cheers,
Erdinc
No problem MarcelProust,

And thanks for the nicer code Dan ;) hehe

I'm not quite sure why your Domain Name Analyzer is limited to 3,000 domains MarcelProust, mine is unlimited. You can also increase the number of connections allowed in DNA, this would check the domains quicker.

I'll see if I can find another unlimited version for you, maybe they've limited a new release or something.

Rhett.
 
0
•••
Mine was set to 3k as well, I just had to run the tool like 4 times.

Edit > It seems you can change the number in tools > options.

//edit again

AAAAND I just tried to import a file with all the llll.com combos (nearly half a million. 2.6MB in size), I think I crashed the program.
 
Last edited:
0
•••
Does anyone know a similar tool, that can do the same thing as "DNA" , but written in php?
 
0
•••
tm said:
AAAAND I just tried to import a file with all the llll.com combos (nearly half a million. 2.6MB in size), I think I crashed the program.
I thought that as well, but leave it for about 10 minutes, takes a while to load it all up, It does come back to life :)
 
0
•••
Not for me :/

Left it for ~ half hour, nothing happened.

And it's not as if my PC's bad specs... 2 gig ram, amd 4200+ dual core - should handle it in no time :/

It'd be appreciated if you do do that scan can you send me the results?


tm
 
0
•••
Anything same possible for generating all the LLL (AAA to ZZZ) ?
 
0
•••
PHP:
<?php 

$letters = array('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o',  'p','q','r','s','t','u','v','w','x','y','z'); 

$output .= '<pre>'; 
foreach ($letters as $a) 
  foreach ($letters as $b) 
    foreach ($letters as $c) 
        $output .= $a . $b . $c . "\n"; 
echo $output . '</pre>'; 

?>

Note ALL LLL.com's are taken.

Modified Dan's code for 3l3ctr1c
 
0
•••
By running tools like domain name analyzer can I get into trouble by banning by Domain name servers? I have static IP and I have no idea what a proxy is or how to use one.

I downloaded the version 4.0 of domain name analyzer and it doesn't have the 3000 limit but it is not fast enough. I have read that I can increase its speed by changing a number somewhere but this might get me banned from domain name servers.

I'm already having strange problems and none opening pages with my internet connection but maybe it is unrelated.
 
0
•••
If you want to pay a little, Domain Research Tool has pretty powerful proxy support to keep from getting banned. Find someone with a referral link and you can get a pretty good discount.
 
0
•••
MarcelProust said:
By running tools like domain name analyzer can I get into trouble by banning by Domain name servers? I have static IP and I have no idea what a proxy is or how to use one.

I downloaded the version 4.0 of domain name analyzer and it doesn't have the 3000 limit but it is not fast enough. I have read that I can increase its speed by changing a number somewhere but this might get me banned from domain name servers.

I'm already having strange problems and none opening pages with my internet connection but maybe it is unrelated.
Yes they could ban you I suppose. I've checked thousands of domains with no problems so far, but you may not wish to take that risk. I've never used a proxy before, so can't help you there :(
 
0
•••
McDot said:
Does anyone know a similar tool, that can do the same thing as "DNA" , but written in php?

If anyone knows, I would also really appreciate to get a free copy. Thanks in advance if one can help.
 
0
•••
Domain Recover
NameMaxi - Your Domain Has Buyers
  • The sidebar remains visible by scrolling at a speed relative to the pageโ€™s height.
Back