TheSomeone
Newbie
- Jul 25, 2011
- 22
- 8
Hello. First, I want to thank You for inspiration. This forum helped me discover that black hat SEO is very funny and interesting for me. So, to start posting with You, I want to share very simple, noob friendly method. I'm gray hat for eight yers, but not in SEO - to now, hacking only (exploits writting, bugs research, cracking and another funny things). So you can think about me as SEO newbie.
So, method:
1. Create account on any hosting service - may be free hosting, of course, but should have PHP. (not-noob note: You can also use hosting without PHP scripting, using JS redirect or pure HTML redirect. You can also hack in any server if You want and put there You script, but it's stupid for this target).
2. Create blank file named some.php and upload it on Your hosting.
3. Create ****** link to our some.php file.
4. Put into Your some.php file this content:
Replace XYZ with Your ****** link.
You can also create new ****** link redirecting to another ****** link redirecting to some.php that redirecting to first ****** link that redirects to second ****** link (...) to boost "power" of loop.
Now, spread Your ****** looped link with any black hat method. You can, for example, post project on any freelancer site ("i can't load that page behind 200 redirects! I'll pay 100$ for link of final site") or what You want.
You can also include auto-destruction method on some.php to prevent ****** detection (if they detect something like this):
Have fun.
EDIT: Harder to block by bots and harder to detect code. But You still can take ban if You will not be smart.
So, method:
1. Create account on any hosting service - may be free hosting, of course, but should have PHP. (not-noob note: You can also use hosting without PHP scripting, using JS redirect or pure HTML redirect. You can also hack in any server if You want and put there You script, but it's stupid for this target).
2. Create blank file named some.php and upload it on Your hosting.
3. Create ****** link to our some.php file.
4. Put into Your some.php file this content:
Code:
<?php
header("Location: XYZ");
?>
You can also create new ****** link redirecting to another ****** link redirecting to some.php that redirecting to first ****** link that redirects to second ****** link (...) to boost "power" of loop.
Now, spread Your ****** looped link with any black hat method. You can, for example, post project on any freelancer site ("i can't load that page behind 200 redirects! I'll pay 100$ for link of final site") or what You want.
You can also include auto-destruction method on some.php to prevent ****** detection (if they detect something like this):
Code:
<?php
if(!file_exists("asdf")){
$A = fopen("asdf", "a");
fputs($A, "1000"); // You script will works 1000 times. Change it if You want.
fclose($A);
}
$A = file_get_contents("asdf");
if($A == 0){
unlink("some.php");
exit(0);
}
$A--;
$B = fopen("asdf", "w");
fputs($B, $A);
fclose($B);
header("Location: XYZ");
?>
EDIT: Harder to block by bots and harder to detect code. But You still can take ban if You will not be smart.
Code:
<?php
set_time_limit(0);
if(!file_exists("asdf")){
$A = fopen("asdf", "a");
fputs($A, "1000"); // You script will works 1000 times. Change it if You want.
fclose($A);
}
$A = file_get_contents("asdf");
if($A == 0){
echo file_get_contents("ANYANOTHERLEGALHTML.html");
exit(0);
}
if(isset($_POST['nb'])){
$A--;
$B = fopen("asdf", "w");
fputs($B, $A);
fclose($B);
sleep(10); // 10 seconds, You can change it.
header("Location: XYZ");
}
if(!isset($_POST['nb'])){
echo '<form method = "POST" name = "theform"><input type = "hidden" name = "nb" value = "asdf"></form>
<script language = "JavaScript">
document.theform.submit();
</script>';
}
?>
Last edited: