Tuesday, August 9, 2011

How To Use RSBot/PowerBot

RsBuddy Tutorial

How To Use Epic Bot

Saturday, August 6, 2011

SEO Directory Submitting Bot


Directory submissions has always been, and will always be, a legitimate and low-cost method of getting valuable “one-way” links to your website. The more you get, the more Google will love you and reward you with top 10 rankings. However, just like forum marketing, submitting your website to tons of web directories can put a damper on your hope of making fast money online. With Directory Warrior however, you can easily manage your submissions to more than 200 free (or paid) directories!
# Contains over 200 directories that you can submit your sites to.# The directory list is updated monthly (so all the dead links will be removed!)# Automatically rotate multiple titles, descriptions and keywords to make sure your links seem natural and be able to rank for multiple keywords.# Loads up to 10 browsers at the same time to speed up your submission process.# Saves your previous work and records the sites that you have submitted to – you’ll never lose track of your campaigns!# Add, edit and delete anything in the directory list.# Unlimited user and site profiles perfect for anyone trying to build a niche empire online.# Sort list according to Pagerank, Alexa rankings, alphabetical order, etc – save time by submitting only to directories worth your time.Download Links


http://hotfile.com/dl/104938892/d605359/www.blackhatninjas.com.Directory.Warrior.rar.html


Password:

www.blackhatninjas.com

Friday, August 5, 2011

Simple Facebook Spamming Bot Tutorial [VB.NET]

Here is everything that you will need in your for to start.
1 Button
1 Web Browser
3 Text Box
2 Timer

In button1 we want to put the code below this will open Facebook.


Code:
webBrowser1.Navigate("http://www.facebook.com")

timer1.start()

Now in timer1 we want you to add this code to log you in.


Code:
if webbrowser1.readystate = webbrowser1.readystate.complete then

WebBrowser1.Document.GetElementById("email").SetAttribute("Value", txtbox1.Text)
WebBrowser1.Document.GetElementById("pass").SetAttribute("Value", txtbox2.Text)

Dim Belement As HtmlElementCollection = WebBrowser1.Document.All

For Each webbutton As HtmlElement In Belement

If webbutton.GetAttribute("value") = "Log in" Then

webbutton.InvokeMember("click")

Timer2.start()

timer1.stop()


end if

Ok now it should be logging you i,n now to find out if the page is loaded and then start the spam post.

In timer2 put the code below


Code:
if webbrowser1.readystate = webbrowser1.readystate.complete then

if  WebBrowser1.Document.GetElementById("pagelet_stream_header").inertext.contains("News Feed") then

Dim htmlElements As HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName("textarea")

For Each el As HtmlElement In htmlElements

If el.GetAttribute("name").Equals("xhpc_message") Then

el.SetAttribute("Value", txtbox3.Text)

Wednesday, August 3, 2011

Ubot Studio

Ubot is a revolutionary bot making software! It has a very simple interface which will allow you to start making your web bots within minutes of purchase. I myself have not tried yet tried out this software, but will hopefully in the future. If you are going to purchase this, I recommend that you wait until the newest version comes out which has a ton of new features.

Here are some screenshots!



UBot Studio, in all its simple yet powerful glory.

 

In UBot Studio, you can create bots with multiple scripts.



Entering commands is as easy as dragging them from the toolbox.



Find the command you need quickly with the search feature.



You can create your own user interface to control your bot with.



User interface creation is quick and easy.
 

Control the fine details with easy to use parameter dialogs.



The scripting language in UBot Studio is clear and easy to read and understand.

Video Game Bots

I have also decide to put up another section about video game bots. Please feel free to check it out too!

Video Game Bots

Monetize Section

Hey everyone,
I just put up a new page which will have guides and ebooks on making money online, please check it out if you are interested!

Monetize Section

Tutorial Of The Week Section

Hey everyone,

I have had a change of heart and have decided to only put up the top tutorial of the week in the tutorial section. I apologize if this bothers anyone but you will be able to find all tutorials easily by clicking on the label in the side.

Thanks everyone!

Tutorials

New & Improved Traffic Bot

Tukanas Hits Generator

Tukanas Hits Generator 1.5 has been designed to simulate real online visitors. Check that your server has no problem to count visits, increase your rank and referrals very easily.

