katran1290


SUBMITTED BY: katran1290

DATE: July 11, 2021, 6:32 a.m.

FORMAT: Text only

SIZE: 9.3 kB

HITS: 457

  1. My Fix on the Easiest Black Hat CPA Method Ever
  2. This method is very simple and very unethical/black hat. If you’re not okay with that you shouldn’t be
  3. here in the first place!
  4. The first thing that I need to point out is that, with all black hat leads, you will need to cover your tracks.
  5. The best method out there is to have legit and converting campaigns and add these black hat leads in at
  6. less than 15% of total leads.
  7. The second option is to keep it small. Pure black hat leads are fine as long as you keep it to less than $40
  8. a day per network, this will keep you from being manually reviewed. In addition to this you will want to
  9. change the offer that you promote every couple of days to insure you don’t earn enough over the
  10. month from a particular advertiser to warrant them looking at your leads.
  11. Both of these reasons are because these leads will NOT convert for the advertiser and are very black hat.
  12. In addition you need to water down your numbers with junk traffic. If you’re converting at 40% that
  13. looks pretty fishy. You can purchase junk traffic from places like traffic holder or you can go poor man
  14. style and simply submit your redirect to social bookmarking sites (onlywire.com is great for this) and get
  15. some real but non converting traffic mixed in.
  16. With that being said let us move on to this method and get you earning some serious $$ quickly and
  17. easily.
  18. This method may have been seen by many of you in the past, however it has been unworking/fixed for
  19. some months now until I added a combination of JS, HTML and sneaky thinking to get this working
  20. again.
  21. The basic premise is to use Amazon.com’s mTurk system where you pay random people a few cents for
  22. a few minutes of their time. So you’ve heard of it, well the twist – and very black hat aspect – that is
  23. being added here is I am making it impossible for the user to ‘submit’ this task (called HIT) that you have
  24. created. Therefore you are getting a few minutes of a real person’s time to complete a CPA offer for you
  25. and are in face never paying out a cent. This means that $1 in funds can literally get you an unlimited
  26. number of $1-$5 one page CPA submits!
  27. The first thing you need to do is to head to http://www.mturk.com and sign up as a requester. Use
  28. bogus details if you like, it doesn’t matter. If you are outside of the US simply Google something such as
  29. “New York Shopping” and use a random address for a shop you pull up, there is no sort of checking or
  30. verification involved.
  31. Next thing you want to do is to get your offer ready. What you will need is an offer where the user can
  32. complete it for free. E-mail/Zip submits work for this but I personally recommend using Biz Opp free
  33. offers. The traditional one will be one page full of info that you get paid after even though the user
  34. doesn’t pay any money.
  35. Once you have chosen the proper offer and got the URL with your affiliate code in it you are going to
  36. want to create a redirect. This is to disguise the origin of your lead as well as to make it look more
  37. legitimate to your soon to be lead.
  38. In order to do this you are going to want to create a new notepad document and copy+paste the
  39. following in to it:
  40. <head>
  41. <meta HTTP-EQUIV="REFRESH" content="0; url=http://www.youraffiliatelink.com/whatever">
  42. </head>
  43. Of course you are going to need to replace the URL with the URL for the offer you have chosen. Save this
  44. document and then right click on it and rename it to “index.html”. This is to use a domain for this, if you
  45. have a domain but are using it for something else then name it something such as “1.html” and upload it
  46. and instead of promoting “yoursite.com” you will promote “yoursite.com/1.html”. It works just as well if
  47. you don’t want to drop money on a domain. You will now upload this to your server in order to tie it to a
  48. domain. The poor man’s option is to use free web hosting and a service such as tinyurl.com to host and
  49. promote your redirect.
  50. We’re now going to head over to Mturk and create a new HIT with your requester account. It is
  51. important that you follow what is about to come EXACTLY. If you don’t it will not work and people will
  52. submit your HITs which will cost you money. Because of this I recommend that you read through the
  53. next part and understand exactly what you need to do before you come back and create the HIT.
  54. Start by creating a HIT from the “Blank template”.
  55. On the first page use a catchy title. I usually use one such as “Test My New Website’s Data Collection
  56. Functionality”. With a description such as “Very fast HIT – 1 Minute or Less!”. Go ahead and change the
  57. “HIT Expiration” to 100 days, no sense in ending it early if it keeps earning for ya! Most CPA offers
  58. require US traffic, because of this be such to change the requirement to a location of United States. I
  59. recommend paying about $0.80. This is because it’s a good rate, or so it seems, to the person and yet
  60. with Mturk’s fee still comes out to less than $1 (the amount Amazon requires you to fund to your
  61. account to get started).
  62. Now go to “Design Layout”. This next part is very important and must be done exactly in the correct
  63. fashion. Go to “Edit HTML Source”. Be sure NOT to leave the HTML mode for the duration or it will close
  64. out with a </div> tag and ruin the code that you will be inserting.
  65. The following is the exact code of my last campaign, with only the URL changed for my protection. Copy
  66. and paste all of it then I will tell you what to change:
  67. <script language="javascript">
  68. <!--
  69. var state = 'none';
  70. function showhide(layer_ref) {
  71. if (state == 'block') {
  72. state = 'none';
  73. }
  74. else {
  75. state = 'block';
  76. }
  77. if (document.all) { //IS IE 4 or 5 (or 6 beta)
  78. eval( "document.all." + layer_ref + ".style.display = state");
  79. }
  80. if (document.layers) { //IS NETSCAPE 4 or below
  81. document.layers[layer_ref].display = state;
  82. }
  83. if (document.getElementById &&!document.all) {
  84. hza = document.getElementById(layer_ref);
  85. hza.style.display = state;
  86. }
  87. }
  88. //-->
  89. </script>
  90. <p><style type="text/css">
  91. a {
  92. outline: none;
  93. }
  94. a img {
  95. border:none;
  96. }
  97. </style> <script type="text/javascript">
  98. function toggleAlert() {
  99. toggleDisabled(document.getElementById("content"));
  100. }
  101. function toggleDisabled(el) {
  102. try {
  103. el.disabled = el.disabled ? false : true;
  104. }
  105. catch(E){
  106. }
  107. if (el.childNodes && el.childNodes.length > 0) {
  108. for (var x = 0; x < el.childNodes.length; x++) {
  109. toggleDisabled(el.childNodes[x]);
  110. }
  111. }
  112. }
  113. </script></p>
  114. <h1>Test Website's Data Check Feature</h1>
  115. <p>This HIT is to test a data check feature on our new website. Please use real info as this is to detect:</p>
  116. <p>1. Fake e-mail addresses, phone numbers, addresses, etc. Check against database to valdiate.</p>
  117. <p>2. Gibbirish names. Check algorithm to detect unbelievable names.</p>
  118. <p>&nbsp;</p>
  119. <p>Please visit <b>affiliateurl.com/1.html</b></p>
  120. <p>&nbsp;</p>
  121. <p>Complete the data input portion at the bottom of the page.</p>
  122. <p>&nbsp;</p>
  123. <p>On the next page look for the second paragraph which begins with <span class="main-text">&quot;<b>Now, I was not trying to
  124. ******</b>&quot;.</span></p>
  125. <p>&nbsp;</p>
  126. <p><span class="main-text">Where the stars appear please place this word in the box below and hit Submit.</span></p>
  127. <p>&nbsp;</p>
  128. <p>&nbsp;</p>
  129. <p><input type="text" name="Q2" id="Q2" size="20" /></p>
  130. <p><a href="http://mturk.com/12error.html"><img src="http://www.watchdeaonline.info/submit.gif" alt="" /></a></p>
  131. <p>&nbsp;</p>
  132. <div id="div1" style="display: none;">
  133. <div id="content">
  134. <table>
  135. <tbody>
  136. <tr>
  137. <td><input type="text" name="foo" /></td>
  138. </tr>
  139. <tr>
  140. <td><select name="bar">
  141. <option>a</option>
  142. <option>b</option>
  143. <option>c</option>
  144. </select></td>
  145. </tr>
  146. </tbody>
  147. </table>
  148. </div>
  149. <input type="checkbox" onclick="toggleAlert()" value="toggleAlert()" />
  150. Now, The only part you need to change is found:
  151. <p>Please visit <b>affiliateurl.com/1.html</b></p>
  152. <p>&nbsp;</p>
  153. <p>Complete the data input portion at the bottom of the page.</p>
  154. <p>&nbsp;</p>
  155. <p>On the next page look for the second paragraph which begins with <span class="main-text">&quot;<b>Now, I was not trying to
  156. ******</b>&quot;.</span></p>
  157. First of all, you will obviously want to change “affiliateurl.com/1.html” to the URL that is your redirect.
  158. You will notice that I leave out the http://www. This is to make it not a clickable link so that the user will
  159. have to copy and paste it into a new window further hiding your referrer.
  160. The second part is what the user is looking for before he or she submits this HIT, or tries to, for payment.
  161. Although you can use anything you want it will take a lot longer to get flagged if you actually go through
  162. the offer one time yourself, with fake info of course, and find a sentence on the second page. This is
  163. because it will simply appear as an error on Mturks part when people try to submit and they will forget
  164. about it and move on, having only lost a couple of minutes of their lives.
  165. Once you have replaced these values it is very important that you go about moving to the next stop in a
  166. particular way. Normally you would hit Preview and Finish but we’re going to do this differently to avoid
  167. that </div> tag from closing out at the end and adding another, and real, submit button.

comments powered by Disqus