How To Restrict The Use Of Decompiler
Jan 29, 2010
I have created an exe file. i am now worried whether my exe file will be decompiled using some vb.net decompilers.(sample coding) for some exe file named "hello.exe" to prevent the hackers from decompiling it. how to restrict the use of decompiler.i now want to make my code, invisible (or) not traceable (or) not understandable. even if it is decompiled.Also i came to know that , it is also possible to remove the obfuscation from the exe file.. so that the actual goal to trace the code is possible...
View 1 Replies
ADVERTISEMENT
Aug 17, 2011
with this Program [URL] People can see the code and password, how can I defend against it?
View 15 Replies
May 19, 2009
Are there any free .net decompiler/disassemblers? I am using a demo of Dis# but it's not showing full code, I need to make sure my obfuscator works. Link to the download would be nice.
View 7 Replies
Aug 16, 2011
Here is a link to a FREE Beta version of a .Net decompiler.Some of you may find this useful? >>[URL}..If you do try it within the next 5 or so hours while I sleep, you may want to leave feedback of your experience(s) here in this thread.I have merely posted the above link in case any of you want to try a decompiler.
View 8 Replies
Jan 4, 2010
Someone know how to make or if it possible to make a .swf file decompiler in vb.net? the actionscript that the program decompilated paste it into a textbox1.
View 11 Replies
Jan 14, 2010
I just used a Hex editor and in about 10 seconds i got the source code. How can i protect my self form the decompiler?I looked on Google but all i found are third party application. What do you use to protect your software?
View 7 Replies
Dec 2, 2011
First, I'd like to know, in MySQL, when is it more secure and appropriate to close the connection and also why we have to close the connection. The software protection also came to my attention. Is it possible to protect a .exe from being decompiled with any .net decompiler?
View 3 Replies
Apr 7, 2011
Alright, simple as can be. I am stuck back doing my project again this year in college since i failed.So my question is if anyone can help me with the coding as to how i can restrict a member from the database, Also i wanna know if i am doing it right in terms of code for Amend.Try to explain it nice and simple.Sorry but unfortunately my college has blocked every single image host so i can't show ya all a screenshot but i can show ya the coding i have.
so far i have it laid out so user can input details of a member.I have 4 buttons on the form, one is Add, Amend, Delete and Cancel.I have the coding right for Add, Delete and Cancel.So i have a checkbox where if a member is restricted the change is placed on checkbox.
[Code]...
View 8 Replies
Oct 13, 2004
I want my textbox to take only letters as Input, no numbers or other keys.
And Viceversa that I want Only numbers as Input ,no letters or other keys.
View 11 Replies
Jan 15, 2011
How to restrict user to do rating only once..i m using AjaxControlToolkit Rating Control i VB.NET!
View 1 Replies
Apr 15, 2009
How can i make it so my listbox can only contain 1 item at a time?
View 1 Replies
Aug 7, 2010
I need to create a helpsystem for my work. There's two user types ... common users and admin users. The common user needs to se all stuff except admin stuff - admin must see it all.
I use Camtasia to make screencasts - AVI files, which I need to put in my helpsystem. Seams like I can't stream the AVI from embedded resources, so I guess I need to save the AVI files to the users harddrive.
I need to copy all stuff to the client PC in case of network problems.
how to I prevent common users going to their harddrives and watch admin AVI files?
View 8 Replies
Feb 3, 2010
I need to restict access to a drive using vb.net code
View 3 Replies
Jul 21, 2011
I am trying to add Images from websites and I am facing poblem with an issue which is that when I am trying to go to google images and trying to add some Images and when I right click for some images I find "Copy Image URL" and for some I don't find it and I find "Copy link address".Now I want my users to restrict from adding the Images which contain "Copy Image URL"And I am attaching Images so that you'll understand me in a better way.
View 3 Replies
Feb 16, 2006
I have some textboxes that I only want numbers in and only want a range of numbers to be valid. Also I do not want to use NUDs. I already have the textboxes connected to functons and subs so I do not really want to change them.How would I do this?
View 8 Replies
Nov 22, 2010
I have a picturebox (X=1200,Y=800) and there is an area in the picturebox starting at (X=32,Y=32 and is 256x256 in size). I want to keep the mouse pointer in that area for awhile.
Is there a command in vb that lets you do this? If not, can you restrict the mouse to one control?
View 6 Replies
May 10, 2012
[code]...how to restrict numbers for TextBox?
View 6 Replies
Sep 20, 2009
I Have Textbox where whatever is entered is to be used for a file name so I do not want certain keys to be entered, i.e. <>|\ /*: ? "
The code I have so far is
Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
[code].....
View 5 Replies
Apr 18, 2009
I'm using a webservice to update some data to server.my webservice is written in asp.net and vb.i'm invoking it from a windows application(vb.net) but when my webservice is running it uses the complete bandwidth of my internet connection. is there any way to alllocate a particular bandwidth to this webservice sothat it wont affect other applications using internet?
View 5 Replies
Oct 6, 2009
I am wanting to restrict the input on an InputBox and I am confused about how to do that. I know what to do on a text box to restrict input to numbers, the ".", and the backspace key, but I cannot figure out how to tie the input restrictions to the pop up InputBox. Do InputBox 's have an object name attached to them? Or are they just called InputBox.whatever?
View 8 Replies
Jun 8, 2012
I have a ASP.Net Web application hosted on a server. I want to restrict same user to login on different machines over the network connection but with certain conditions to be satisfied. So I thought of adding three new columns to the User table so that we can track if same user is logged in on same or different machines.
Those columns are like :
IsLoggedIn : To check if the particular user is already logged in or not.
SessionID : To check if the same user instance is opened.
IPAddress : To check if the same user is on same or different PCs.
This should satisfy some of the below conditions, but it fails to satisfy some of them. Conditions are as follows :
Both computers are on the same LAN.
Each computer is accessing the application over the internet from different locations.
Each computer is accessing the application over the internet from the same location.
Some of the application hosted which means that IP address alone is not sufficient to distinguish different computers.
Some users just close the browser without logging out. So sessions may not be ended at this situation.
How to accomplish all these conditions to satisfy with my application ?
Mainly 4th and the 5th .
View 1 Replies
Feb 3, 2010
i need to restrict access to a drive in windows using vb.net
View 4 Replies
Apr 25, 2011
I am building a simple windows form application in Visual Basic 2010 with two tabs. It's a program that will allow a business to enter contact information for display to an end user client.
One tab displays the business contact information for the end user client, which I have the data filled from a App.config file.The other tab acts as a settings page. The business fills in their contact data on the settings tab for the App.config file.
Once the business contact information is entered into through the settings tab, I want to be able to restrict the end user client access to the settings tab.It doesn't need to be highly secure, just a way to prevent the average end user from getting into the settings tab.
View 6 Replies
Jan 22, 2012
Using VB.NET 2010:i'm making a simple "launcher" application for our work applications. I have already created the ToolStripMenu that contains the menus I want. They will be arranged like so:[code]What I need to do, is restrict access to the Admin menu, based on the Environment.UserName variable. Ideally, I would like to have it not even render - but if the only option is to have it greyed out, I am okay with that as well.
View 1 Replies
Mar 11, 2010
Is it possible for me to restrict my desktop application only for 1 computer..
View 7 Replies
Jun 10, 2011
I have some problem in validating duplicate values while saving & updating my records to SQL database. I have following codes:
1. Decalaration Code
#Region "Declarations"
'Declaration for Navigation
[code]....
View 2 Replies
Sep 20, 2011
I have a differenct users in my software (Windows based application), i want to give the access according to the user rights..
For Example
Admin Login can able to access and edit all the forms User Login can able to limited access to edit and view the forms Employee login can able to view the forms only
View 1 Replies
Sep 8, 2009
i want to restrict input of a textbox to only numbers but am doing it on asp.net, so i cant check for each character that is being inputed cause it will cost me a post back and thus lots of time?
View 1 Replies
Apr 3, 2010
i am trying to restrict the input for a RichTextBox to certain values. I am trying to only allow Letters, the Backspace button and the Space button. The letters and backspace button work as expected but the Space button does not, i found the characters of the keyboard from this page but space is not working and it does not accept it,
View 1 Replies
Feb 6, 2010
Is it possible to restrict renaming a exported file in vb.net?
View 1 Replies