little program in desktop application needed

Status
Not open for further replies.

antsaoo

Supreme Member
Joined
Oct 1, 2008
Messages
1,288
Reaction score
650
Good day. I would need little application which can do following.

you can enter url into it and it will go into easyurl net and create short url, as easyurl lets you make unlimited out of one. And you can tell the program how many you want. then it copies both redirects it gave easy url gives 2 every time
ie.

Code:
something.easyurl.net
easyurl.net/something

then export the links maybe.

I was also thinking following , load list of url in digg ie digg.com/http://something
and then return the url dig gave for it ie. digg.com/92yq3h

Please post here or pm your quote. don't think these are really hard to make afterall. proxy support would be ok but not needed

Thank you
 
I could sell you a tiny URL like script so you would not need to bot anything. Pm if interested.
 
I could sell you a tiny URL like script so you would not need to bot anything. Pm if interested.

Sorry not what i am looking for , and i still would need make the redirects. though this so i can make them easy and fast. But also anonymously.
 
Code:
http://www.blackhatworld.com/blackhat-seo/member-downloads/101367-get-tiny-url-mass-creator-make-infinite-url-redirects-free-hexalor-healeyv3.html
 
I can create this for you with a quick 2 to 3 hour turn around, please check your PM for my contact details

-tmc
 
I've made this script long time ago..:)
It's saving url's it txt file.
PHP:
<?php
/*SETINGS*/
$n=10;
$url="http://www.google.com";


/*SCRIPT*/
$x=$_GET['x'];
if(!$x){$x=1;}
if($x<=$n){
$url=urlencode($url);
$ch = curl_init();

curl_setopt($ch, CURLOPT_URL,'http://easyurl.net/index.php');

curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13");

curl_setopt($ch, CURLOPT_POST, 1);

curl_setopt($ch, CURLOPT_POSTFIELDS,'pathname=&domain=easyurl.net&mode=shorten&longurl='.$url);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

$site = curl_exec ($ch);

curl_close ($ch);



$link=explode('<table width=100%><tr><td><b>',$site);
$link=explode('<br>',$link[1]);
$link_1=$link[0];
$link=explode('</b>',$link[1]);
$link_2=$link[0];

$fp = fopen('data.txt', 'a');
fwrite($fp, $link_1."::".$link_2."\n");
fclose($fp);

echo '<meta http-equiv="refresh" content="0;url=?x='.++$x.'">';
}
else{echo "DONE";}
?>
reagrds
 
Status
Not open for further replies.
This thread has been auto closed due to the forum's thread age policy. Read more.
Back
Top