Implimenting Security Measures In A Program?

Nov 12, 2008

I am writing a parental control type program for use on 2K, XP, and Vista.There are two specific features I need to address, but I am at a loss as where to begin or how to impliment them.Feature 1: Prevent anyone except the program's administrators (2 designated within the program) from modifying the programs directory and/or its contents.Feature 2: Prevent anyone except the program's administrators from stopping, killing, or ending the program.Also, which would be a better way to start the program with the system, as a process or with the registry

View 4 Replies


ADVERTISEMENT

Write A Program In Measures The Frequency Of Sound Inputted From Microphone?

Mar 10, 2009

I want to write a program in vb.net that measures the frequency of sound inputted from microphone. What kind of ideas can you offer

View 1 Replies

C# - Implimenting IAsyncResult.AsyncState?

Sep 7, 2010

I can easily do this in C#...but I need the equivolent in VB.Net. I need to be able to implement various IAsyncResult properties in VB.Net.

View 1 Replies

Make A Security For The Program?

Nov 24, 2010

How can I make my program to work only for certain period of time?Say... I want my program available for only One hour or Two days or one month or etc...

View 2 Replies

Encryption Of A Text File + Decryption For Security Program?

Feb 10, 2011

What I've decided to start working on is pretty much a personal project but something I may use in my UNI course in due time. I'm creating a security program with a set of access codes (yes I am a bit of a star trek fan) - 4 in total to be exact. I want to be able to use an Encrypted key file in form of a simple notepad created text file to update the codes at any due time. All I'm looking to do is write the access codes to the text file (say for a friend to use the program), Encrypt the file through the program and be able to also decrypt to obtain the new access codes on demand also via the same program. Once decrypted the codes can be read and verified if the user has entered each one correctly. I could hard code the access codes into the program but would rather do it the way I've thought of.

Back in the days of the old VB6 there was a simple method but for some reason that doesnt work any more. What I guess I'm looking to do is have 4 text fields where 4 digit access codes are typed into, have the program take them and encrypt each one is then written to the text file. Hoping that will make it a bit clearer what I'm trying to achieve as I think I made it sound like I want to encrypt the text file after the info has been written to it, which is of course one option so wouldn't mind know how to do that too!

View 3 Replies

Social Security Program, How To Remove Dashes For Output

Oct 18, 2011

Hi, I am doing the SSN program.So when I type "345-584-5869", it should display "3455845869".I'm just learning how to use string manipulation.My problem is I cannot get all dashes remove when I output

' Name: Social Security Project
' Purpose: Removes the dashes from a social security number
' Programmer: <your name> on <current date>

[code].....

View 6 Replies

C# - Send A Mail From An External Program Through Outlook With No Security Warning?

Feb 15, 2012

When I send a mail from my external program through Outlook, then I get the security warning.

I've tried bypassing it with secman and redemption, but both these tools doesn't allow the app to be "Any CPU".

