Jump to content

The basics and functions of a....


phpSensei

Recommended Posts

Chances are they grab your original ip (or not) then scramble the ip, or use a random set of numbers and then use url open (data harvesting)>  Or use file_get_contents or include on a page from the other server.

Perhaps there are some high level technologies at work in those, because php is limited to what it can do in that regard.

Link to comment
Share on other sites

curl()... does that about answer your question?

try this nifty function I have in my functions list:

function getpage ($url)
{
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_VERBOSE, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($curl);
// check for errors
if (curl_errno($curl))
{
trigger_error('CURL error: "' . curl_error($curl) . '"', E_USER_WARNING);
$output = false;
}
curl_close($curl);
return $output;
}

 

then just echo the output

Link to comment
Share on other sites

to hide your IP, you use a proxy server..

what this does, is when you enter a URL the proxy opens it and send the data to you.. so the Host server (from the URL) see the proxy connecting.. thus gets the proxies IP not yours.. so if you use cURL on your web site to get data from another site that site see your server's IP not yours) so you could create a web proxy.. Now theirs loads out their but.. remember when your using a proxy your sending all your data to the proxy and the proxy is sending it on to the host server.. not great if you want to hide your personal details...

 

Link to comment
Share on other sites

Why would you spam a forum in the first place.

it's illegal, immoral, and stupid.

Use web dev/app dev for the right purposes not the wrong purposes, and you'll live a happier life.

 

The 3 things people love to do on the internet: Illegal stuff, Immoral stuff, and Being Stupid.

 

I am not going to spam other forums, its for protection.

Link to comment
Share on other sites

It doesnt work

 

http://flash-portal.org/fpslay/codedfp/po/

 

After you click a link on the site it leaves my site.

 

Also, the image links arent there.

 

<?php
$url = $_POST['name'];

$curl = curl_init($url);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_VERBOSE, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($curl);
// check for errors
if (curl_errno($curl))
{
trigger_error('<span class="style5">Sorry, the url you entered was not valid.</span>');
}
curl_close($curl);

echo $output;

?>

 

Then i tried this one, thanks who ever gave it to me. It has the same problems as listed above...

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.