mirelkobra Posted February 10, 2016 Report Posted February 10, 2016 (edited) salut Cum pot sa caut un text ex. abcdef intr-un website, nu intr-o pagina, in tot WEBSITE-UL multumesc Edited February 10, 2016 by mirelkobra Quote
Byte-ul Posted February 10, 2016 Report Posted February 10, 2016 Cauti pe google: abcdef site:url.com 2 Quote
dekeeu Posted February 10, 2016 Report Posted February 10, 2016 (edited) De asemenea poti folosi: intext:"text" site:site-ultau.ro intitle:"text" site:site-ultau.ro inurl:"text" site:site-ultau.ro Edited February 10, 2016 by dekeeu Quote
iNick Posted March 29, 2016 Report Posted March 29, 2016 pe codingforums este un tutorial cu o functie inStr function inStr ($needle, $haystack) { $needlechars = strlen($needle); //gets the number of characters in our needle $i = ; for($i=; $i < strlen($haystack); $i++) //creates a loop for the number of characters in our haystack { if(substr($haystack, $i, $needlechars) == $needle) //checks to see if the needle is in this segment of the haystack { return TRUE; //if it is return true } } return FALSE; //if not, return false } iar ca sa folosesti functia if(inStr("CodingForums", "The best site ever is CodingForums")) { echo "CodingForums is in this string"; } probabil cu un loop /while si php curl poti naviga pe tot siteul si interoga orice pagina astfel incat sa gasesti textul cautat de tine. good luck! Quote
Aghast Posted March 29, 2016 Report Posted March 29, 2016 Ca sa cauti un text in tot website-ul iti trebuie un crawler care sa iti descarce website-ul pe PC. Dupa care poti cauta cu Grep. Ai si varianta de Windows pentru Grep, se numeste WinGrep Quote
pr00f Posted March 29, 2016 Report Posted March 29, 2016 https://rstforums.com/forum/topic/98489-wospi-world-wide-web-word-crawler-for-generating-wordlists/ Feel free to fork :). Quote