Advertisement
rg443

domains-detected - 2015-07-01

Jan 16th, 2017
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var r=new XMLHttpRequest();
  2. //r.open("GET","http://domainbigdata.com/domains-detected/2015-07-01");
  3. r.open("GET",window.location.href);
  4. r.onload=function(){
  5. var m=this.responseText.match(/<a href="(.*?)" id="MainMaster_anext">next &gt;(.*?)<\/a>/)
  6. if (m){
  7. r.open("GET",m[1]);r.send();
  8. console.log(m[1],m[2]);
  9.  
  10. }
  11. var m2=this.responseText.match(/<td><a href="\/(.*)" id="MainMaster_rptDomains_aDomain_\d+" title="show domain details">(.*?)<\/a><\/td>/g);
  12. if(m2) console.log(m2);
  13. }
  14.  
  15. r.send();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement