Protect Software And After Spending A Few Days Researching Different?
Aug 31, 2011
I am thinking about ways to protect software and after spending a few days researching different ways such as using instalShield, etc. i was wondering how would you go about creating your own license server.
Would it be having a part of your install procedure writing a registry file to state if it was first time used. Then from there on first load having the user enter in the information such as (Name, Organization and serial number), then the software connect to the website or server hosting the database and then have the serial number and details checked against it if not in add to the database with the MAC Address and other unique code form system ('Unsure what') and then return true which would then allow to open the software, if already present check how many times it is present through RowCount if more than say 3 to allow change of systems or upgrades then return false and return msg and stop the system.
Is this the basic princaple of it and how difficult would it be to create? is it just like preforming an SQL query against a database or would there be alot more as part of it?what could be the possible loop holes it? would it also be benificial to check the details are correct silently say every 30days to ensure that it is not copied software?
View 10 Replies
ADVERTISEMENT
Oct 26, 2011
I've been having difficulties with a Win32Exception related to the Drawing.dll. After many man-hours of research and a couple creative attempts to work around it, I'm left with the likelihood that the cause of my angst rests with a .dll file provided by the vendor of the database against which I'm querying and through which I'm attempting to post updates. The vendor stated that the .dll wasn't designed with VB 2008 in mind. Though the .dll still posts the data, it's possible that something in its function is causing hiccups with the redrawing of my form and its associated treeview.
View 2 Replies
Jun 24, 2011
I want to create an application that able to calculate the total time the user (i.e. myself) spent on a particular application, for example Firefox. And this application should display warning message if the user spent a lot of time on Firefox (for example 1 hour or more)Reason: I'm a VB.NET developer. During my working hours, my main tool is Visual Studio and I suppose to do coding. But I need Firefox occasionally to access internet (particularly SO and other sites) to find solutions for my programming problems. The problem is I addicted to SO and SO sucks my time for hours until I have forgotten that I suppose to continue coding and not browsing the SO site.
View 6 Replies
Aug 19, 2009
I am planning to buy Visual studio 2008 professional for home use to help me learn .net and eventually to help me get ready for MCP certifications. My question is about MSDN. Visual Studio 2008 Professional with MSDN Professional is $1100 from Microsoft.com. Visual studio 2008 Professional and MSDN premium is $2500 from Microsoft.com. Given what I want to use it for, is there any reason to justify buying MSDN Premium and spending the extra money?
View 2 Replies
Jun 4, 2009
how do i get total no of days between two days which might include leap year
right now i'm getting the no of days by using DateDiff function in vb.net. but i reckon it is not precise. cos it is not validating leapyear.
View 7 Replies
Apr 15, 2012
I need this for 2 different changes.ON one form i got a week calendar, the other a month calendar.Was hoping to add 2 buttons previous & next.To scroll back in time x days, or x days forward.And similar for the months, but instead of days months.Can anybody give me a exaple or a method how to get this to work?Figured it could be done with a loop, but not sure anymore.
View 2 Replies
Jun 27, 2011
The function for getting the difference in days between two days is giving me a wrong answer here.What could i be doing wrong??? DateDiff(DateInterval.Day, CDate("28/1/2011"), CDate("31/1/2011"))
View 1 Replies
Jan 25, 2010
Get the current number of usage days, unique usage days, etc in an evaluation license using CryptoLicensing Generator.
View 1 Replies
Dec 12, 2011
convert days to months and days?
Normal 0
false
false
falseEN-US
[Code]...
View 3 Replies
Sep 28, 2010
I have a date in the future e.g. 13/10/2008 I need to subtract the current date (today is the 28/09/2010) minus 7 days, so thats 21/09/2010 minus 13/10/2008, which would equal erm, 720 something ? But the current date won't always be 28/09/2010, obviously. I need the code for this. EDIT: When i said future I mean past :)
View 3 Replies
Jul 31, 2011
I like to have a Licensing key generator (generate keys from CPU or BIOS) to protect my application and a similar code in my application to confirm the Licensing key.Is there any solution for VS 2010?[url]...
View 19 Replies
Aug 2, 2011
After generating a file, I don't want to allow anyone to open it. How do I protect it, by using a password? Is there any better way? How do I do it programmatically?
View 3 Replies
Apr 14, 2011
I'm going to build a large project and want to create several libraries (DLL) for it. I don't want to merge them all in one EXE, but want to use seperate DLL files.I don't want those DLL's to be used by others, so these DLL's should be protected so that they can only be used in my own project.I was thinking of using some sort of password in the New() proc, but that doesn't work for shared classes.
Other solution I was thinking of: is it possible to check if the calling assembly has the same strong name as the DLL?These solutions are just one of my ideas. I don't know if those will work and am not saying that one of them is the way to go.What is the best approach to accomplish this?
BTW: I also use a obfuscator to protect my code.
View 1 Replies
Aug 4, 2009
I am trying to protect a document. I made a macro but it gives me an error in VB.net. I just need to find out how to change one bit to get it working in VB.net.
oDoc.Protect(Password:=".protect", NoReset:=False, Type:=wdAllowOnlyReading, UseIRM:=False, EnforceStyleLock:=True)
View 4 Replies
May 1, 2009
I would like a program where the process is not another program or task management can be stopped. An anti-malware program, how can you protect a process?
View 3 Replies
Aug 7, 2010
i made a small project and i want to sell it, there is any way to make user name and password for the project, or serial, or some thing like that?
View 3 Replies
Jul 10, 2009
I am wondering if anyone here knows of a method to protect a dll from unregistered usage. I have a few useful dlls that I am thinking about putting online for sale but I want to protect them so that they can not be used by a developer without paying the proper fees.
View 1 Replies
Mar 6, 2010
i have created a dll library and now i want to secure it....and distribute it to other...i want to provide a trial so that the user can see what it can do....how can i protect it...
View 2 Replies
Jul 22, 2010
I've written a VB program. How do I add anti-tamper code so people can't crack it?
View 2 Replies
May 23, 2011
i developed a project using VB.Net 2005 and sql server 2005 standard edition at back end. now its complete and have to deliver to company now. but i am afraid that the company may reproduce a new copy of this software from the original and may sell to any other company or in open market. I want to implement some mechanism on my project for its security, which enables it to not to work on other computers or some similar type security.
View 3 Replies
Dec 7, 2009
I know maybe it is impossible, but how to make hacking more difficult?
View 1 Replies
Jun 5, 2009
i need to password protect a folder in a way that just the wpf appliction that has created it can access it.
View 8 Replies
Jun 7, 2010
How do you password protect a zip package?
View 6 Replies
Apr 17, 2010
I am trying to create a similar way to Cpanel password protect directory, where a pop up comes out asking the user for a username and a password, but Cpanel way is amazing but my client doesn't know anything on how to do that, so i wanted to create a pop up msgbox informing the visitor to enter a user name and a password, and i totaly confused on how to create it, and which programming language support similar to CPanel
View 2 Replies
Jun 17, 2011
Now, I have a executable build in vb .net with MySQL.Data.dll (library to allow connection to my remote database) that checks for data in a databaseNow then, when using a packet sniffer tool, I can see all my detailsHow can I prevent thisAlso, as a security measure, I have tried obfuscating the connection string in the exe, but that is only on the code part so I'm sure is not enough as I've seen my string in Wireshark
View 2 Replies
Oct 7, 2010
Does anybody know an effective way to protect your application from being copied? I 'd like to make my application as shareware for limited numbers of trials and after that the application shouldn't not run anymore on the same PC.
View 4 Replies
Sep 2, 2010
ive been making my own programs but i want to know how to make the file being installed
View 10 Replies
Dec 11, 2008
After I finish my project I'll create a setup for it and give it a serial number.But unformatted it could install on many PC.I have heard that I can create a serial number with the number of the motherboard of PC. Is this possible?I was working on accounting program. This program was protected from a steal by a piece insert in the usb of the PC. So the program was working only for a few days if that piece doesn't inserted.
View 7 Replies
Apr 29, 2012
[code]...
Unless the person actually gets into the source code they can't get the password am I right? Is it actually possible for them to get into the source code.
Basically what I'm asking is, is this safe and if not why not and how can it be made secure?
View 5 Replies
Feb 27, 2012
I'm using visual studio 2005. I finished my application. Now I want to publish it. How can I protect that application to be shure that someone else could not use it without serial code which would I provide. For example I give the installation to someone else and I give him a serial. He enter that and he can use it forever. But how can I be shure that that person would not give that installation and serial to the third person.
View 14 Replies