My Journey to $50/day!

asimmogal

BANNED
Joined
Dec 22, 2010
Messages
25
Reaction score
2
[Method Step by Step] 50$/day only thanks to BHW !
Hi dear BHW members,

As I was a complete noob, I read many posts on BHW to make some money and finally got success using this method.


Here is the way to get 50$ (or more) / day only thanks to BHW.


This is actually a mix of several tips/scripts shared by YOU on BHW, with just a few changes I made. So, thank you!


The goal is to show an iframed CPA offers on a content locker, to protect it with a spoofing referer script, to stimulate people to fill the CPA offer thanks to a fake captcha random generator.
Then we'll send trafic to this website, which will be located on an anonymous and offshore hosting.


All is possible thanks to Crazyflx for his content locker, JohnsonDaniel for his spoofing referer script and Thizzladen for the fake captcha random generator.




1) Let's set up a content locker thanks to Crazyflx


Crazyflx shared about 1 year ago a very nice free Content Gateway Geotarget with Rotate Offers and Session Cookies. You can find it here:
http://www.blackhatworld.com/blackha...tructions.html


Set up this content locker thanks to his instructions but do NOT do anything about CPA Redirector. We will use a newer et more secure script to spoof the referer.


Just to summarize:
- Download the files on the Crazyflx thread.
- Iframe your CPA offer with cakeslice.
- Add this code to the <head> of your website:
Code:
<script src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js" type="text/javascript"></script>
<script language="JavaScript" src="http://j.maxmind.com/app/country.js"></script>
<SCRIPT LANGUAGE="JavaScript" SRC="/gatewaysettings.js"></SCRIPT>
<link rel="stylesheet" type="text/css" href="/gatewaystyle.css" />
- Now, change your body tag to:
Code:
<body onscroll="scrolltop();">
- Finally, add this before </body>
Code:
<script language="javascript">document.write(ad);</script>
2) We'll now increase the level of protection by spoofing the referer thanks to JohnsonDaniel


http://www.blackhatworld.com/blackha...er-script.html


This script is, in my opinion, the most secure one currently.
The idea is to get a redirection by an other website.
Your black hat website with the iframe offer ---> handler.com ---> your white hat website the AM will see as referer. You have to own these 3 websites because you'll need to edit the codes.


So there is absolutly no link between your WH and your BH website. Moreover, there is absolutly nothing in the code of your WH which looks suspicious.


Let's summarize the steps:
- Create an index.php file with this code
Code:
<?php
// Extract URI minus http://handlerdomain.com/
$full_url = urldecode($_SERVER['REQUEST_URI']);
// Extract urls we need
$l = strlen($full_url);
$p_referer = strpos ($full_url, 'referer=');
$p_dest_2 = $p_referer - 1;
$p_referer = strpos ($full_url, '=',$p_referer) + 1;
$url_referer = substr ($full_url , $p_referer);
$p_dest_1 = strpos ($full_url, '=') + 1;
$l = $p_dest_2 - $p_dest_1;
$url_dest = substr ($full_url , $p_dest_1, $l);


// Create self-posting form.
if ($url_referer != '') {
echo '<html><head><META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"></head><body>
<form action="'.urldecode($url_referer).'" method="post" id="myform">
<input type="hidden" name="track_web" value="'.urldecode($url_dest).'">
</form><script language="JavaScript"> document.getElementById(\'myform\').submit();</script></body></html>';
} else {
echo 'Tracking website';
}
?>
- Add this file on the root of your handler.com website, which exists just for the redirection.


- Now, add this code to your white hat template:
Code:
<?php
if ($_POST['track_web'] != NULL) {
$offer = urldecode($_POST['track_web']);
$p1 = strpos ($offer, '?') + 1;
$url_par = substr ($offer , $p1);
$paryval = split ('&', $url_par);
$p = array();
foreach ($paryval as $value) {
$p[] = split ('=',$value);
}
echo'<html><head><META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"></head><body><form action="'.$offer.'" method="get" id="myform">';
foreach ($p as $value) {
echo '<input type="hidden" name="'.$value[0].'" value="'.$value[1].'">';
}
echo '</form><script language="JavaScript"> document.getElementById(\'myform\').submit();</script></body></html>';
}
?>
I just changed the name and the phrase compared to JohnsonDaniel script.




Now you can build your fake referer URL like this:
Code:
http://handler.com/?url=DestUrlIncludingParameters&referer=FakeRefUrl
Now, let's go back to the CPA offer. You framed it thanks to cakeslice, remember?


Take the code and replace the URL with your fake referer url:
Code:
<div style="overflow: hidden; width: 251px; height: 117px; position: relative;" id="i_div">
<iframe name="i_frame" src="http://handler.com/?url=DestUrlIncludingParameters&referer=FakeRefUrl"
style="border: 0pt none ; left: -857px; top: -31px; position: absolute; width: 1680px; height: 955px;" scrolling="no"></iframe></div>
Finally, find the code in the gatewaysettings.js file you downloaded on the Crazyflx thread and change it like this:
Code:
function us()
{ads =
[
'<div id="gatewayDimmer"></div><div id="gatewaydiv"><ul id="OfferList">Your cakeslice code</ul></div>',
'THIS WOULD BE OFFER TWO IF YOU HAVE ONE, OTHERWISE, DELETE THIS LINE'
]
ad = ads[Math.floor(Math.random()*ads.length)]
}
Now, your content locker with the iframed CPA offer and spoofed referer is ready .




3) Now let's stimulate people to fill your CPA offer thanks to Thizzladen


This is not a compulsory part of the method. I don't encourage you to do that as this is illegal.


Thizzladen made a simple but very black hat script. Indeed this one generates a random zip code from a text file. And so you can use it just above your iframed CPA offer and make it looks like a captcha.
So your visitors will think this is just a captcha and your AM will receive an existant zip code (it can be something else than a zip code).




If you want to do that, your gatewaysettings.js file looks like:
Code:
function us()
{ads =
[
'<div id="gatewayDimmer"></div><div id="gatewaydiv"><ul id="OfferList">Thizzladen Script Your cakeslice code</ul></div>',
'THIS WOULD BE OFFER TWO IF YOU HAVE ONE, OTHERWISE, DELETE THIS LINE'
]
ad = ads[Math.floor(Math.random()*ads.length)]
}
You can change a little bit his script especially for the form. For exemple line 4 could become something like this:
Code:
echo '<font size="5" color="red" face="calibri" weight:"bold">';
It looks more like a captcha as it is bigger and red.




4) What about hosting?


You now have at least 3 websites: 1 white hat, 1 handler for the redirection and one black hat.
It could be a good idea to host both your black hat and your handler.com websites on an offshore and anonymous company.


One more time, you can find many of them on BHW.




5) Let's send trafic to the Black Hat website


Now everything is ready, let's drive trafic to the black hat website with the content locker.


There are just so many ways thanks to BHW ...


And if you need advices about CPA companies, you can start by reading all the "Please Read" threads here:
http://www.blackhatworld.com/blackhat-seo/f50-cpa/


Enjoy! And don't forget to thank Crazyflx for his content locker, JohnsonDaniel for his spoofing referer script and Thizzladen for the fake captcha random generator.

Appreciate thanks from you!​
 
shame on you... not fair.

I whould -rep too if I could
 
Back
Top