Your favorite Apple, iPhone, iPad, iOS, Jailbreak, and Cydia site.
Thread: Insanelyi Repo Stole My Theme!
is a discussion within theGeneral iPhone Chat
forums, a part of theiPhone Modding
section;Hello everyone, I am the author of the "Inked_xx HD" theme. I noticed a while back that my theme (which is for sale on the ModMyi Repo for $1.50) showed
...-
10-03-2011, 05:14 AM #1
Insanelyi Repo Stole My Theme!
Hello everyone,
I am the author of the "Inked_xx HD" theme. I noticed a while back that my theme (which is for sale on the ModMyi Repo for $1.50) showed up on the Insanelyi Repo for free!
Some ******* uploaded my theme and made it available for free! They have stolen my work and are causing me to lose money. It's been downloaded from them 500 times! I've lost approximately $750 in download revenue. Those sons of ******* have a history of habitual theft of others peoples work! In fact, when you add this repo to your sources in Cydia, there is a warning stating that this repo is distributing other people work.
Are there any of you out there that have also had their themes or apps made available for free by these thieves?
I sent them a message asking to remove my theme from their repo and they still haven't!
Is there anything I can do?
Is there anything WE can do?
-
10-03-2011, 05:24 AM #2Sug Luv Super Moderator
- Join Date
- Jan 2011
- Location
- Hammond Louisiana
- Posts
- 28,557
- Thanks
- 1,067
- Thanked 4,947 Times in 2,946 Posts
About 90% of the people that post there themes forbad price they always git piracy. So even try with passwords but theres always gonna be that @as thats gonna ruin it for everyone else sorry to hear that bro
-
10-03-2011, 05:32 AM #3
Thanks for you're response!
I don't understand! My theme is cheap compared to others and is VERY complete so people are getting GREAT VALUE for their money. I have included a EULA (End User Agreement) in my package that clearly states that they are NOT allowed to do that. A friend of mine even suggested I consult a lawyer. Specially since they have done this to many people with many themes and apps. It could be a class action suit.
Is it worth it? Is it worth going through the trouble? What's do you guys think?
-
10-03-2011, 05:35 AM #4Sug Luv Super Moderator
- Join Date
- Jan 2011
- Location
- Hammond Louisiana
- Posts
- 28,557
- Thanks
- 1,067
- Thanked 4,947 Times in 2,946 Posts
Think someone else thought about doing this. Bad thing about it is we can never stop piracy it will always be there. It's kinda sad ppl put all this time and money into something and you always got that one person that will ruin it for everyone else.
-
10-03-2011, 05:40 AM #5
Yeah it's sad. I'm very upset about this whole thing =(
-
10-03-2011, 05:41 AM #6Sug Luv Super Moderator
- Join Date
- Jan 2011
- Location
- Hammond Louisiana
- Posts
- 28,557
- Thanks
- 1,067
- Thanked 4,947 Times in 2,946 Posts
Sir tim I think lost couple of thousand dollars with piracy it's sad
-
10-03-2011, 06:15 AM #7Moderator Admin
- Join Date
- Sep 2007
- Location
- Outside Chicago IL
- Posts
- 17,070
- Thanks
- 483
- Thanked 1,632 Times in 1,141 Posts
Try post or pm'ing an admin over there, tell them your story and ask to have it removed.

-
10-03-2011, 06:27 AM #8iPhone? More like MyPhone
- Join Date
- Sep 2011
- Location
- Australia
- Posts
- 154
- Thanks
- 13
- Thanked 9 Times in 8 Posts
You might want to get users to “activate” your theme somehow, possibly by asking your repo to send you the UDIDs of the devices that it is installed from when they purchase it.
Now edit or create a Wallpaper.html or Widget.html in your theme's directory and include code similar to this, assuming your theme's on MMi:
On your server, you'll need to make a script that queries the UDID from your database. If it comes back with zero results or more than 10, make it print out “no,” otherwise, make it say “yes.”Code:// Please read EULA.txt before editing this code. window.onload=function(){ var xhr=new XMLHttpRequest(); xhr.open("POST","http://example.com/cydia/mytheme/confirm.php"); xhr.onload=function(){ if(xhr.responseText!="yes"){ document.body.setAttribute("style","background:black!important;color:red!important;font:bold 20pt sans-serif!important"); document.body.innerHTML="This copy of MyTheme was not purchased from ModMyi. Uninstall this theme or buy it from ModMyi to prevent showing this message!"; } }; xhr.send("userudid=__UDID__"); };
And create a file called preinst at the root of your package. This is a bash script that is run before dpkg installs the theme files. Make it replace __UDID__ in the above file with the user's UDID. I think you can find it by running $(id) or something.
Finally, ask a lawyer to help you write an agreement for your theme. It should explain that it is not allowed to change the code in the above file or distribute the package without the preinst script, with someone else's UDID in the JavaScript, or with a script that redirects the request to your server to another Website.
What will happen is the script in the wallpaper will send the user's UDID to your server and if it doesn't say yes, a big, ugly warning will be their wallpaper, which should make them want to buy or uninstall the theme.
(Side note: You could also bundle a dylib with your theme that does this check and does something annoying, like showing an alert every few minutes, but anyone can turn it off easily via SBSettings.)
Edit: The only problem with the method I just talked about is that it won't show the warning if the user isn't connected to the 'net, which is usually the case when the page is loaded on a 3G iDevice being used over an EDGE network.
Edit 2: The forum seems to be removing my html tags, so you will need to put script and /script tags before and after the code above.
-
10-03-2011, 06:53 PM #9
@thekirbylover
Thank you for your response. After reading the code I understand most of it. The only problem is I don't have too much experience with coding other than HTML. I would need some help implementing this. Also, my theme is being hosted on ModMyi's repo. I don't have my own repo. And from what I understand about the method you described, I would need to have my theme hosted on my own repo. Is that correct?
-
10-03-2011, 07:45 PM #10iPhone? More like MyPhone
- Join Date
- Sep 2011
- Location
- Australia
- Posts
- 154
- Thanks
- 13
- Thanked 9 Times in 8 Posts
You're welcome.
I can help you with the script if you want.
Originally Posted by lnked_xx
It depends if MMi will allow you to see a list of UDIDs for the device the theme's installed on. If they do, all you need is a server-side script and a database to keep the UDIDs in. If not, you might need to have it on your own repo.
Originally Posted by lnked_xx
However, I'm making my own version of WinterBoard (known as InstantBoard) and this has given me an idea to include an anti-pirating system. Because of the security measures, and to make it completely automated, it'd have to be distributed from another repo, however IB should auto-install it when it's being installed.
-
10-03-2011, 07:48 PM #11Sug Luv Super Moderator
- Join Date
- Jan 2011
- Location
- Hammond Louisiana
- Posts
- 28,557
- Thanks
- 1,067
- Thanked 4,947 Times in 2,946 Posts
Wow instantboard I like the way this sounds
-
10-03-2011, 09:53 PM #12iPhone? More like MyPhone
- Join Date
- Sep 2011
- Location
- Australia
- Posts
- 154
- Thanks
- 13
- Thanked 9 Times in 8 Posts
-
10-03-2011, 10:03 PM #13Livin the iPhone Life
- Join Date
- Aug 2011
- Location
- No where near you
- Posts
- 1,348
- Thanks
- 288
- Thanked 195 Times in 132 Posts
-
10-03-2011, 10:13 PM #14iPhone? More like MyPhone
- Join Date
- Sep 2011
- Location
- Australia
- Posts
- 154
- Thanks
- 13
- Thanked 9 Times in 8 Posts
-
10-03-2011, 10:16 PM #15Livin the iPhone Life
- Join Date
- Aug 2011
- Location
- No where near you
- Posts
- 1,348
- Thanks
- 288
- Thanked 195 Times in 132 Posts
-
10-04-2011, 04:38 PM #16My iPhone is a Part of Me
- Join Date
- Feb 2011
- Location
- Sacramento, California
- Posts
- 511
- Thanks
- 32
- Thanked 49 Times in 44 Posts
someone did the same to my theme called windows vista
already 3,000 copies have been downloaded in 24 hours
-
10-04-2011, 05:23 PM #17
That really upsets me. I'm sure you worked very hard on your theme for assholes like "Sull" (he's the guy uploading our themes) to do that.
-
10-04-2011, 05:25 PM #18My iPhone is a Part of Me
- Join Date
- Feb 2011
- Location
- Sacramento, California
- Posts
- 511
- Thanks
- 32
- Thanked 49 Times in 44 Posts
-
10-04-2011, 05:28 PM #19
Is your theme for WinterBoard or DreamBoard?
-
10-04-2011, 05:30 PM #20My iPhone is a Part of Me
- Join Date
- Feb 2011
- Location
- Sacramento, California
- Posts
- 511
- Thanks
- 32
- Thanked 49 Times in 44 Posts




LinkBack URL
About LinkBacks
Reply With Quote

