blah blah blah is here! blah blah » Close

1
votes
0 answers

Access Denied when stop() / start() with ServiceController()

Hello all, I'm rather new to programming, as I come from the Systems engineering side of the IT life. I'm trying to write a program that will connect to a system and be able to restart the services on that system. I know there is so ...

0
votes
0 answers

How to block c# form app for a certain amount of time

Dina
15

Hello everyone, I have a c# form application and it's password protected (the user enters his name and password and the application checks if this name and pass are in the database then the main form appears) ...I wanna make when the user e ...

0
votes
0 answers

java information security projects

Brother need some information security related projects or idea about simple information security projects in java.

0
votes
2 answers

Creating a bit to store security permissions for a user

Rick_A
761

I want to store user level permissions in the users table, and have a column that will store a binary value (64-bit) so I can store 64 permissions in this feild. So I will create a enumeration like: [code]public enum UserPermissions ...

1
votes
5 answers

How safe is the asp.net authentication token? Can it be hacked?

Rick_A
761

When using forms authentication, it generates a ticket that is stored in a cookie on the clients web browser. This ticket also has the userID or username of the currently logged in user, all encrypted ofcourse. How easy/hard is it to de ...

0
votes
1 answers

Code secuity and encryption (unanswered).

Hi guys! I previously asked a question about .NET AES encryption where my problem was concerning support for very lare files. This couldn't really be overcome and upon that i have encountered even more problems like i need implementation ...

1
votes
1 answers

help designing a permissions module

I have an object like this: [code] public class Content { public int Id { get; set; } public string Title { get; set; } public string Text { get; set; } public ContentType Type { get; set; } public lon ...

1
votes
3 answers

how do you prevent an anonymous user from viewing a page?

I have a asp.net site, and I want to prevent anyone who isn't logged in from viewing the page [code]www.example.com/user/settings.aspx[/code] What options do I have?

Feedback