Kawiesh

Serials Bypass

Nov 21st, 2020 (edited)
1,011
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let a= location.href,
  2.     b= 'http://newsiqra.com/get.php?cid=',
  3.     c= a.split('/');
  4.     z= ['&type=snon','&type=voot','&type=star','&type=elm'],
  5.     y= ['sonyliv.com','voot.com','hotstar.com','zee5.com'];
  6.  
  7. if (a.includes(y[0]) && c.length==6) {
  8. let d= c[5],
  9.     e= d.match(/\d+/);
  10.     location= b+e+z[0];
  11. }
  12. else if (a.includes(y[1]) && c.length==6) {
  13. let d= c[5],
  14.     e= d.match(/\d+/);
  15.     location= b+e+z[1];
  16. }
  17. else if (a.includes(y[2]) && c.length==9) {
  18. let d= c[8],
  19.     e= d.match(/\d+/);
  20.     location= b+e+z[2];
  21. }
  22. else if (a.includes(y[3]) && c.length==9) {
  23. let d= c[8],
  24.     location= b+d+z[3];
  25. }
  26. else if (a.includes(y[3]) && c.length==10) {
  27. let d= c[9],
  28.     location= b+d+z[3];
  29. }
  30. else alert('Error: not on a supported video page');
  31.  
  32.  
  33.  
  34. .......
  35.  
  36.  
  37.  
  38. let a= document.querySelector('.filmicerik a'),
  39.     b= /\d{6,}/gi,
  40.     c= ['snon'],
  41.     d= a.href.match(b),
  42.     e= `http://newsiqra.com/get.php?cid=${d}&type=${c[0]}`;
  43.  
  44. alert(e);
  45.  
  46.  
  47. ......
  48.  
  49. if (location.href.includes('hitmovies')){
  50. let d= document.querySelector('.aio-button-center a');
  51. if (d) {
  52. location= d.href;}
  53. else{
  54. let z= document.querySelector('center>a');
  55.   location= z.href;
  56.   }
  57. }
  58. if (location.href.includes('filmyhit')){
  59. let c= document.querySelector('#pk').href;
  60. location= c;}
  61.  
  62.  
  63. .......
  64.  
  65.  
  66. let e= location.href;
  67. if (e.includes('newsiqra.com')) {
  68. let z = document.querySelector('iframe').src;
  69. document.body.style.backgroundColor = 'darkgray';
  70. document.body.innerHTML += `
  71. <br><br>
  72. <span style= 'font-size: 50px;'>
  73. <a href='${z}'>Direct Link</a>
  74. </span>`;
  75. }
  76. let a = 'http://newsiqra.com/get.php?cid=',
  77. b = /(?<=\/)\w{3,4}(?=\.php)/gi,
  78. c = document.querySelector('.filmicerik a'),
  79. d = decodeURIComponent(c.href),
  80. f = d.match(b),
  81. g = d.split('?cid=')[1].toString(),
  82. h= '&type=',
  83. i= ['vkspeed','snon'];
  84. if (d.includes('&type')&&f==null)  location=a+g;
  85. if(!d.includes('&type')&&f==null) location=a+g+h+i[0];
  86. if (!d.includes('&type')&&f=='sno') location=a+g+h+i[1];
  87. if (!d.includes('&type')&&f!=null&&f!='sno') location=a+g+h+f;
Add Comment
Please, Sign In to add comment