Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. <?php
  2.  
  3. class dl_linkifier_com extends Download {
  4.  
  5. public function CheckAcc($cookie) {
  6. $data = $this->lib->curl("http://members.linkifier.com/Home/Download", $cookie, "");
  7. if (stristr($data, 'Expiration date:')) {
  8. return [true, "Premium Bitiş Tarihi: " . $this->lib->cut_str($data, 'Expiration date:</label>', '</label>')];
  9. }
  10. return [false, "accinvalid"];
  11. }
  12.  
  13. public function Login($user, $pass) {
  14. $data = $this->lib->curl("http://members.linkifier.com/Home/Login", "__RequestVerificationToken=fJLSTgyiUBylobO4jWlv5K2W8Y9XEdLY_Bs10ssaZ3_7-tN3BOdF4AYDLejsZaFjnpMQIeecTomGS5SPSM8hpzOsEkyzrnNfqasLZA-QUJ81; StatCookie=291caf3e-024b-4432-9e5b-6e4caede7cd4; FirstTimeCookie=db5a9e49-6dbc-4a82-804e-dce020239ffa&FirstTimeVisit=4/29/2017 7:41:17 AM&FirstReferrer=; ASP.NET_SessionId=qkgi5ttkrhbyrlljfdja0se1" , "UserName=$user&Password=$pass&__RequestVerificationToken=UYhNsxN7lHS4T6rG-GwbY_FyyYnLDmj0KixHhNJ0lHGOw-PALF2ycDvaqE9wHj7lqRjXe4V1t5YmeP8UhLSxm3-xIPc7ZWU2ufo_z1kS9oI1");
  15. return "__RequestVerificationToken=fJLSTgyiUBylobO4jWlv5K2W8Y9XEdLY_Bs10ssaZ3_7-tN3BOdF4AYDLejsZaFjnpMQIeecTomGS5SPSM8hpzOsEkyzrnNfqasLZA-QUJ81; StatCookie=291caf3e-024b-4432-9e5b-6e4caede7cd4; FirstTimeCookie=db5a9e49-6dbc-4a82-804e-dce020239ffa&FirstTimeVisit=4/29/2017 7:41:17 AM&FirstReferrer=; ASP.NET_SessionId=qkgi5ttkrhbyrlljfdja0se1; ".$this->lib->GetCookies($data).";";
  16. }
  17.  
  18. public function Leech($url) {
  19. $data = $this->lib->curl("http://members.linkifier.com/Home/Download", $this->lib->cookie, "");
  20. $token = $this->lib->cut_str($data, '__RequestVerificationToken" type="hidden" value="', '"');
  21. $data = $this->lib->curl("http://members.linkifier.com/Home/Download", $this->lib->cookie, "__RequestVerificationToken=$token&txLinks=".$url);
  22.  
  23. $link = $this->lib->cut_str($data,"event.clipboardData.setData('text/plain', '","'");
  24. if($link !=""){
  25. $data = $this->lib->curl($link,$this->lib->cookie,"");
  26. $link = trim($this->redirect);
  27. if ($this->isredirect($data)) if(stristr($link,'dl.ashx') && !stristr($link,'systemmessage'))return $link;
  28. }
  29. return false;
  30. }
  31.  
  32. }
  33.  
  34. /*
  35. * Open Source Project
  36. * Vinaget by ..::[H]::..
  37. * Version: 2.7.0
  38. * Uptobox Download Plugin
  39. * Downloader Class By [FZ]
  40. * Support file password by giaythuytinh176 [26.7.2013][18.9.2013][Fixed]
  41. * Fixed Login: KulGuY [16.01.2015]
  42. * Fixed Login: Enigma [1.2.2016] (jetleech.com)
  43. */
  44. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement