EEfaq论坛-赚客自留地

 找回密码
 免费注册
查看: 647|回复: 0

Torrent CPA Method

[复制链接]
发表于 2011-8-3 20:19:01 | 显示全部楼层 |阅读模式




    Hey guys,

This is my first share here on MMD. I'm digging myself out of ahuge hole, getting back into IM and figured I may as well share what Ihave in order to get the karma gods on my side

This method made me up to 300/day for the last year or so. I gotsorta lazy with it and haven't been running it for a few months. Istill see some traffic from it though.

Basically, it involves creating fake Keygen files and seeding themon torrent sites. You can use your imagination and put your own twiston it in terms of the type of file it poses as and how you distributeit. When someone downloads and runs your file, the application issimply a window containing your CPA offer, with a banner telling themto complete the offer to generate their key.

    1) Come up with a list of currently popular game and app titles. The more the merrier.

    2) Create a banner for each title, 559x60. You can outsource this easily for super cheap as well. Here's an example:


                               
登录/注册后可看大图


    3)Setup a URL rotator at a a throwaway domain that will route traffic toyour offers. I suggest geo-targetting since this type of traffic comesfrom everywhere and you may as well milk it for all it's worth. I usedIP2Location to do this, and logged every IP to get a better idea ofwhat countries I needed to focus on most. Here's my index.php (you'llneed IP2Locator for this to work for you).

    PHP Code:
    Code:

<?php

        include("IP2Location.inc.php");

        $ip_loc = IP2Location_open("IP-COUNTRY.BIN", IP2LOCATION_STANDARD);

        $record = IP2Location_get_all($ip_loc, $_SERVER['REMOTE_ADDR']);

        $ip = $_SERVER['REMOTE_ADDR'];
        $country = $record->country_short;
        $long = $record->country_long;
        IP2Location_close($ip_loc);


        $data = @file_get_contents("ips.txt");
        $data .= "\n$ip,$country,$long";
        file_put_contents("ips.txt", $data);


        switch ($country)
        {
            case "US":
                $urls[] = "http://www.youraffiliatelink.com/us/1";
                $urls[] = "http://www.youraffiliatelink.com/us/2";
                $urls[] = "http://www.youraffiliatelink.com/us/3";
                break;

            case "CA":
                $urls[] = "http://www.youraffiliatelink.com/ca/1";
                $urls[] = "http://www.youraffiliatelink.com/ca/2";
                break;

            case "UK":
                $urls[] = "http://www.youraffiliatelink.com/uk/1";
                $urls[] = "http://www.youraffiliatelink.com/uk/2";
                break;

            default:
                $urls[] = "http://affiliatelink.com/1";
                $urls[] = "http://affiliatelink.com/2";
                $urls[] = "http://affiliatelink.com/3";
        }

            $index = array_rand($urls);
            $url = $urls[$index];
            header("Location: $url");
    ?>

    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost +"google-analytics.com/ga.JavaScript'type='text/javascript'%3E%3C/script%3E"));
    </script>
    <script type="text/javascript">
    try {
    var pageTracker = _gat._getTracker("UA-346951-7");
    pageTracker._trackPageview();
    } catch(err) {}</script>


3) Using MS Visual Studio, create a .exe file for all of your titlesusing 'TheBrowser' as a template. Point it to your rotator, plug in thetitle's banner, and change the title. Here's the source:


    Code: [url=http://www.anonym.to/?http://www.megaupload.com/?d=YW9JAN34]http://www.megaupload.com/?d=YW9JAN34[/url]

    This is what the app will look like when opened"

                               
登录/注册后可看大图



4) Distribute your files via torrent sites, warez, forums, or howeverelse you see fit. I had a linux server on which I ran rtorrent to seedmy torrents. I also had as pearl script written to mass createtorrents. It would create a ZIP file with all of those torrents, whichI would send to an outsourced worker to upload across many sites forme. Here it is:


    Code:
  Code:

#!/usr/bin/perl -w
    # Get and install this: http://www.createtorrent.com/createtorrent-1.1.4.tar.gz

    use strict;
    my $exe_dir="/root/seedbox/pc-apps/";                    # directory to look for exe's
    my $out_dir="/root/seedbox/torrents/";            # directory to put torrents and some temporary data
    my $share_out="/root/seedbox/files/";            # directory to put .exe, .txt and others.

    my $torre_zip="/root/seedbox/zip/pc-apps-torrents.zip";            # zip file containing torrents for upload
    my $share_zip="/root/seedbox/zip/pc-apps-share.zip";            # zip file containing share data (exe's, readmes)

    my $ann="http://open.tracker.thepirat****.org/announce";    # tracker announce url
    my $comment="Run the keygen, follow instructions, enjoy!";        # torrent comment
    my $num=1;                        # number of torrents for each file

    sub add_to_zip {qx"zip -1g $_[0] $_[1]"}

    unless (-d $share_out) {mkdir $share_out or die "Could not createdirectory to put the shared data in; create it by your own hands($share_out)\n";}
    unless (-d $out_dir) {mkdir $out_dir or die "Could not createdirectory to put the torrents; create it by your own hands($out_dir)\n";}
    if ($share_out eq $out_dir) {die "Please, set either out_dir or share_out to different value\n"}

    opendir e_dir, $exe_dir or die "Could not open dir with required content: $!\n";
    my @filelist = grep(/\.exe|\.EXE/i, readdir e_dir);
    closedir e_dir;

    for my $exe (@filelist) {
     my $occur=0;
     until ($occur eq $num) {
      my $tm=time(); $tm=~s/^.{7}//g; $tm=$tm.int(rand(2313));

      my $file_prefix=$exe; $file_prefix=~s/\.exe$|\.EXE$//g;

      my $f_rea_t="$file_prefix-$tm.txt";my $f_rea="$out_dir$file_prefix/$f_rea_t";
      mkdir $out_dir.$file_prefix;

      qx"cp $exe_dir$exe $out_dir$file_prefix/";

      my $f_tor="$out_dir$file_prefix-$tm.torrent";

      open (f_readme, ">>$f_rea");
      print f_readme "Torrent created for $exe;\nTime: ".localtime().";\n";
      close f_readme;

      qx "createtorrent -a \"$ann\" \"$out_dir$file_prefix/\" \"$f_tor\" -c \"$comment\"";

      if (-d $share_out.$file_prefix) {qx"mv $out_dir$file_prefix/*.txt$share_out$file_prefix/"; qx "rm -rf $out_dir$file_prefix"}
                                 else {qx"mv $out_dir$file_prefix/ $share_out"};

      add_to_zip($torre_zip,"$f_tor");
      add_to_zip($share_zip, "$share_out$file_prefix/*");
      my ($md5, $dump)=split(/ /, qx"md5sum $f_tor");
      print "\t$f_tor: $exe + $f_rea_t: $md5\n";
      $occur++;
     }
    }

    __END__
    By http://getafreelancer.com/users/608999.html


    That's the method in anutshell. Nothing groundbreaking, and I'm sure many here have used avery similar method. You should be able to make a fairly easy $20-100per day by putting your own twists on it.

    Hope some of you find it helpful. Feel free to PM me your thoughts.
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

QQ|联系我们|Archiver|手机版|小黑屋|EEfaq论坛

GMT+8, 2024-5-2 20:41

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表