[REQUEST] Free Follower Landing Page

blueakoi

Junior Member
Joined
Jul 29, 2013
Messages
144
Reaction score
19
(please move this thread if I posted in wrong section)
Hi guys.. I've been looking for IG landing page like this one here :

http://ig.twebar.com

I've tried to rip it but it won't work since it use php..

Anyone have a file for this LP?
 
Are you sure it works at all ? It looks like it's faking some code-looking mambo jambo to get you to complete a survey page.
 
i think so to .... its faking and a normal landing page.
 
Are you sure it works at all ? It looks like it's faking some code-looking mambo jambo to get you to complete a survey page.

i think so to .... its faking and a normal landing page.

Yeah I want to host that landing page with content lock to an offer.. It's look pretty convincing for my visitors to complete the surveys

when I host that page it turns out some of the images lost and won't show instagram account at all after you entered the username in the box

check it out :
http://joyfulfunlife.xyz/testlp/
 
Yeah I want to host that landing page with content lock to an offer.. It's look pretty convincing for my visitors to complete the surveys

when I host that page it turns out some of the images lost and won't show instagram account at all after you entered the username in the box

The username information comes from their PHP script, which is hosted at (masking link since I'm new around):
ig.twebar.com/get.php

A POST request to that link with parameter "usr" set to the username you need will give you back the HTML with the username info :)
 
would like to know this too.. the original script that makes it process any Insta username typed
 
The username information comes from their PHP script, which is hosted at (masking link since I'm new around):
ig.twebar.com/get.php

A POST request to that link with parameter "usr" set to the username you need will give you back the HTML with the username info :)

I pretty newbie to php things but yeah. Do you know how to edit that POST request to show username info etc etc?
 
I pretty newbie to php things but yeah. Do you know how to edit that POST request to show username info etc etc?

First things first, you can find the link to the survey page / referal in your landing source by searching:

679dfd8bcad5e7733651b1766cc5bd45

Replace the entire link there with your own referal / survey link, as for the PHP scripts, give me a few minutes and I'll make you two proxy scripts to get the "instagram info" functionality in :)
 
I pretty newbie to php things but yeah. Do you know how to edit that POST request to show username info etc etc?

After you got your own survey / referral link in place, drop the following code in a file named get.php:

PHP:
<?php

$post = [
    'usr' => $_POST['usr'],
];

$ch = curl_init('http://ig.twebar.com/get.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$response = curl_exec($ch);
curl_close($ch);
echo $response;

Then, make another file named newfollowers.php and drop the following code inside it:
PHP:
<?php

$post = [
    'usr' => $_POST['usr'],
];

$ch = curl_init('http://ig.twebar.com/newfollowers.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$response = curl_exec($ch);
curl_close($ch);
echo $response;

Make sure both scripts are in the same folder as your index / accessible on:

joyfulfunlife.xyz/testlp/get.php
joyfulfunlife.xyz/testlp/newfollowers.php

your clone should work :)

if you're getting errors you probably need to enable cURL library in your PHP installation
 
After you got your own survey / referral link in place, drop the following code in a file named get.php:

PHP:
<?php

$post = [
    'usr' => $_POST['usr'],
];

$ch = curl_init('http://ig.twebar.com/get.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$response = curl_exec($ch);
curl_close($ch);
echo $response;

Then, make another file named newfollowers.php and drop the following code inside it:
PHP:
<?php

$post = [
    'usr' => $_POST['usr'],
];

$ch = curl_init('http://ig.twebar.com/newfollowers.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$response = curl_exec($ch);
curl_close($ch);
echo $response;

Make sure both scripts are in the same folder as your index / accessible on:

joyfulfunlife.xyz/testlp/get.php
joyfulfunlife.xyz/testlp/newfollowers.php

your clone should work :)

if you're getting errors you probably need to enable cURL library in your PHP installation

Man... your magic is working! I don't know how you figure it out but it's amazing!!

Thanks alot :)
 
Pretty sure this script is originally sold on another forum for 11$. You gotta find it yourselves.
 
Pretty sure this script is originally sold on another forum for 11$. You gotta find it yourselves.

Dude asked for help making his clone work, I helped him :D

That being said, to everyone watching this thread:

- The script is an actual confirmed scam script, it does not generate any followers, all the progress bars and "status" information and everything else is fake and generated in the javascript of the page.

Just putting this out there before one of our fellow BHW members tries to snatch 10k IG followers and gets burned :D
 
Dude asked for help making his clone work, I helped him :D

That being said, to everyone watching this thread:

- The script is an actual confirmed scam script, it does not generate any followers, all the progress bars and "status" information and everything else is fake and generated in the javascript of the page.

Just putting this out there before one of our fellow BHW members tries to snatch 10k IG followers and gets burned :D

Not really pointing fingers but instead of asking it to be ripped publicly maybe he should try asking if anyone knows who can build it or who is the creator of the LP.

And of course, everyone should know this is fake, otherwise they should quit IM. LOL. If anyone is in IM forum and think paypal money generator is real, i'd like to meet him, there's loads of cash to be earned.
 
i am trying for 2 days now to rip it does it work for you bro?
 
Already ripped but I don't know is it allowed to share here.
 
Last edited:
After you got your own survey / referral link in place, drop the following code in a file named get.php:

PHP:
<?php

$post = [
    'usr' => $_POST['usr'],
];

$ch = curl_init('http://ig.twebar.com/get.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$response = curl_exec($ch);
curl_close($ch);
echo $response;

Then, make another file named newfollowers.php and drop the following code inside it:
PHP:
<?php

$post = [
    'usr' => $_POST['usr'],
];

$ch = curl_init('http://ig.twebar.com/newfollowers.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$response = curl_exec($ch);
curl_close($ch);
echo $response;

Make sure both scripts are in the same folder as your index / accessible on:

joyfulfunlife.xyz/testlp/get.php
joyfulfunlife.xyz/testlp/newfollowers.php

your clone should work :)

if you're getting errors you probably need to enable cURL library in your PHP installation


@Darmor wanna help my clone one to? :)
 
Back
Top