Here's a very simple version of a PopCash Bot HoneyPot script:

<?php
function getVar($var)
{
    return isset($_GET[$var]) ? $_GET[$var] : false;
}

$params = sprintf('siteid=%s&category=%s', getVar('siteid'), getVar('category'));

?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Win an iPhone</title>
    <style>
        a {
            color:white;
        }
    </style>
</head>
<body>
<?php
printf('<a href="http://yourid.voluumtrk.com/1d2a1b0a-5223-4fb1-8647-d50b9bf1972f?%s">YES</a>', $params);
?>

Although it works for PopCash because of the tracking macros, you can easily change it to fit your needs for PopCash, Propeller Ads, or any other traffic source

Basically what it does it takes the parameters siteid and category from the URL and puts it in a new PopCash campaign link in Voluum.

As you can see the link is made invisible using CSS:

        a {
            color:white;
        }

After you buy some traffic to it it will capture traffic in your HoneyPot campaign and then you open the report to display the siteid parameters.

Export it to CSV and use it as a blacklist of a PopCash campaign.

It's best to put like $20 or $50 total with a very low bid, I did a $0.001 bid in your PopCash HoneyPot campaign before you are buying traffic to your real lander. Don't put the $20 at once, just add $1 every time and then find the siteids and repeat until you reached $20 or $50. This way it costs you some money upfront but you will save a lot later when you are buying the traffic to your money page.