The system.security tag has no wiki summary.
1
vote
0answers
156 views
Configure Win 7 Network Adapter Programatically in C#
I want to configure all active network adapters in windows 7 programatically through c#.
I have tried following code:
string newIPAddress = "100.200.100.11";
string newSubnetMask = ...
0
votes
1answer
81 views
NetworkInterface.GetAllNetworkInterfaces() causes System.Security Exception
I have used microsoft add in framework. From the main host I am loading an add-in and in add-in I have written :
NetworkInterface[] adapters = NetworkInterface.GetAllNetworkInterfaces().
The above ...
0
votes
1answer
145 views
Access and Identity WIF 'Key not valid' on Load balanced cloud deployment at AppHarbor
Now then all.
Having a little trouble with an MVC app using Identity and Access and Azure STS on AppHarbor giving "Key not valid in specified state" errors.
From what I gather, this is due to the ...
1
vote
0answers
81 views
How can I get a list of all permissions for a certain file system object for a certain user or group using?
I do this at C# winh .NET4.
It is easy to get the current user's credentials for any file or folder (like this).
But the problem is that to get a collection of permissions (Read, Read Attributes, ...
7
votes
2answers
376 views
SSRS check if user in group using Custom Assembly
I have created a Custom Assembly for my SSRS Project.
The Custom Assembly has got 2 functions, IsInGroup and MyTest:
using System;
using System.Collections.Generic;
using System.Text;
using ...
0
votes
3answers
201 views
System.Security.SecurityException being thrown on initializing StructureMap bootstrapper
I am running a .NET 4.0 web application locally using the Visual Studio Development Server (built in web server with VS2010), and for the last couple months, my StructureMap bootstrapper file has ...
3
votes
1answer
2k views
PowerShell - Decode System.Security.SecureString to readable password
I want to decode the password from a System.Security.SecureString to a readable password.
$password = convertto-securestring "TestPassword" -asplaintext -force
$credentials = New-Object ...
4
votes
2answers
4k views
PowerShell - Get-Credential decode password?
I want to use the Get-Credential cmdlet in my code.
How is is possible to decode the password easily back from the System.Security.SecureString format?
(I must use the password in clear text format ...
2
votes
1answer
1k views
How can you generate OTP with system.security.cryptography that can be authenticated on client?
Anyone know where I could find sample code for this with system.security.cryptography namespace -- or instructions followable by a developer?
The purpose is to add two-factor authentication to an ...
0
votes
1answer
205 views
'Cast object of type' error - resolved by IIS recycle
3rd party ASP.Net web site and web service installed. The code appears not to log errors to server log or custom error log.
User receives the following critical untrapped error message:
...
0
votes
1answer
292 views
Custom extensions in System.Security.Cryptography.X509Certificates
The .NET class System.Security.Cryptography.X509Certificates.X509Extension does not support some X.509 extensions I want to parse (subject alternative name, name constraints). The MSDN page for this ...
2
votes
3answers
929 views
System.Security.Permissions.SecurityPermission and Reflection on Godaddy
UPDATED!
I've highlighted the line that throws the error and added the code-behind for one of my User Controls (its at the bottom).
I have the following method which allows me to dynamically add ...
1
vote
1answer
439 views
NHibernate + Remoting = ReflectionPermission Exception
We are dealing with a problem when using NHibernate with Remoting in a machine with full trust enviroment (actually that's our dev machine).
The problem happens when whe try to send as a parameter an ...
1
vote
2answers
922 views
ProtectedData.Unprotect() after Impersonate()
The following code doesn't work:
IntPtr token = Win32Dll.LogonUser(“user1”, “mydomain”, “password1”);
WindowsIdentity id = new WindowsIdentity(token);
WindowsImpersonationContext ic = ...
4
votes
1answer
2k views
Token-Based Authentication in WCF
I am creating a website which will contain both ASP.NET pages and a Flash applet. I want to encapsulate my business logic in a WCF service which will be exposed through two endpoints: One ...
1
vote
1answer
1k views
RegistryPermission error when call from a C# console app
Just looking for some pointer before I head down the wrong path. I have written small C# console app that opens, reads, writes and deletes from our users registry under both HKEY_LOCAL_MACHINE and ...
3
votes
4answers
9k views
ASP.NET WebPermission Security Exception
I usually hate posting these types of questions as normally I find that the best way to really learn is to figure out the answer yourself.
However, I need an answer to this question really quickly ...