Opening hidden page on myspace

air360

Regular Member
Joined
Apr 15, 2007
Messages
424
Reaction score
197
Does anyone know how I can have a webpage open on a myspace page that is invisible. Think Iframe. but myspace blocks iframes so thats a no go.

anyone know how to do this in flash possibly? I dont need it to be seen or anything ...it can be a 1x1 pixel. I just dont know how to get flash to load a page or anything like that...or if there is another method that can do it...maybe some sort of image or something

referrers or anything at all like that dont matter....It is not cookie stuffing...i just simply need to be able to have the page load on a profile without being seen.
 
would the <img src="enterwebsitehere" height=1 width=1 alt=" "> idea work with this?
 
actually in searching more i dont think it will....as that only fetches the headers...which is why it works for cs. but i need to load the whole page invisibly....is this possible to do?

Myspace allows html comments...but does not allow iframes
 
would the <img src="enterwebsitehere" height=1 width=1 alt=" "> idea work with this?

Img will work, you can also use:

Code:
<object data="URL" type="text/html" height="1" 
width="1"></object><embed src="" units="px" height="1" 
width="1">

X
 
actually in searching more i dont think it will....as that only fetches the headers...which is why it works for cs. but i need to load the whole page invisibly....is this possible to do?

Myspace allows html comments...but does not allow iframes

img src definitely works and it does not just load headers
 
so using img src it will still work? Im not trying to cookie stuff. Im trying to get some impressions on some ads that have to high of a CTR :) so im trying to just use myspace profiles to get some impressions.....so i need it to load all the data in the background....

I didnt think img src would do this....i'll try it though :)
 
i cant get either to work i dont think.

I stuck it in a comment and i had a stat counter on the page that i put in there and it didnt detect a single hit when posted to profiles..

but if i went to the actual page it worked fine (detected the hit).....so i dont know
 
You can do it with flash. Using actionscript you can load the URL. Get flash, learn action script. :D
 
bhnoobz What do you think about this?
Code:
var my_lv:LoadVars = new LoadVars();
my_lv.onLoad = function(success:Boolean) {
    if (success) {
    trace(this.toString());
    } else {
    trace("Error loading/parsing LoadVars.");
    }
};
my_lv.load("http://yoursite.com");
When i run this code using "Test Movie" (CTRL+Enter) everything is OK - counter is increasing. But when i'm trying publish this flash file (F12) i have error:

Why? How to fix it?

regards
 
Thanks! Now is OK :D

Gen One question for You:
How to do something similar for this but with site which has 2 redirect eg:

hxxp://yoursite.com redirect to hxxp://yoursite.com/index.php?t=123456789 redirect to hxxp://yoursite.com/index.php?t=123456789?id=1sd8s4df8

URL parts: 123456789 and 1sd8s4df8 are always different .
I know how to create correctly the first one of them but second is random string.

Counter on hxxp://yoursite.com/index.php?t=123456789?id=1sd8s4df8 is increasing if Referer is "hxxp://yoursite.com/index.php?t=123456789".
There is no Cookie or POST data. "Only" Url and Referer.
Is there any possible to pass it using Flash and AC??
 
Maybe a very stupid question ... You want "visitors" from different IP's right?
OK, so you put that code on a comment and wait that other people load the page, but when someone load the page, the IP that requested the page is IP from visitor or IP from MySpace servers?

thank you
 
should be IP of the visitor, that's the same kind of techniques used to spam top hits ans top votes
 
why do you want to load this page?
If you want to cookie stuff it - thats easy - tho you have to have your own domain that allows .httacess files and mod rewrite.

Ok here is a quick once over on how to cookie stuff myspace.

1. Make a htaccess.txt on your desktop.
2. Add this to it.

Code:
RewriteEngine on
RewriteBase /
RewriteRule ^(anything.jpg)$ http://www.your-web-page-here-with-afilate-link.com
RewriteRule ^(anything2.jpg)$ http://www.your-web-page-here-with-another-afilate-link-.com

Take note of both the (anything.jpg and anything2.jpg) these can be any title you want - also take note of the (http://www.your-web-page-here-with-afilate-link.com) this is where your web page will go and your cookie stuffing affiliate link.

3. Upload this to your web host at the root directory and change the htaccess.txt to just .htaccess

4. To trigger the invisible cookie stuffing to happen - just call your webpage and call your .jpg you added in - in the .htaccess file. IN this case the Anything1 and anything2 .jpg's.

example:
Code:
<img src="http://my-web-page.com/anything.jpg" width="1" height="1" />

make sure their is not a real anything.jpg on your web page (as this will call the real image and not rewrite rule we made in the .httacess files and load the webpage ;) )

5. Log in to myspace and comment on peoples pages - in the comment field add the above image code in. Now when ever someone loads that myspace page with your comment in it - it will tiger the httacess files rewire and load a cookie with out them knowing. If they tried to look at your image they will just see an image not found picture. You can also add this to your own myspace page, web page - or in forums or in anything that allows you to use img tags.

Bada Boom Bada bing - your a cookie stuffing king. Just don't over do it or you will get banded from your affiliate program.

Drop a thanks if this helped you.

Cheers~ :)
 
Damien15 - I am not sure about bumping a youtube video with this method as I never used it to do that, I however don't see why not... as for muting the sound.. their is no need to. The .httacess file just calls a web page when the corresponding .jpg is asked for - however no web page is really loaded ... but it is... - so I don't think their will be any sound. It would make for a good experiment however. Let me know how it goes.

Cheers!
 
Back
Top