Use a sites exploit?

champbronc2

Junior Member
Joined
Jan 17, 2010
Messages
167
Reaction score
62
Ok, so I found this website that receives a significant amount of quality traffic daily. I have a way to insert any html I want onto the homepage using standard site functions (I didn't have to do any hacking or something like that)

Would it be a good idea to insert a code to make it redirect to one of my CPA offers or websites that are in the same niche? I have CPA offers that are in the same small, yet popular niche.

I tried to use a popup script but I cannot inject any working javascript. Would there be any legal issues with what I am doing? Technically the website is allowing it and I didn't "hack" anything.

Thanks for any input.
 
XSS injection? Bad idea if you don't want to have legal problems...
 
If you are doing it legally then why not put an iframe (1x1) that goes to a site that you own and have a pop up on that page.

No one will see your actual landing page but the pop up box will appear over the site the person is visiting and look like its coming from there.

Not 100% sure, but it sounds right in my head :)
 
If you are doing it legally then why not put an iframe (1x1) that goes to a site that you own and have a pop up on that page.

No one will see your actual landing page but the pop up box will appear over the site the person is visiting and look like its coming from there.

Not 100% sure, but it sounds right in my head :)

I'll try that out, thanks! But wait.. how to get a pop up that wouldn't be blocked by web browsers?

A popup is what I wanted to do the whole time since it doesn't draw as much attention.
 
Just cause the site is "open" as you say, doesn't mean you have the "legal" right to access it.

If your walking down the sidewalk and a house has it's doors wide open, you still get charged with breaking and entering, if you enter without permission.. :)

Just Sayin' ..... be careful.
 
Unblockable Popup Code:

Step 1: Select how often you wish the drop-in box to appear. The choices are:
1) Every time page loads
2) Once per browser session [explain]
3) Once out of every x times page loads (controlled frequency) [explain]

Having made your choice, follow the below steps to copy the corresponding code to your site. Make sure you've made your selection above first, as the code differs depending on it.

Step 2: Add the below script to the HEAD section of your page:
-------------------------------

<script language="JavaScript1.2">

// Drop-in content box- By Dynamic Drive
// For full source code and more DHTML scripts, visit www-dynamicdrive-com
// This credit MUST stay intact for use

var ie=document.all
var dom=document.getElementById
var ns4=document.layers
var calunits=document.layers? "" : "px"

var bouncelimit=32 //(must be divisible by 8)
var direction="up"

function initbox(){
if (!dom&&!ie&&!ns4)
return
crossobj=(dom)?document.getElementById("dropin").style : ie? document.all.dropin : document.dropin
scroll_top=(ie)? truebody().scrollTop : window.pageYOffset
crossobj.top=scroll_top-250+calunits
crossobj.visibility=(dom||ie)? "visible" : "show"
dropstart=setInterval("dropin()",50)
}

function dropin(){
scroll_top=(ie)? truebody().scrollTop : window.pageYOffset
if (parseInt(crossobj.top)<100+scroll_top)
crossobj.top=parseInt(crossobj.top)+40+calunits
else{
clearInterval(dropstart)
bouncestart=setInterval("bouncein()",50)
}
}

function bouncein(){
crossobj.top=parseInt(crossobj.top)-bouncelimit+calunits
if (bouncelimit<0)
bouncelimit+=8
bouncelimit=bouncelimit*-1
if (bouncelimit==0){
clearInterval(bouncestart)
}
}

function dismissbox(){
if (window.bouncestart) clearInterval(bouncestart)
crossobj.visibility="hidden"
}

function truebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}


window.onload=initbox

</script>


------------------------


Step 3: Add the below HTML code to the BODY section of your page, at the VERY end:



<div id="dropin" style="position:absolute;visibility:hidden;left:200px;top:100px;width:500px;height:300px;background-color:#F5F5F5">

<div align="right"><a href="#" onClick="dismissbox();return false">[Close Box] </a></div>

SPECIFY YOUR CONTENT HERE. IT COULD BE TEXT, IMAGES, OR RICH HTML

</div>
 
I think that you are discussing this in the wrong forum. Try a Hacker Forum. I know a few with some good support or you can just google me+hacker forum and you will find some.

But not here, a very bad idea
 
Most probably your CPA account will get banned as the site owner will report you..
 
Back
Top