Skip to content

Instantly share code, notes, and snippets.

@PremiumTurk
Created September 5, 2017 12:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PremiumTurk/9b6da89114a186326093b85120c44dc0 to your computer and use it in GitHub Desktop.
Save PremiumTurk/9b6da89114a186326093b85120c44dc0 to your computer and use it in GitHub Desktop.
PHP PREMİUM KULLANICI İD ŞİFRE GİRME
<?php
$uyelikler = array(
"youtube.com" => "ytid|123456",
"filmizle.com" => "fiid|123456",
"dosyaindir.com" => "diid|123456"
);
$url = "https://www.youtube.com/watch?v=fhvVOwHIFsM";
function uyelik($sunucu){
global $uyelikler;
if(strstr($sunucu, "http")){
$sunucu = str_replace("www.", "", $sunucu);
$sunucu = str_replace("https://", "http://", $sunucu);
preg_match_all("#http://(.*?)/(.*?)#", $sunucu, $var);
$varluklar = $var[1][0];
if(!empty($uyelikler[$varluklar])){
$uye = explode("|", $uyelikler[$varluklar]);
$dumping = "--kullaniciadi " . $uye[0] . " --sifre " . $uye[1];
}
}
return $dumping;
}
echo uyelik($url);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment