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.

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

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

 

Oh I see now.

 

I finished creating it, and it works great.

 

I also added this text "Please remember we are not responsible for any damage you cause using this tool, we are simply giving out a security feature to protect yourself against dangerouse websites."

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.

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

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.

No it will not leave your site, and your need to fix the image links because of this..

Archived

This topic is now archived and is closed to further replies.

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