Advertisement
rg443

hdwallpapers.in -> imgur

Mar 17th, 2013
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function post_imgur(a,callback) {        
  2. var r=new XMLHttpRequest();
  3. r.open("POST","http://176.34.162.148/jabry/imgur1.asp?u=&b=",true);
  4. //r.open("POST","http://notebook1.lan:8000/jabry/imgur1.asp?u=&b=",true);
  5. r.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6. r.onreadystatechange=function(){if (this.readyState==4 && this.status==200) callback&&callback.call(this.responseText); }
  7. r.send("u=" + a.join(","));
  8. }
  9. function get_url(url,callback) {
  10.         var r=new XMLHttpRequest();
  11.         r.open("GET",url,true);
  12.         //r.setRequestHeader("X-Requested-With", "XMLHttpRequest");
  13.         //r.setRequestHeader("Accept-Encoding", "gzip");
  14.         r.onreadystatechange=function(){
  15.        if (this.readyState==4 && this.status==200 && callback) callback.call(this.responseText);
  16.        }
  17.     r.send();      
  18.  
  19. }
  20.  
  21.  
  22. var stack=0;
  23. //for (var i=1;i<=177;i++)get_url("http://www.hdwallpapers.in/1600x1200_normal+4_3-wallpapers-r/page/"+i, function(){
  24. for (var i=1;i<=321;i++)get_url("http://www.hdwallpapers.in/1920x1200_wide-wallpapers-r/page/"+i, function(){
  25. //for (var i=1;i<=635;i++)get_url("http://www.hdwallpapers.in/top_view_wallpapers/page/"+i, function(){
  26.    var s=this.toString();
  27.    var a=document.body.innerHTML.match(/thumbs\/.*?(?=-t1.jpg)/gim).map(function(v){return v.replace("thumbs/","http://www.hdwallpapers.in/walls/")+"-wide.jpg" });
  28.    stack++;
  29.    post_imgur(a,function(){console.log(this.toString(),--stack)});console.log(a.join("\n"));
  30. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement