Jump to content

sexbotz

New Members
  • Posts

    5
  • Joined

  • Last visited

sexbotz's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. How does xrumer do it? By the way I'm really glade to be chatting with advanced programmers like myself, happy for a change specially when I live in a city filled with hicks.
  2. I'm trying to do a test study on my own website to advance my skill and understanding.. I understand why it would stop specially if it was put in that position below the form but making the while loop cover the whole form process can't be possible? If it could cover it then wouldn't it just re-loop to the URL page where the form input is and re insert the code over again from the number you put upon the while loop to stop? Can this be done in query? What about force redirects? Like after the processer is finished in the code it would redirect back to the starting URL of the original loop code? Explain Thanx
  3. how do I wrap html form tags in a javascript while loop? Below example isn't working. do I have to do special wrapping when wrapping like the echo in php? If so how? I learn from examples. Basically want this to auto-submit 5 times to my dummy form. <body> <SCRIPT LANGUAGE="Javascript"> while(i<5){ <form action="http://someweb.com" method="post" name="form_confirm" id="form_confirm"> <input class="post" type="text" id="username_reg" name="username" value="somethingname" size="25" maxlength="25" /> <input class="post" type="password" name="password_confirm" value="somethingpass" size="25" maxlength="25" /> <input class="mainoption" type="submit" name="submit" id="submit" value="Save"> </form> document.getElementById("form_confirm").submit(); i++ } </script>
  4. I have my program working but it needs an very bad improvement. How it works, my program turns each line in a .txt file it grabs into an array every time it executes code it loops back to open the .txt file again and turns it into an array now grabbing the second line and so forth. It's a 4 MB file but I came to the conclusion that the reason I'm having such a high server transfer rate up to GB's is because the server has to use a lot more to turn into a new array every time the file() command is used. I came up with an idea after 3 days of thinking that I should use the program to open up the file only once turning it into an area and just use all the arrays without reopening the file and creating a new one. I was thinking of doing this but not sure it will work. <?php $fetch_data = file('http://somesite.com/text.txt'); $x=1; $i=0 while($x<=80) { $data = $fetch_data[$i]; Execute some code $i++ $x++ } ?> Would this work looping each line in the file without creating a new array each time?
  5. Looked on the web couldn't find it or I wasn't typing what should. I'm looking for information on how to write identifier code for your crawler bot so website owners can see that my bot crawled them in there awstats robot/spiders visitors. Currently I'm coming up as Unknown robot (identified by empty user agent string). Anyone know how to do this or where I could find some info on the subject?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.