Facebook
From Baby Bushbaby, 1 Year ago, written in PHP.
This paste is a reply to Re: Untitled from Sludgy Echidna - go back
Embed
Viewing differences between Re: Untitled and Re: Re: Untitled
set_time_limit(0);
$url = 'https://zaq2.pl/video/izdii';
$response = file_get_contents($url, false, stream_context_create(['ssl' => ['verify_peer' => false, 'verify_peer_name' => false]]));
preg_match('#data-video-url="(.*?)".*data-file-name="(.*?)".*data-file-extension="(.*?)"#s', $response, $match);
$path = './download/'.$match[2].'.'.$match[3];

if($match !== null && file_exists($path) === false)
{
 echo 'wget --referer="'.$url.'" -c "'.$match[1].'" -O "'.$path.'"';
}
?>

Replies to Re: Re: Untitled rss

Title Name Language When
Re: Re: Re: Untitled Thundering Mockingbird php 1 Year ago.