I need the app to be Any CPU because it must be x64 on client and x86 in design (since designer doesn't allow inherited forms on x64).

So how would you go around Outlook security?

Should I write some kind of TCP-listener-Outlook-Addin and then send a TCPIP from client with mail info?

View 1 Replies

IDE :: Open A Program Written VS 2008 In VB2010 And Get Security Error

Sep 6, 2009

After upgrading code to VS2010, the error "MSB3134: The permission set requested by the application exceeded the permissions allowed by the Internet or Intranet zones. Select Full Trust or to continue using partial trust, define your custom permission set in the Security Page of the Project Designer. Bentley Software Loader". The same code ran fine in VS 2008

View 3 Replies

VS 2008 Hidden Dlls - Security Program That Monitors The Keystokeswebsitesprocesses

Dec 30, 2009

I have created a security program that monitors the keystokeswebsitesprocesses... I want to FIRST ask if this is a legal question; for, my purpose in this program is security reasons (eg. following up on employees to make sure that they are doing what they are paid to do. They all know this is running, and have been warned not to go to sites and enter information they do not want reviewed).

Second, I want this program to be hidden so that techy persons cannot go into task manager and end the process, then go on to some porn site! How could I make this app hidden, or at the very least make it 'un-end-able' from the task manager?

View 5 Replies

Creation Of Program To Create Security Code Based On Current Date?

Apr 3, 2012

I need some help in the creation of a program to generate a security code based on the current date. I need to create something that first multiplies the MMDDYY (ie X=MM * DD * YY) then also adds the MMDDYY then finds the remainder and then multiplies but a specified number. I would like to create a small program that sits in the system tray with this code displayed. The code will always need to be 6 characters, so I might need to pad it with zeros. It has been years since I took basic VB, and I am really rusty.

View 1 Replies

System.Security.SecurityException: System.Security.Permissions.SecurityPermission?

Jul 27, 2010

I am getting the following error message when I try to call this program from a shared drive on our network;

System.Security.SecurityException: System.Security.Permissions.SecurityPermission
at EMAILVB.EmialVB.EmailVB_Load(Object sender, EventArgs e)

[code]....

View 5 Replies

Add Security To Tcp Connection?

Feb 23, 2010

I have a simple video chat program running and most of it is working across my network I need to ask

I currently have it setup that whenever each client sends a message to the other a connection opens between them and a packet is sent, finnaly the connection is closed

This way I recive the data is were I belive my security problem comes in I have a listenner port on each computer and I am wondering if there is a way to add some security to it.

View 4 Replies

Asp.net - Html To PDF And Security?

Dec 15, 2010

We have a web app that is using forms security.One of the options includes the ability to print an html page to PDF. We're currently evaluating different products like PdfMetamorphosis, but I believe all of them will have this issue.The client makes a request for the pdf by clicking a link button. The code for the button instantiates the PDF builder and passes it a url to convert. However, the URL is behind our forms authentication. Which means that the resulting PDF is nothing but a login page.

Unfortunately, we need the user information in order to verify acccess to the printed page (among other reasons). Which means I can't just allow access to everyone to that folder.So I need one of three possible solutions.

1) I need a way to give the PdfMetamorphosis component the authorization ticket to pass on in it's request.
2) I need an html to pdf component that will do this.
3) Something else?

I don't think the first one is possible and I haven't been able to find a html to pdf component that takes this into consideration.

View 1 Replies

Asp.net - PKI Security For .net Application?

Dec 17, 2010

I want to use PKI public and private encryption for authentication to allow for a more streamlined and secure application access control system. Any help in the generation of certificate and authentication will be useful. One more question, can i use System.Security.Cryptography.X509Certificates class for the same?

View 1 Replies

Better Security For Databases?

Feb 20, 2011

Ok, so I am on my last book of course material for college and this weekend I started making my own personal applications, stuff I can really use in everyday life, these projects also serve as a port folio for future employers

View 1 Replies

Multiple Web Cam Security App?

Feb 14, 2012

