Tagged Questions
The .net-security tag has no wiki summary.
12
votes
7answers
552 views
How to forbid calling a method C#
I want to allow calling the method only from the particular methods. Take a look at the code below.
private static void TargetMethod()
{
}
private static void ForbiddenMethod()
{
...
5
votes
1answer
145 views
Stopping integer overflow in ASP.NET
We use Acunetix at work to do security scans on our applications. Recently we came across the following Integer Vulnerabilities error below:
From what I can tell, it looks like the report is ...
2
votes
1answer
75 views
Starting a .NET project with Membership and Roles. Guide please
Scenario : A web application with user login, roles and permissions.
Question :
Is it better to start with Visual Studio's / Visual Web developer Express edition's project wizard which contains ...
1
vote
0answers
62 views
.Net Security Zone Permission Sets?
Can someone help me to find web-page or resource where can I see what permissions does each zone have?:
Internet Zone
My Computer
and others.
before .net 4.0 I was able to see them in .net ...
0
votes
3answers
50 views
Creating .net md5 using javascript
I have used microsoft "system.security.cryptography" to make md5 in c# application but I need something in javascript to make a similar md5 value at the client side, I googling and I found a site ...
0
votes
2answers
54 views
Sending <script> tags in ajax content
I'm working on porting this lab: http://www.cis.syr.edu/~wedu/seed/Labs/Attacks_XSS/XSS.pdf
For a project. First, however, I have to be able to complete it myself. I'm trying to work out the ...
0
votes
1answer
44 views
Is the result of a RSA encryption guaranteed to be random
I use RSACryptoServiceProvider to encrypt some small blocks of data. For the solution I'm working on, it's important that if the same piece of source data is encrypted twice with the same public key, ...
0
votes
0answers
126 views
SecuritySafeCritical in a .NET 4 sandbox
I am writing a simple Sandbox for .NET 4.0 that executes code that needs Full Trust privileges for some methods, but I can't just grant unrestricted permissions to the whole thing since there are ...
0
votes
0answers
16 views
Custom Security Descriptor
I am exploring the possibility of creating a custom security descriptor for a POCO. The intention is to determine the level of access to the object, based on a set of custom permissions, without ...
0
votes
1answer
61 views
Best security option in WPF and web service
I have WPF application deployed on n number of system. The WPF application consumes my web service and performs transaction in a regular interval by calling web method. What kind of security should ...
0
votes
1answer
1k views
C# - .NET 4.0 - That Assembly does not allow partially trusted callers
When running from a network share, my application throws the following exception:
That assembly does not allow partially trusted callers.
My application references two DLL files:
...
0
votes
1answer
2k views
CASPOL, FullTrust and running an ActiveX Control in IE with FullTrust based on URL
I've set up an activex control to run on a webpage. The server is able to serve this webpage to itself, but other machines on the intranet and internet aren't able to access it.
The Caspol settings ...