Is there anyone pls help me out I want to add proxies to this script…
The website sms.ultoo.com has blocked all free hosts that uses this script
pls help me out…
[php]<?php
if(isset($_GET[‘uname’])&&isset($_GET[‘pass’])){
$username=$_GET[‘uname’];
$password=$_GET[‘pass’];
$recipitant=‘9400000000’;
$message=urlencode(‘ScriptO…’).rand(0,99999999999);
$counter = 0;
$start = 1;
$agent = “Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.12) Gecko/20050915 Firefox/1.0.7”;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"http://http://sms.ultoo.com/login.php");
curl_setopt($ch, CURLOPT_USERAGENT, $agent);
curl_setopt ($ch, CURLOPT_HTTPHEADER, Array("Content-Type: application/x-www-form-urlencoded","Accept: */*"));
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_REFERER, "http://sms.ultoo.com/login.php");
curl_setopt( $ch, CURLOPT_AUTOREFERER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,"LoginMobile=$username&LoginPassword=$password");
$html=curl_exec($ch);[/php]