Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/09/13 in all areas

  1. Salut baieti, Nu prea vin eu cu multe contributii pe forum, dar sper sa va ajute. Aveti urmatoarele fisiere: I. verifier.php (Verifica o lista de conturi - users.txt - si selecteaza conturile "bune") <?php /* ######################################################### # Copyright to Zatarra @ rstforums.com # # Use it only with your own accounts! # ######################################################### */ //Initializing cookies folder $directory=getcwd()."/cookies"; //Checking if cookies folder exists if (file_exists($directory)) { //Eating all the cookies to avoid problems echo shell_exec("rm -rf cookies/*.cookie"); } else { //Creating directory echo shell_exec("mkdir cookies"); } $goodone=0; $badone=0; $var=file('users.txt'); for ($i=0;$i<count($var);$i++) { $fb=explode(" ",trim($var[$i])); $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, "https://login.facebook.com/login.php?m&next=http://m.facebook.com/home.php"); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:19.0) Gecko/20100101 Firefox/19.0"); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_POSTFIELDS, "email=" . @trim($fb[0]) . "&pass=" . @trim($fb[1]) . "&login=Log In"); curl_setopt($curl, CURLOPT_ENCODING, ""); curl_setopt($curl, CURLOPT_COOKIEJAR, "cookies/$i.cookie"); curl_setopt($curl, CURLOPT_COOKIEFILE, "cookies/$i.cookie"); $curlData = curl_exec($curl); $curlData = curl_exec($curl); @preg_match_all('/data-sigil=(.*?)\>\<table/',$curlData,$rasp); if (@$rasp[1][0]) { echo "[RST] Goodone => ".trim($fb[0])." ".trim($fb[1])."\n"; $goodone++; } /* else { echo "[RST] Badone => ".trim($fb[0])." - ".trim($fb[1])."\n"; $badone++; } */ } echo "Am verificat ".count($var)." conturi dintre care $goodone au fost bune\n"; //Eating all the cookies echo shell_exec("rm -rf cookies/*.cookie"); ?> Metoda de folosire: 1. Creati un fisier users.txt care sa aibe in el, pe fiecare linie, un user (email) si o parola sub forma aceasta: email1@yahoo.com pass1 email2@yahoo.com pass2 email3@yahoo.com pass3 2. Executati fisierul creat anterior (verifier.php) astfel: [root@OptimusPrime RST]# php verifier.php [RST] Goodone => email1@yahoo.com pass1 [RST] Goodone => email2@yahoo.com pass2 [RST] Goodone => email3@yahoo.com pass3 Am verificat 3 conturi dintre care 3 au fost bune [root@OptimusPrime RST]# 3. Toate conturile cu Goodone sunt bune si pot fi folosite pentru script-urile viitoare. Tineti cont de urmatorul fapt: un account este "folosibil" dar daca are urmatoarea setare in facebook: II. like.php (Ofera like-uri unei pagini de facebook - sau unui link - cu conturile predefinite in users.txt) <?php /* ######################################################### # Copyright to Zatarra @ rstforums.com # # Use it only with your own accounts! # ######################################################### */ //The link variable is the only one you have to modify!!! Leave the rest as it is in order to work. $link='https://www.facebook.com/rstforums'; //Initializing cookies folder $directory=getcwd()."/cookies"; //Checking if cookies folder exists if (file_exists($directory)) { //Eating all the cookies to avoid problems echo shell_exec("rm -rf ./cookies/*.cookie"); } else { //Creating directory echo shell_exec("mkdir cookies"); } //Initializing users and passwords $user=file('users.txt'); function login($username,$password) { $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, "https://login.facebook.com/login.php?m&next=http://m.facebook.com/home.php"); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:19.0) Gecko/20100101 Firefox/19.0"); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_POSTFIELDS, "email=" . @$username . "&pass=" . @$password . "&login=Log In"); curl_setopt($curl, CURLOPT_ENCODING, ""); curl_setopt($curl, CURLOPT_COOKIEJAR, "cookies/$username.cookie"); curl_setopt($curl, CURLOPT_COOKIEFILE, "cookies/$username.cookie"); $curlData = curl_exec($curl); $curlData = curl_exec($curl); @preg_match_all('/name=\"fb_dtsg\" value=\"(.*?)\"/',$curlData,$dtsg); //echo "dtsg => ".$dtsg[1][0]."\n"; @preg_match_all('/\"id\":\"(.*?)\"\}\,/',$curlData,$userid); //echo "Profile Id => ".$userid[1][0]."\n"; @preg_match_all('/data-sigil=(.*?)\>\<table/',$curlData,$rasp); if (@$rasp[1][0]) { return array(0,0); } else { return array($dtsg[1][0],$userid[1][0]); } } function like($username,$password,$link) { $userdetails=login($username,$password); if ($userdetails[0]!='0') { $data='fb_dtsg='.$userdetails[0].'&href='.$link.'&action=like&nobootload=&iframe_referer=http://rstforums.com/&ref=&__user='.$userdetails[1].'&__a=1&__dyn=7w&__req=1&ttstamp=265816673977571105'; $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, "https://www.facebook.com/plugins/like/connect"); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:19.0) Gecko/20100101 Firefox/19.0"); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_POSTFIELDS, $data); curl_setopt($curl, CURLOPT_ENCODING, ""); curl_setopt($curl, CURLOPT_COOKIEFILE, "cookies/$username.cookie"); $curlData = curl_exec($curl); $curlData = curl_exec($curl); } } for ($i=0;$i<count($user);$i++) { $fb=explode(" ",trim($user[$i])); like($fb[0],$fb[1],$link); like($fb[0],$fb[1],$link); } //Eating all the cookies echo shell_exec("rm -rf cookies/*.cookie"); ?> Metoda de folosire: 1. Dupa cum scrie si in cod, singurul parametru pe care va indic sa-l modificati este variabila $link 2. Inainte de rulare, puteti sa verificati numarul de like-uri la pagina voastra aici: https://graph.facebook.com/?ids=https://www.facebook.com/rstforums 3. Dupa modificarea link-ului rulati fara nici un argument in consola php like.php 4. Dupa ce s-a oprit reverificati numarul de like-uri. III. dislike.php (Ofera dislike-uri unei pagini de facebook - sau unui link - cu conturile predefinite in users.txt) <?php /* ######################################################### # Copyright to Zatarra @ rstforums.com # # Use it only with your own accounts! # ######################################################### */ //The link variable is the only one you have to modify!!! Leave the rest as it is in order to work. $link='https://www.facebook.com/rstforums'; //Initializing cookies folder $directory=getcwd()."/cookies"; //Checking if cookies folder exists if (file_exists($directory)) { //Eating all the cookies to avoid problems echo shell_exec("rm -rf ./cookies/*.cookie"); } else { //Creating directory echo shell_exec("mkdir cookies"); } //Initializing users and passwords $user=file('users.txt'); function login($username,$password) { $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, "https://login.facebook.com/login.php?m&next=http://m.facebook.com/home.php"); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:19.0) Gecko/20100101 Firefox/19.0"); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_POSTFIELDS, "email=" . @$username . "&pass=" . @$password . "&login=Log In"); curl_setopt($curl, CURLOPT_ENCODING, ""); curl_setopt($curl, CURLOPT_COOKIEJAR, "cookies/$username.cookie"); curl_setopt($curl, CURLOPT_COOKIEFILE, "cookies/$username.cookie"); $curlData = curl_exec($curl); $curlData = curl_exec($curl); @preg_match_all('/name=\"fb_dtsg\" value=\"(.*?)\"/',$curlData,$dtsg); //echo "dtsg => ".$dtsg[1][0]."\n"; @preg_match_all('/\"id\":\"(.*?)\"\}\,/',$curlData,$userid); //echo "Profile Id => ".$userid[1][0]."\n"; @preg_match_all('/data-sigil=(.*?)\>\<table/',$curlData,$rasp); if (@$rasp[1][0]) { return array(0,0); } else { return array($dtsg[1][0],$userid[1][0]); } } function like($username,$password,$link) { $userdetails=login($username,$password); if ($userdetails[0]!='0') { $data='fb_dtsg='.$userdetails[0].'&href='.$link.'&action=like&nobootload=&iframe_referer=http://rstforums.com/&ref=&__user='.$userdetails[1].'&__a=1&__dyn=7w&__req=1&ttstamp=265816673977571105'; $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, "https://www.facebook.com/plugins/like/disconnect"); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:19.0) Gecko/20100101 Firefox/19.0"); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_POSTFIELDS, $data); curl_setopt($curl, CURLOPT_ENCODING, ""); curl_setopt($curl, CURLOPT_COOKIEFILE, "cookies/$username.cookie"); $curlData = curl_exec($curl); $curlData = curl_exec($curl); } } for ($i=0;$i<count($user);$i++) { $fb=explode(" ",trim($user[$i])); like($fb[0],$fb[1],$link); like($fb[0],$fb[1],$link); } //Eating all the cookies echo shell_exec("rm -rf cookies/*.cookie"); ?> Metoda de folosire: 1. Exact la fel ca si like.php 2. Partea cu dislike am facut-o pentru pur si simplul fapt ca sunt unii oameni nesimtiti care dupa ce ii ajuti te iau peste picior sau te ignora, in acest caz este foarte simplu si anume rulezi script-ul de dislike IV. commentlike.php (Da like commenturilor cu useri din users.txt) <?php /* ######################################################### # Copyright to Zatarra @ rstforums.com # # Use it only with your own accounts! # ######################################################### */ //The link variable is the only one you have to modify!!! Leave the rest as it is in order to work. $link='https://www.facebook.com/LinkToYourComment'; @preg_match_all('/sts\/([0-9]*?)\?comment/',$link,$postid); if (!@$postid[1][0]) { @preg_match_all('/fbid=([0-9]*?)\&set/',$link,$postid); } @preg_match_all("/comment_id=([0-9]*?)\&offset/",$link,$commentid); @preg_match_all("/a.([0-9]*?).([0-9]*?).([0-9]*?)\&/",$link,$photo); if (@$photo[2][0]) {$length=strlen($photo[2][0]);} else {$length=5;} //Initializing cookies folder $directory=getcwd()."/cookies"; //Checking if cookies folder exists if (file_exists($directory)) { //Eating all the cookies to avoid problems echo shell_exec("rm -rf ./cookies/*.cookie"); } else { //Creating directory echo shell_exec("mkdir cookies"); } //Initializing users and passwords $user=file('users.txt'); function login($username,$password) { $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, "https://login.facebook.com/login.php?m&next=http://m.facebook.com/home.php"); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:19.0) Gecko/20100101 Firefox/19.0"); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_POSTFIELDS, "email=" . @$username . "&pass=" . @$password . "&login=Log In"); curl_setopt($curl, CURLOPT_ENCODING, ""); curl_setopt($curl, CURLOPT_COOKIEJAR, "cookies/$username.cookie"); curl_setopt($curl, CURLOPT_COOKIEFILE, "cookies/$username.cookie"); $curlData = curl_exec($curl); $curlData = curl_exec($curl); @preg_match_all('/name=\"fb_dtsg\" value=\"(.*?)\"/',$curlData,$dtsg); //echo "dtsg => ".$dtsg[1][0]."\n"; @preg_match_all('/\"id\":\"(.*?)\"\}\,/',$curlData,$userid); //echo "Profile Id => ".$userid[1][0]."\n"; @preg_match_all('/data-sigil=(.*?)\>\<table/',$curlData,$rasp); if (@$rasp[1][0]) { return array(0,0); } else { return array($dtsg[1][0],$userid[1][0]); } } function likecomment($username,$password,$fpostid,$fcommentid,$flength) { $userdetails=login($username,$password); if ($userdetails[0]!='0') { if ($flength==5) { $data='comment_id='.$fpostid.'_'.$fcommentid.'&legacy_id='.$fcommentid.'&like_action=true&ft_ent_identifier='.$fpostid.'&source=2&client_id=1375725162708%3A3550641995&ft[tn]=%3ER0]&__user='.$userdetails[1].'&__a=1&__dyn=7n8ahyj35CFUSt2u5FeDKd8q&__req=q&fb_dtsg='.$userdetails[0].'&ttstamp=26581665371788481'; } else { $data='comment_id='.$fpostid.'_'.$fcommentid.'&legacy_id='.$fcommentid.'&like_action=true&ft_ent_identifier='.$fpostid.'&source=2&client_id=1375725162708%3A3550641995&ft[tn]=%3ER0]&ft[type]=44&nctr[_mod]=photos_snowlift&__user='.$userdetails[1].'&__a=1&__dyn=7n8ahyj35CFUSt2u5FeDKd8q&__req=s&fb_dtsg='.$userdetails[0].'&ttstamp=26581665371788481'; } $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, "https://www.facebook.com/ajax/ufi/comment_like.php"); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:19.0) Gecko/20100101 Firefox/19.0"); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_POSTFIELDS, $data); curl_setopt($curl, CURLOPT_ENCODING, ""); curl_setopt($curl, CURLOPT_COOKIEFILE, "cookies/$username.cookie"); $curlData = curl_exec($curl); $curlData = curl_exec($curl); echo $curlData; } } for ($i=0;$i<count($user);$i++) { $fb=explode(" ",trim($user[$i])); likecomment($fb[0],$fb[1],@$postid[1][0],@$commentid[1][0],$length); likecomment($fb[0],$fb[1],@$postid[1][0],@$commentid[1][0],$length); } //Eating all the remain cookies echo shell_exec("rm -rf cookies/*.cookie"); ?> Metoda de folosire: 1. Exact ca la like si dislike doar ca de aceasta data link-ul introdus il luati astfel: Copy la share time 2. Exemplu de copiere al link-ului 3. Atentie, functioneaza doar pentru commenturi nu si posturi pe wall 4. E foarte probabil sa gasiti exceptii. Va rog sa le postati si le voi rezolva Ce va urma in aces thread vor fi urmatoarele: 1. Like la comment - adaugat 2. Like la post pe wall 3. Like la poza 4. Share la un articol Postati orice alta idee in acest thread iar cei care sunt pasionati sau interesati de acest subiect sa ma caute printr-un PM, poate facem o echipa si punem mai multe idei cap la cap. Astept feedback-ul vostru.
    1 point
  2. https://www.dropbox.com/s/7jb4zoguk1x93p4/72521420-Aurul-Spartanilor-Clive-Cussler.pdf https://www.dropbox.com/s/284v6umtgqy4wno/156127018-Clive-Cussler-Urmarirea.pdf https://www.dropbox.com/s/s6l4cu1u3mrslnp/155651913-Comoara-Marelui-Han-Cussler-Clive-Cussler-Dirk.pdf https://www.dropbox.com/s/qxv1kr1ytpzvszi/6646595-dw-Winnicot-Natura-Umana-Ed.pdf?m Pentru format ebook iti iei frumos un converter pdf to ebook si ai rezolvat problema. Tehnica Si Arta Ceasornicarilor Giuvaergiilor Tintutorilor Gravorilor Si Opticienilor Ioan Ratiu Ratz https://www.dropbox.com/s/l5ox4ji5o9vdpkc/125753940-repararea-ceasornicelor-pinkin-pdf.pdf?m https://www.dropbox.com/s/2dio7mf7iddpwwp/33619655-Manualul-ceasornicarului.pdf Astea am gasit din ce ai cerut tu sus, sper sa te ajute.
    1 point
This leaderboard is set to Bucharest/GMT+02:00
×
×
  • Create New...