1
vote
2answers
25 views
secure email form, header injection query
I'm using the following to clean up input from my contact form:
<?php
$name = strip_tags(stripslashes($_POST['name']));
//this is repeated for several other fields, then:
if(isInjected($name)) { …
1
vote
10answers
387 views
Should I start my new shareware project in C# or Delphi? [closed]
I want my code to be as secure as possible.
0
votes
4answers
111 views
Send Alt+Ctrl+Del C# in service mode [closed]
Possible Duplicate:
Simulate Control-Alt-Delete key sequence in Vista and XP
How to send Alt+Ctrl+Del to a remote computer to unlock it? (running in service mode).
Like you have seen while …
1
vote
2answers
26 views
Secure WCF service
I am very new to using WCF services. Right now I have a WCF service that I call using jQuery. I'm concerned about users making unauthorized calls to the service. What would be the best way to secure …
2
votes
2answers
41 views
Is there a Firefox plug in which can list unsecure assets which are causing the “Warning: Contains unauthenticated content”
I am developing web pages which reference external links/images/stylesheets etc. I have 1 page which loads fine in HTTPS, but then when I apply different external styles, some of the external styles …
1
vote
9answers
202 views
how does IM remember password securely?
How can msn messenger and others provide a way to remember password on disk and then send it to the server for authentication later?
I searched for this topic and found a couple solutions such as …
2
votes
4answers
236 views
Securely Connect MySQL via PHP in ActionScript 3 using AMFPHP framework
My Flash movie would like communicate with MySQL server to fetch and save data between MySQL and SWF. I know AMFPHP can help with the communication, but is there a secure way to encrypt the texts …
0
votes
2answers
44 views
securing an asp.net web service for use with jquery ajax
Hi,
I'm using jquery ajax to fetch data from an asp.net webservice. I'm wondering how I can secure it and have it work with jquery ajax. The service is part of my web application and to access it …
3
votes
3answers
153 views
How secure is this architecture?
Hi,
I'm building a system that need to collect some user sensitive data via secured web connection, store it securely on the server for later automated decryption and reuse. System should also allow …
23
votes
22answers
1k views
Good Secure Backups Developers at Home
What is a good, secure, method to do backups, for programmers who do research & development at home and cannot afford to lose any work?
Conditions:
The backups must ALWAYS be within reasonably …
3
votes
3answers
192 views
Secure communication between django server and iphone app
I'm writing an iPhone application that needs to send small bits of information (two strings of under 128 characters each, at a time, and this doesn't happen too frequently) to a server when users …
1
vote
2answers
46 views
How to load xml from https using XmlTextReader
I am using System.Xml.XmlTextReader to read xml stream from a http location. Now I need support to read from a secure https site. How can I do this by providing user credentials in some way?
0
votes
2answers
72 views
How do I view the insecure items on a secure page.
I have a web application which works perfectly fine on my own machines, perfectly fine on my customer's PCs but on their customers machines each page they visit they get a prompt for the Mixed Content …
0
votes
3answers
148 views
Secure custom login control ASP.NET
Problem:
I want to create a custom log in control that posts securely to HTTPS without affecting other submit buttons on the page.
If I had been writing this in ASP.NET MVC or any other language for …
5
votes
1answer
139 views
Securing xml plists in Cocoa / Objective C
I am writing an application which reads information from am xml plist in the bundle upon startup. The information in the plist has been compiled through many days of work and I would like to ensure …