I can use the c110 cam and one of the 270 versions at same time to get two seperate displays but when I try to usetwo of the 270 cams at same time which both show in device manager, I get "camera in use by another application" even though there are two cams (270's)and I reference them both seperately from a populated combo box containig all media devices present.will need to use all of the same type of cam for this app which will have from 4 to 16 or more cameras viewing and or recording at the same time. If there were 16 slightly different versions of the same cam which would give me different drivers, It would be fine but as you can probably imagine, not acceptable.

View 4 Replies

.exe Files Security Level?

Jun 17, 2011

.exe files security level

View 13 Replies

.net - Application Online Security?

Jan 29, 2011

I am developing and application in vb.net winxp+ (windows xp upwards). The application has to receive backup data from clients software located at different pc over the Internet. but am concerned about security of this application on the Internet. what would be the best way to implement security in vb.net 2008 to make sure that the data is not sniffed or interfere with?

am thinking of encrypting the data before sending, saving it that way until it need to be viewed before decrypting. what type of encryption would you suggest? Is there any other way you would suggest this data be sent?

View 2 Replies

Create A Usb Security Software

May 18, 2010

im starting to create a usb security software im searching if how the usb will be detected by the program so once it is detected i can now put the code to scan the drive.

View 7 Replies

DownloadFile Password Security?

Mar 23, 2011

recently discovered the My.Computer.Network.DownloadFile method and would love to use it to download files from a website (https://www...). I can include a username and password in the DownloadFile parameter list,but will it send the password in plain text? If so, is there a way to send an encrypted password?

There seem to be many ways to download files. What are the advantages or typical uses of each?

View 4 Replies

EventLog Security Error?

Apr 13, 2012

I'm working with vb.net in Visual Studio 2010, I have a method which writes entries in eventlog, this work fine in Windows XP but did not in Windows 7, here it throws a security exception.I allready know that this problem is because the user who exectues this assembly does not have permissions to write the registry, so my question is if does not exist some way to give permissions on the fly, something like declarative permissions or something
like that....this is my code:

Public Shared Sub Loguear(ByVal xsSource As String, ByVal xsMessage As String, ByVal xeEventType As EventLogEntryType, _
ByVal xsLogName As String)[code].....

View 1 Replies

Folder Security On Windows 7?

Jan 29, 2010

I use VB.Net 2003 and in my application I create a folder that I will use to create files in it.My problem is that under Windows 7 this folder dont have a full permissions and the files are not been created.Is there any way that I can give full access permissions to this folder?I can do it via VB.Net 200358 and via my Wise installation system.

View 3 Replies

Get Security Information From A Folder

Oct 18, 2010

I have been developing an application where we can get to give access and revoke access from folder provider.in this i want to have a listview with all the users who have access to that folder and there access rights ( read, write, modify etc )

View 1 Replies

Log Failed Logins Without Security Log?

Aug 12, 2011

I am trying to create a VB.NET app that will capture failed windows logins without having to read from the security log. I know I can do ManagementEventWatcher and watch forWin32_LogonSession. But this only gives you successful logins. Is there anyway to do this? I figure I am just missing the correct class that will do this.

View 8 Replies

Maintain Security In .net Applications ?

Aug 18, 2011

How do i maintain Security in VB.net Applications ? esp in databases

View 2 Replies

Norton EndPoint Security?

Jan 26, 2012

I have a console app (Exe) which runs on my local PC. The problem is this Norton EndPoint Security thinks that this app is a BloodHound SONAR 2 and stops my application. How can I fix this?

View 2 Replies

Set Security On A Network Share?

Aug 6, 2009

I have used the same code as Good4You here[url]...

My task now is to set "<Computer>administrators" to have "full scces" and "Everyone" to have "Change" on the newly created network share.

View 3 Replies

Setting Up Integrated Security, Ii6?

Feb 16, 2011

I have made my web site into an application.

I have disabled annonymous, on IIS6
<authentication mode="Windows"/>
<identity impersonate="true"/>

[code]......

View 1 Replies

VB .exe Files Security Level?

Feb 9, 2011

I am building a program and I want to distribute the program to many clients. In order to inhibit the unauthorized distribution of my program I wrote some "encryption code" that uses the MAC address of the PC that the program is installed. I give the serial number of my program (which is created by me after the client gives me the MAC of his PC), the user types this code the first time he runs the program,after that is stored to registry

View 3 Replies

VB 2008 Security Precaution?

Mar 3, 2011

I am building this tool for my 2 home computers. Its a client/server program, which is pretty easy to program. However, as with almost all program, you encounter an error now and then. However with this error I am completely clueless to what the problem is. Basically, when I connect from my client to the server, it connects and all. I can send command lines which the server then adds to the log. I have also made a command called /screenshot which basically just takes a screenshot and send it over the connection (so I wont have to run to my 2 computers constantly xD). Anyways, the thing is, that is working fine but This other code I'm making to make it list all the Drives and the first sub-folders inside the drives, disconnects me >_> I can send the screenshot line, that works fine, but when I send the 'listfolders' command, it just disconnects me. When I go back to my other computer it just says disconnected. And it doesn't even execute the given strings. I tested it to make it send a msg box when DCing, that worked fine, but listing those drives and stuff inside a TXT or List box didn't seem to work :<Also. this code works when I make it execute it on startup, but it wont execute it when its sent by my client. So my only guess is that Microsoft has made some sort of security precaution that made you unable to make programs that could have anything to do with the folders, over a TCP connection or something :s Thats my only guess, but perhaps you see whats wrong?

[Code]...

View 7 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved