all groups > dotnet security > may 2005 > threads for may 22 - 28, 2005
Filter by week: 1 2 3 4 5
error passing byte[] of encrypted data to Web Service
Posted by ChuckD_Duncan at 5/28/2005 9:44:14 AM
Have Web Service: bool Login( byte[] A, byte[] B );
If I just send a couple of simple strings, it works fine ... as in:
byte[] A = Encoding.Default.GetBytes("First");
byte[] B = Encoding.Default.GetBytes("Last");
but changing A to a 100+ byte encypted sequence of bytes, causes an
e... more >>
web application development user rights req
Posted by maidoo at 5/28/2005 8:48:02 AM
as mentioned in the documents supplied with the VS.NET that the user need to
be part of the (vs developers) group to develope and test web app. and
(debbuger) group in order to debbug the app, and that no need to b part of
the admin group
well , i tried this out but it didn't work so far , wh... more >>
.Net Authorization and NTFS permissions
Posted by Wade Mebed at 5/27/2005 9:57:01 AM
We get inconsistent application behavior on Authorization based on NTFS ACL
Permissions.
We implemented an ASP.NET 1.1 web application using NTFS ACL Authorization,
and implemented a security audit logging call in the
Application_AuthorizeRequest event of the Global.asax:
protected void A... more >>
CAPICOM problem:cannot access certificate store
Posted by edwards at 5/27/2005 2:30:02 AM
Hello, Could you help me ?
I am developing a web application that needs to create a signature. To do
this I am using CAPICOM but I have a problem:
When I try to obtain the certificate from a certificate store but I get a
exception which says that the Certificate store is empty (this is not tr... more >>
Protect source
Posted by Fabrice at 5/27/2005 12:00:00 AM
hello
I'm creating an internet application in vb.net to. Whithout Visual studio
and with the Framework 1.1
I have a lot of file, .aspx, .aspx.vb, .ascx...
What is the best way to protect the source and to crypt them ?
I don't know how to do that ? Do you hnow diffrents turoials ?
Compila... more >>
HKEY_USERS, what is it for?
Posted by Sathyaish at 5/26/2005 7:52:41 AM
What is the Windows registry hive HKEY_USERS for?
... more >>
Impersonation through HttpModule
Posted by otto at 5/26/2005 1:16:04 AM
Hi, all:
I have a question about security in ASP.NET applications. We´ve to develop
several applications. All of them with Windows integrated security in IIS.
Each application must run under one domain account (each application has its
own account), so we´ve to use impersonation. How can I ... more >>
sslstream and certificates
Posted by Jakob Nielsen at 5/26/2005 12:00:00 AM
Using net 2.0
I try creating a sslStream from a regular networkstream as folows
Socket clientSocket = serverSocket.EndAccept(result);
clientSocket.Blocking = true;
Stream clientStream = new NetworkStream(clientSocket);
SslStream sslStream = new SslStream(clientStream);
X509Certificate cert... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
DPAPI
Posted by Johan at 5/26/2005 12:00:00 AM
Hi,
How does the DPAPI work when using machinestore? Does all users on the
machine have access to the encrypted data?
Or is it possible to set an access list?
Johan... more >>
IIS / SQL Server impersonation
Posted by matthew_glen_evans NO[at]SPAM hotmail.com at 5/25/2005 7:38:08 AM
Hi
I am attempting to implement impersonation from a windows application
to a SQL Server database via a remoting middleware application(hosted
in IIS 6 on W2003 Server).
I have configured the host virtual directory in IIS to require windows
authentication, and anyonymous access is off.
W... more >>
hotmail
Posted by TB at 5/24/2005 7:52:03 AM
i can't get into hotmail because of the .NET passport itmakes me write the
characters i see and then asks me to sign in and them continues to ask me to
write what i see and sign in. I HAVE 89 UNREAD MAIL MESSAGES I NEED TO SEE
ONE OF THEM WHICH IS VERY IMPORTANT AND I CANNOT get to them... more >>
How many keys?
Posted by Ryan Taylor at 5/23/2005 2:58:27 PM
Hello.
I am developing an application with multiple assemblies. I have all the
projects contained in one solution just to make code management a little
easier. However, is it recommended to have one key for strong naming for all
the assemblies (projects) or should if assembly be strong name... more >>
problem:referenced assembly "XPCommonControls(a free third party component)" has no strongName.
Posted by jerry Lee at 5/23/2005 12:00:00 AM
I use a free third component in my solution. and considering of security, I
generate a Key.snk and using in this project. when i now generate this
solution, the compiler told me this info:
generate assembly failure -- referenced assembly "XPCommonControls(a free
third party component)" has no st... more >>
|