fork download
  1. <head>
  2. <title>Parse .PW</title>
  3. <meta http-equiv="content-type" content="text/html;charset=utf-8" />
  4. <meta name="generator" content="Geany 1.22" />
  5. </head>
  6.  
  7. <body>
  8. <form action='#' method='post'>
  9. <textarea name='data' rows='10' cols='100' placeholder="put data here (comma separated or new line)"></textarea>
  10. <br>
  11. This will only fetch you domain names along with subdomains. After getting th resut below, copy and paste it in openoffice / excel and filer our the subdomains.<br>
  12. <input type='submit' name='submit' value='Process'>
  13. </form>
  14.  
  15. <?php
  16. if($_POST)
  17. {
  18. $data = preg_split( "/[\r\n]+|,/", trim($_POST['data']) );
  19.  
  20. foreach($data as $get_value)
  21. {
  22.  
  23. preg_match("/@[^\.]+?\.?([-a-zA-Z0-9_]+\.in.net)/",$get_value,$matches[]);
  24.  
  25. }
  26.  
  27. foreach($matches as $val)
  28. {
  29. $alldomains[] = $val[0];
  30. }
  31.  
  32. $domains = array_unique($alldomains);
  33.  
  34. foreach($domains as $domain)
  35. {
  36. echo str_replace('@','',$domain).'<br>';
  37. }
  38.  
  39. }
  40. ?>
  41. </body>
  42. </html>
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
<head>
	<title>Parse .PW</title>
	<meta http-equiv="content-type" content="text/html;charset=utf-8" />
	<meta name="generator" content="Geany 1.22" />
</head>

<body>
<form action='#' method='post'>
<textarea name='data' rows='10' cols='100' placeholder="put data here (comma separated or new line)"></textarea>
<br>
This will only fetch you domain names along with subdomains. After getting th resut below, copy and paste it in openoffice / excel and filer our the subdomains.<br>
<input type='submit' name='submit' value='Process'>
</form>

</body>
</html>