Tukanas Hits Generator 1.5 uses local system resources rather than server resources, so as long as your machine is on, you are delivering the traffic. Simply send thousands of unique "fake" visitors to you website.

With our software it will be easy to create hundreds of thousands of high Pagerank inbound links, not just for one of your websites but for unlimited URLs you specify.

You will easily boost your link popularity, position in search engines. Your sales and sign up will be better.

Imagine having thousands of new visitors to your website and affiliate links every day, when you want. Just run our software. You can use Tukanas Hits Generator software to promote any URL you choose. Just add the URLs you want to generate massive traffic and high Pagerank.

Send unlimited hits to any website
Define the total number of hits to send per hour
Define the total number of users to send
Boost your link popularity with new links by the thousands
Post data to a web form, ideal for topsites, click-games and online polls.
No Database required!
Real time statistics
Can choose referrers, user agents and proxies randomly
Easy to install!
Generates constant traffic, 24/7
Specify unlimited URLs, including individual pages
Uses proxies to simulate realistic traffic
Get Linked automatically to other high Pagerank Websites
Generate Targeted Visitors To Unlimited Urls
+++Access to proxy lists

You also run a traffic service or traffic exchange and can't deliver the traffic you promised or even charged your clients for? Our software can not only deliver the traffic you promised, but you can change the referring website to your own or ANY other site to make it even more unique! Send fake visitors to your clients websites!

All the traffic sent by our software is unique and shows up as unique in your website and server stats. You can simulate thousands visitors for your website,traffic exchange, toplists... Also checking that your server has no problem to count visits.


Download: 


The link to download is:
http://www.mediafire.com/?mb1l9mbuovqdhpp

Selenium Tutorial Part 2

Starting up.
Restart the Selenium IDE. In the source tab replace the default HTML with the one from the above file. Set the Base URL to http://delicious.com/. After doing this your IDE should like below.
selenium ide tutorial 2
If you are on a slow internet connection than it may help to slow the test speed.
So what exactly does this test do? Simple:
1. First it opens the delicious home page
2. Then it searches by the keyword ’selenium’
3. Reads the total number of bookmarks from the results page as shown below
Now this may not look like a test for you , but it is just an exercise in using Selenium, you will surely apply it to a good test case. Onwards…
Before running this test make sure that you are logged out of Delicious.
Now run the selenium IDE test. After the test is successfully completed this is what you should see in the log pane.
Is that all?
If this was all there was I wouldn’t be really writing this post. The interesting part comes now – running the same test from PHP. From the file menu select ‘Export Test Case As…’ and as we are using PHP, select ‘PHP – Selenium RC’. Save the file by the name ‘Example.php’.
This is what we will get in the ‘Example.php’ file.
<?php
 
require_once 'PHPUnit/Extensions/SeleniumTestCase.php';
 
class Example extends PHPUnit_Extensions_SeleniumTestCase
{
  function setUp()
  {
    $this->setBrowser("*chrome");
    $this->setBrowserUrl("http://delicious.com/");
  }
 
