Showing posts with label openload. Show all posts
Showing posts with label openload. Show all posts

25 February 2017

openload.co latest dl link generator php

Last Updated:  15/Mar/2017

<?php
$url='https://openload.co/embed/35-S7_SZ1uU/';
$r=file_get_contents($url);
preg_match('/<span id="(.*?)">(.*?)<\/span>/',$r,$m);
//print_r($m);
if($m[2])
{
$id=trim($m[2]);
$urlcode = [];
$first_char = ord($id[0]);
$key = $first_char - 50;
$maxKey = max(2, $key);
$key = min($maxKey, strlen($id) - 22);
$t=substr($id,$key,20);
$hashMap = array();
$v = str_replace($t, "",$id);
$h = 0;
while($h < strlen($t)){
$f = substr($t,$h,2);
$i = intval($f, 16);
$hashMap[$h / 2] = $i;
$h += 2;
}
$h = 0;
while ($h < strlen($v)){
$B = substr($v,$h,3);
$i = intval($B, 16);
if (($h / 3) % 3 == 0)
{
$i = intval($B, 8);}
$index = ($h / 3) % 10;
$A = $hashMap[$index];
$i = $i ^ 47;
$i = $i ^ $A;
$urlcode[]=chr($i);
$h += 3;
}
$link='https://openload.co/stream/'.implode('',$urlcode);
echo $link;
}
view raw openload_dl.php hosted with ❤ by GitHub