simple it will take a gmail like this.
agsfsgfakgfksgfaksgfkdafsdk@gmail.com
and give you all of the variations of it like this
a.gsfsgfakgfksgfaksgfkdafsdk@gmail.com
a.g.sfsgfakgfksgfaksgfkdafsdk@gmail.com
ag.sfsgfakgfksgfaksgfkdafsdk@gmail.com
ag.sfsgfak.gfks.gfaksgfkdafsdk@gmail.com
you get it?
Results 1 to 4 of 4
- 29 Jan. 2010 06:35am #1
- Age
- 32
- Join Date
- Dec. 2009
- Location
- Under your bed! O_O
- Posts
- 1,710
- Reputation
- 40
- LCash
- 200.00
- Awards
[Request] Email variation creator
Signature removed by Artificial. Too awesome for my eyes to see every time I log on.
Ever wanted to trade our battle pokemon using an emulator?
Learn how to do so here
- 29 Jan. 2010 07:43am #2
- Age
- 30
- Join Date
- Nov. 2009
- Location
- Anaheim, California
- Posts
- 1,065
- Reputation
- 99
- LCash
- 100.00
PHP Code:<?php
$t = explode("@", (isset($_GET['email']) ? $_GET['email'] : "agsfsgfakgfksgfaksgfkdafsdk@gmail.com"));
for($i=1,$size=strlen($t[0]); $i<$size; $i++){
echo substr($t[0], 0, $i) . "." . substr($t[0], $i, strlen($t[0])) . "@{$t[1]}<br />\r\n";
}
?>
http://sitename.com?email=xxxxxx@xxxxx.com
This code does simple one dimension splits, I'll try and do a multi-dimension split.Last edited by Chris; 29 Jan. 2010 at 07:46am.
- 29 Jan. 2010 07:14pm #3
There are an infinite number of variations, brah.
myemail@gmail.com
is also valid as:
my........................email@gmail.com
There can be an infinite number of periods in between any two characters (or an infinite number of periods between each character).
So there is no way to calculate this without outputting enough data to fill your entire hard drive.
- 29 Jan. 2010 09:14pm #4
- Age
- 30
- Join Date
- Nov. 2009
- Location
- Anaheim, California
- Posts
- 1,065
- Reputation
- 99
- LCash
- 100.00