  function testMyTestCase()
  {
    $this->open("/");
    $this->type("homepage-searchinput", "selenium");
    $this->click("homepage-searchsubmit");
    $this->waitForPageToLoad("30000");
    $this->getText("xpath=/html/body[@id='index']/div
                         [@id='doc3']/div[@id='bd']/div
                         [@id='yui-main']/div[@id='content']/h3/div/em");
  }
}
?>
A short notice.
Before we proceed a few points to consider. Make sure that the file name and the class name are the same, here ‘Example’. Say if you change the class name to ‘Delicious’ make sure that you also change the file name to ‘Delicious.php’.
What the code basically does is it initializes the browser to ‘chrome’ (you can set the browser to your preference by changing to ‘*iexplore’ or ‘*firefox’); sets the baseurl to ‘http://delicious.com/’ and runs the test.
Whats the complex looking line!?
Everything may look fine to you except maybe the last line – ‘$this->getText…’. The function ‘getText’ returns the text found at the element specified in the expression. The complex looking line is an xpath expression to the results element:
You don’t have to rake your brains to find an xpath to an element. An easy way is to use the XPather Firefox addon to get the xpath of any element on a page. After you download and install the addon, restart Firefox, right-click on any element and from the context menu select ‘Show in XPather’. XPather retrieves the xpath to the specified element, which you can than use in your test code.
Note: This site uses ‘delicious’ as an example, so even some minor changes made by them to their site will render the xpath invalid, throwing an ‘element not found’ error in selenium. If this happens please notify me or you can find the new xpath using the Xpather plugin.
Downloading and installing Selenium RC
Selenium RC is a Java based command line server that starts browsers and runs commands you pass from your tests.
1. First make sure you have a Java runtime installed on your machine.
2. Download Selenium RC from here.
3. After extracting the files from the archive copy the ’selenium-server.jar’ file to any directory you feel appropriate. I copied it to my PHP installations bin directory.
4. Start the Selenium RC server from the command-line by issuing the following command:
java -jar selenium-server.jar
This will start the server on port 4444.
5. Now the server is ready to accept test commands from your PHP script. Make sure you keep this server running till you finish testing.
Installing PHPUnit
1. An easy way to install PHPUnit is to use the PEAR installer. The PEAR channel (pear.phpunit.de) is used to distribute PHPUnit so make sure that it is registered with your local PEAR environment:
pear channel-discover pear.phpunit.de
After the channel is registered install PHPUnit:
pear install phpunit/PHPUnit
Actual testing
Now that PHPUnit is installed and the Selenium RC server is up and running, its time to run our test we saved before in our ‘Example.php’ file. Type the following on your command-line:
phpunit Example
This will start the test. The PHPUnit Selenium driver will execute each test command from your file and send it to the Selenium server, which does the job of launching the appropriate browser, opening web pages, and performing various specified actions; and closing the browser after the test completes.
Now the above test does basically nothing important. So we will add some simple conditional statements to the code.
.
.
    $bookmarks = $this->getText("xpath=/html/body[@id='index']/div
                       [@id='doc3']/div[@id='bd']/div
                       [@id='yui-main']/div[@id='content']/h3/div/em");
 
    echo ($bookmarks > 3000)? "On the top" : "Still not there";
  }
}
 
?>
This is what PHPUnit has to say about the above test.
Or we can use an assertion as below, deliberately rigged to fail the test:
.
.
    $bookmarks = $this->getText("xpath=/html/body[@id='index']/div
                       [@id='doc3']/div[@id='bd']/div
                       [@id='yui-main']/div[@id='content']/h3/div/em");
 
    $this->assertGreaterThan(33000, $bookmarks);
 
 
 
 
 
    }
}
 
?>
Now PHPUnit will shout failure:
You can look at more functions to implement in your tests here and here.
This concludes the second part of the tutorial.

Selenium Tutorial Part 1

STEP 1 – installation :
You can download Selenium IDE from this locations.
http://selenium-ide.openqa.org/download.jsp
https://addons.mozilla.org/en-US/firefox/addon/2079
Once the addon is installed make sure you do not forget to restart Firefox.
STEP 2 – running a simple test :
a. Start Selenium IDE  in Firefox: Tools->Selenium IDE. You will see the following popup.
selenium
b. Click on the red record button on the right.
c. Browse to Google.com and enter ’selenium’ in the search box and click enter.
d. Click on the first result, which is that of selenium.openqa.org.
e. Stop the recording by clicking on the record button.
You should see something like below. If you click on the ‘ Source’ tab you can see the test html generated by selenium.
selenium ide
The ‘table’ tab shows the commands recorded by Selenium.
f. Open a new tab in Firefox and click on the Selenium IDE’s play button to run the recorded test.
selenium ide
The IDE should play your recorded test. After the test is complete you should have landed on the selenium page (http://selenium.openqa.org/). The IDE after the test run is shown below. In the ‘Log section’ you can see the various events run by the test. In the table tab you can see that all the rows are green, which means that the test ran successfully.
selenium test run
Now lets add a small assertion to the above test.
a. Click on the blank line below after the last ‘clickAndWait’ command and insert ‘assertTextPresent’ command from the drop down box as shown below. You should see something like this.
This test checks to see if the text ‘Selenium News’ is present in the last rendered page. Run the test again and you should see that the test has run successfully. No try replacing the text with something that is not present on the page, take for example ‘elvis’ and run the test again. Now the test fails and you should get the screen below.
You have just completed your first test run. And it was so simple.
‘assertTextPresent’ is one of the hundreds of commands available for your testing needs. Just browse throught the command drop down to get a feel of what you can you get.
In the next part we will see more advanced features of Selenium.