active questions tagged secure - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T16:06:43Z http://stackoverflow.com/feeds/tag/secure http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1889896/transfer-of-entire-contents-including-white-space-of-non-volatile-storage-on-swit 0 Transfer of entire contents including white space of non-volatile storage on switch to a server over ssh mks 2009-12-11T18:13:57Z 2009-12-11T18:13:57Z <p>This is a feature request for our networking switch where a customer wants complete binary dump of the entire contents (including white space) of all the non-volatile storage we have on our equipment (like compact flash/eeprom) to a server over a ssh v2 connection. What is the best way to do this ?</p> http://stackoverflow.com/questions/1875549/django-secure-mail 0 Django + secure mail slowik 2009-12-09T17:35:38Z 2009-12-09T17:35:38Z <p>I tried configure smtp mail with certificate on Django and I receive 'time out' error( code 110 ?). I use this settings:</p> <pre><code>EMAIL_HOST='some.smtp.serwer' EMAIL_HOST_PASSWORD='' EMAIL_HOST_USER='' EMAIL_PORT=495 EMAIL_USE_TLS=True </code></pre> <p>outlook configuration guide informs about certificate installation, maybe this issue is causing this error ?</p> http://stackoverflow.com/questions/1864819/how-to-create-large-resumable-download-from-a-secured-location-net 0 How to create Large resumable download from a secured location .NET Kelvin H 2009-12-08T05:34:24Z 2009-12-08T05:55:00Z <p>I need to preface I'm not a .NET coder at all, but to get partial functionality, I modified a technet chunkedfilefetch.aspx script that uses chunked Data Reading and writing Streamed method of doing file transfer, to get me half-way.</p> <pre><code> ' Open the file. iStream = New System.IO.FileStream(path, System.IO.FileMode.Open, _ IO.FileAccess.Read, IO.FileShare.Read) dataToRead = iStream.Length Response.ContentType = "application/octet-stream" Response.AddHeader("Content-Length", file.Length.ToString()) Response.AddHeader("Content-Disposition", "attachment; filename=" &amp; filedownload) ' Read and send the file 16,000 bytes at a time. While dataToRead &gt; 0 If Response.IsClientConnected Then length = iStream.Read(buffer, 0, 16000) Response.OutputStream.Write(buffer, 0, length) Response.Flush() ReDim buffer(16000) ' Clear the buffer dataToRead = dataToRead - length Else 'prevent infinite loop if user disconnects dataToRead = -1 End If End While </code></pre> <p>This works great on files up to 2GB and is fully functioning now.. But only one problem it doesn't allow for resume.</p> <p>I took the original code called it fetch.aspx and pass an orderNUM through the URL. fetch.aspx&amp;ordernum=xxxxxxx It then reads the filename/location from the database occording to the ordernumber, and chunks it out from a secured location NOT under the webroot. </p> <p>I need a way to make this resumable, by the nature of the internet and large files people always get disconnected and would like to resume where they left off. But any resumable articles i've read, assume the file is within the webroot.. ie. <a href="http://www.devx.com/dotnet/Article/22533/1954" rel="nofollow">http://www.devx.com/dotnet/Article/22533/1954</a> Great article and works well, but I need to stream from a secured location.</p> <p>I'm not a .NET coder at all, at best i can do a bit of coldfusion, if anyone could help me modify a handler to do this, i would really appreciate it.</p> <p>Requirements:</p> <ul> <li>I Have a working fetch.aspx script that functions well and uses the above code snippet as a base for the streamed downloading.</li> <li>Download files are large 600MB and are stored in a secured location outside of the webroot.</li> <li>Users click on the fetch.aspx to start the download, and would therefore be clicking it again if it was to fail. If the ext is a .ASPX and the file being sent is a AVI, clicking on it would completely bypass an IHTTP handler mapped to .AVI ext, so this confuses me</li> <li>From what I understand the browser will read and match etag value and file modified date to determine they are talking about the same file, then a subsequent accept-range is exchanged between the browser and IIS. Since this dialog happens with IIS, we need to use a handler to intercept and respond accordingly, but clicking on the link would send it to an ASPX file which the handeler needs to be on an AVI fiel.. Also confusing me.</li> <li><p>If there is a way to request the initial HTTP request header containing etag, accept-range into the normal .ASPX file, i could read those values and if the accept-range and etag exist, start chunking at that byte value somehow? but I couldn't find a way to transfer the http request headers since they seem to get lost at the IIS level.</p></li> <li><p>OrderNum which is passed in the URL string is unique and could be used as the ETag</p> <pre><code> Response.AddHeader("ETag", request("ordernum")) </code></pre></li> <li><p>Files need to be resumable and chunked out due to size.</p></li> <li>File extensions are .AVI so a handler could be written around it.</li> <li>IIS 6.0 Web Server</li> </ul> <p>Any help would really be appreciated, i've been reading and reading and downloading code, but none of the examples given meet my situation with the original file being streamed from outside of the webroot. Please help me get a handle on these httphandlers :)</p> http://stackoverflow.com/questions/1848142/how-to-make-wcf-sessions-more-secure 1 How To Make WCF Sessions More Secure? avance70 2009-12-04T16:36:12Z 2009-12-04T21:46:42Z <p>let's say we have a WCF service like the one from msdn examples -- c#, calculatorservice, with all the service settings on default.</p> <p>if i were a hacker and i knew that calculatorservice was something important, that i want to make it stop working, i could simply hack the code for service references and make an application of my own that creates 10 clients. these clients would call a random (nonterminating) method on calculatorservice every now on then, to keep the session alive, and never close.</p> <p>now obviously, since all 10 sessions are taken (or whatever the number of maximum sessions is), noone can access the calculatorservice, it is completely blocked!</p> <p>how can we protect our services from that?</p> http://stackoverflow.com/questions/1826044/secure-email-form-header-injection-query 1 secure email form, header injection query Met 2009-12-01T12:58:06Z 2009-12-01T13:05:48Z <p>I'm using the following to clean up input from my contact form:</p> <pre><code>&lt;?php $name = strip_tags(stripslashes($_POST['name'])); //this is repeated for several other fields, then: if(isInjected($name)) { die(); } /* see isInjected function below */ // send the mail ?&gt; </code></pre> <p>I'm using this function:</p> <pre><code>&lt;?php /* function from http://phpsense.com/php/php-mail.html */ function isInjected($str) { $injections = array('(\n+)', '(\r+)', '(\t+)', '(%0A+)', '(%0D+)', '(%08+)', '(%09+)' ); $inject = join('|', $injections); $inject = "/$inject/i"; if(preg_match($inject,$str)) { return true; } else { return false; } } ?&gt; </code></pre> <p>Is this sufficient to clean up my contact form?</p> <p>thanks.</p> http://stackoverflow.com/questions/1821179/jboss5-unauthenticated-calls-to-secured-ejb-via-runas 0 Jboss5, unauthenticated calls to secured EJB via @RunAs javahollic 2009-11-30T17:26:47Z 2009-12-01T10:58:13Z <p>I'm attempting to call methods on a secured EJB from an unauthenticated source (a Message Driven Bean hooked up to a queue). The MDB has an EJB injected into it via @EJB, which is fine, but the target EJB has @SecurityDomain("stuff") and @RequireRole("user"), and on execution generates <em>huge</em> stack traces around:</p> <pre> 17:14:03,275 ERROR [STDERR] java.lang.NullPointerException 17:14:03,276 ERROR [STDERR] at org.jboss.ejb3.security.helpers.EJBContextHelper.getCallerPrincipal(EJBContextHelper.java:99) 17:14:03,276 ERROR [STDERR] at org.jboss.ejb3.EJBContextImpl.getCallerPrincipal(EJBContextImpl.java:136) </pre> <p>I have tried to fix this by providing the role through an interim EJB annotated with @SecurityDomain("stuff") @RunAs("sysuser"), this interim bean has the original target EJB injected into it. My understanding is that the target EJB would have methods invoked from the interim bean under the Role of "sysuser". Yet, I still get the same stack traces, resulting in a database rollback of the create.</p> <p>Is the Path MDB -> SecureEJB possible in some variation other without these stack traces? Is the proxy approach on the right path for success or is there something I need to add in to the mix?</p> <p>Cheers, Andy</p> http://stackoverflow.com/questions/1801579/should-i-start-my-new-shareware-project-in-c-or-delphi 1 Should I start my new shareware project in C# or Delphi? [closed] Hansel 2009-11-26T04:46:50Z 2009-11-28T08:03:30Z <p>I want my code to be as secure as possible.</p> http://stackoverflow.com/questions/1789593/send-altctrldel-c-in-service-mode 0 Send Alt+Ctrl+Del C# in service mode [closed] Aizaz 2009-11-24T11:53:43Z 2009-11-25T19:19:55Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/122367/simulate-control-alt-delete-key-sequence-in-vista-and-xp">Simulate Control-Alt-Delete key sequence in Vista and XP</a> </p> </blockquote> <p>How to send Alt+Ctrl+Del to a remote computer to unlock it? (running in service mode). Like you have seen while using VM there is a button called "Send Alt+Ctrl+Del" and pressing it show login screen.</p> <p><strong>I want to send Secure Attention Sequence to remote computer to unlock it.</strong></p> http://stackoverflow.com/questions/1786000/secure-wcf-service 1 Secure WCF service Matt 2009-11-23T21:12:30Z 2009-11-24T11:28:34Z <p>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 my service?</p> http://stackoverflow.com/questions/1721078/is-there-a-firefox-plug-in-which-can-list-unsecure-assets-which-are-causing-the 2 Is there a Firefox plug in which can list unsecure assets which are causing the "Warning: Contains unauthenticated content" Paul 2009-11-12T09:44:01Z 2009-11-17T11:02:34Z <p>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 cause a warning "Contains unauthenticated content"</p> <p>Don't get me wrong, I understand <em>WHAT</em> this means, but I can't see any reference to any HTTP requests in View source, Firebug, Live HTTP Headers or in the View Page Info > Media window.</p> <p>Does anyone have any tips or ideas of plug ins or tools which can identify exactly which items Firefox is not happy with?</p> <p>Unfortunately this page is not live on the internet so I can't show it to you.</p> <p>Thanks</p> http://stackoverflow.com/questions/113423/good-secure-backups-developers-at-home 23 Good Secure Backups Developers at Home slashmais 2008-09-22T06:16:04Z 2009-11-13T18:28:05Z <p>What is a good, secure, method to do backups, for programmers who do research &amp; development at home and cannot afford to lose any work?</p> <p>Conditions:</p> <ol> <li><p>The backups must ALWAYS be within reasonably easy reach.</p></li> <li><p>Internet connection cannot be guaranteed to be always available.</p></li> <li><p>The solution must be either FREE or priced within reason, and subject to 2 above.</p></li> </ol> <p><hr /></p> <h2>Status Report</h2> <p>This is for now only considering free options.</p> <p>The following <strong>open-source projects</strong> are suggested in the answers (here &amp; elsewhere):</p> <ul> <li><a href="http://backuppc.sourceforge.net/" rel="nofollow">BackupPC</a> is a high-performance, enterprise-grade system for backing up Linux, WinXX and MacOSX PCs and laptops to a server's disk.</li> <li><a href="http://savannah.nongnu.org/projects/storebackup" rel="nofollow">Storebackup</a> is a backup utility that stores files on other disks.</li> <li><a href="http://deekayen.net/mybackware" rel="nofollow">mybackware</a>: These scripts were developed to create SQL dump files for basic disaster recovery of small MySQL installations.</li> <li><a href="http://www.bacula.org/en/" rel="nofollow">Bacula</a> is [...] to manage backup, recovery, and verification of computer data across a network of computers of different kinds. In technical terms, it is a network based backup program.</li> <li><a href="http://www.metatrontech.com/projects/" rel="nofollow">AutoDL 2 and Sec-Bk</a>: AutoDL 2 is a scalable transport independant automated file transfer system. It is suitable for uploading files from a staging server to every server on a production server farm [...] Sec-Bk is a set of simple utilities to securely back up files to a remote location, even a public storage location.</li> <li><a href="http://www.rsnapshot.org/" rel="nofollow">rsnapshot</a> is a filesystem snapshot utility for making backups of local and remote systems.</li> <li><a href="http://schapiro.org/schlomo/projects/rbme.php" rel="nofollow">rbme</a>: Using rsync for backups [...] you get perpetual incremental backups that appear as full backups (for each day) and thus allow easy restore or further copying to tape etc.</li> <li><a href="http://www.nongnu.org/duplicity/" rel="nofollow">Duplicity</a> backs directories by producing encrypted tar-format volumes and uploading them to a remote or local file server. [...] uses librsync, [for] incremental archives</li> </ul> <p><strong>Other Possibilities:</strong></p> <p>Using a Distributed Version Control System (DVCS) such as <a href="http://git.or.cz/" rel="nofollow">Git</a>(/<a href="http://www.gnome.org/~newren/eg/" rel="nofollow">Easy Git</a>), <a href="http://bazaar-vcs.org/" rel="nofollow">Bazaar</a>, <a href="http://www.selenic.com/mercurial/wiki/" rel="nofollow">Mercurial</a> answers the need to have the backup available locally. </p> <p>Use free online storage space as a remote backup, e.g.: compress your work/backup directory and mail it to your gmail account.</p> http://stackoverflow.com/questions/1452527/how-secure-is-this-architecture 3 How secure is this architecture? parxier 2009-09-21T01:33:22Z 2009-11-08T13:11:30Z <p>Hi,</p> <p>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 user to view some part of the secured data (e.g., <code>*****ze</code>) and/or change it completely via web. System should provide reasonable level of security.</p> <p>I was thinking of the following infrastructure:</p> <p><strong>App (Web) Server 1</strong></p> <ol> <li><p>Web server with proper TLS support for secured web connections.</p></li> <li><p>Use public-key algorithm (e.g. RSA) to encrypt entered user sensitive data and send it to <em>App Server 2</em> via one-way outbound secured channel (e.g. ssh-2) without storing it anywhere on either <em>App Server 1</em> or <em>DB Server 1</em>.</p></li> <li><p>Use user-password-dependent symmetric-key algorithm to encrypt some part of the entered data (e.g. last few letters/digits) and store it on the <em>DB Server 1</em> for later retrieval by <em>App Server 1</em> during user web session.</p></li> <li><p>Re-use step 2 for data modification by user via web.</p></li> </ol> <p><strong>DB Server 1</strong></p> <ol> <li>Store unsecured non-sensitive user data.</li> <li>Store some part of the sensitive user data encrypted on <em>App Server 1</em> (see step 3 above)</li> </ol> <p><strong>App Server 2</strong></p> <ol> <li>Do <strong>NOT</strong> <strong>EVER</strong> send anything <strong>TO</strong> <em>App Server 1</em> or <em>DB Server 1</em>.</li> <li>Receive encrypted user sensitive data from <em>App Server 1</em> and store it in <em>DB Server 2</em>.</li> <li>Retrieve encrypted user sensitive data from <em>DB Server 2</em> according to the local schedules, decrypt it using private key (see <em>App Server 1</em>, step 2) stored locally on <em>App Server 2</em> with proper key management.</li> </ol> <p><strong>DB Server 2</strong></p> <ol> <li>Store encrypted user sensitive data (see <em>App Server 2</em>, step 2)</li> </ol> <p>If either <em>App (Web) Server 1</em> or <em>DB Server 1</em> or both are compromised then attacker will not be able to get any user sensitive data (either encrypted or not). All attacker will have is access to public-key and encryption algorithms which are well known anyway. Attacker will however be able to modify web-server to get currently logged users passwords in plaintext and decrypt part of user sensitive data stored in DB Server 1 (see <em>App Server 1</em>, step 3) which I don't consider as a big deal. Attacker will be able to (via code modification) also intercept user sensitive data entered by users via web during potential attack. Later I consider as a higher risk, but provided that it is hard (is it?) for attacker to modify code without someone noticing I guess I shouldn't worry much about it.</p> <p>If <em>App Server 2</em> and private key are compromised then attacker will have access to everything, but <em>App Server 2</em> or <em>DB Server 2</em> are not web facing so it shouldn't be a problem.</p> <p>How secure is this architecture? Is my understanding of how encryption algorithms and secured protocols work correct?</p> <p>Thank you!</p> http://stackoverflow.com/questions/1691229/how-does-im-remember-password-securely 1 how does IM remember password securely? unknown (yahoo) 2009-11-06T23:30:35Z 2009-11-08T00:16:35Z <p>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 BCrypt. However it stores hashed value and i can't send it to the server to authenticate. Others suggested do not save but that is not very practical as i will have to ask user to enter password everytime my app starts which is very annoying</p> http://stackoverflow.com/questions/1595128/securing-an-asp-net-web-service-for-use-with-jquery-ajax 0 securing an asp.net web service for use with jquery ajax rap-uvic 2009-10-20T14:42:22Z 2009-11-05T21:54:53Z <p>Hi,</p> <p>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 you have to be logged in to the application. However I'd like to further secure it. For example a consultant looking up all their customers in an autocomplete box is good, but they can instead send in some other consultant's id. What's the best way to secure this? I've looked at this article here <a href="http://msdn.microsoft.com/en-us/library/w67h0dw7%28VS.71,classic%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/w67h0dw7%28VS.71,classic%29.aspx</a> . However, I don't know how to make this work with jquery ajax. Any help would be appreciated. </p> http://stackoverflow.com/questions/1321080/how-to-secure-my-c-program-exe-for-using-on-one-drive-only 0 how to secure my c# program(.exe) for using on one drive only. Armen Khachatryan 2009-08-24T08:17:59Z 2009-11-03T20:28:42Z <p>Hello,<br /> I have c# program (.exe), I will give it to other people, and want that exe to work only from where it was run the first time, any copy should no not work. How can I do it?<br /> VERY THANKS</p> http://stackoverflow.com/questions/1565188/securely-connect-mysql-via-php-in-actionscript-3-using-amfphp-framework 2 Securely Connect MySQL via PHP in ActionScript 3 using AMFPHP framework Shivan Raptor 2009-10-14T09:24:42Z 2009-10-26T22:46:27Z <p>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 sending between 2 sides (other than hashing password in MD5)? As far as I know, by default, AMFPHP sends out data in plain text.</p> <p>Also, I heard that the CPU usage during network requests in Flash is quite high. Any lightweight framework suggestion?</p> http://stackoverflow.com/questions/1601898/how-do-i-view-the-insecure-items-on-a-secure-page 0 How do I view the insecure items on a secure page. jimoc 2009-10-21T16:11:33Z 2009-10-21T16:22:09Z <p>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 coming up.</p> <p>However it doesn't matter whether they answer yes or no to the question, they still get all of the functionality of the site.</p> <p>We cannot ask them to disable the warning, since they would then consider our application not secure and not use it.</p> <p>I've installed Httpwatch and none of the resources or urls being loaded are insecure. The codebase for any flash objects is called using https: I've checked for any removechild() function calls in the scripts and none of them are called on divs with a background image. We have no calls to javascript:void anywhere in the codebase.</p> <p>I'm at a loss as to what to check next. Is there any way without being too intrusive, to find out what insecure objects the page is trying to load? This has to be something that will work on IE7 or 8 as we are not allowed to install anything on their machines.</p> http://stackoverflow.com/questions/1558207/secure-communication-between-django-server-and-iphone-app 3 Secure communication between django server and iphone app Andres 2009-10-13T04:38:04Z 2009-10-19T21:18:42Z <p>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 interact with it. I would like this information to remain confidential, so I'm thinking of some sort of encryption or secure connection would be necessary.</p> <p>My question is about the server side of things. The server the iPhone app has to communicate with is written in django and is running on lighttpd. What is the most appropriate way (or what is a standard way) of doing this. I was thinking https, which I know on the iPhone I can use ASIHTTPRequest to do a POST request, but I don't know what it requires on the server side. Do I need a certificate? How does the data get encrypted/secured? Are there any django modules to help with this? Do I have to do something to configure lighttpd?</p> <p>Would something like xml-rpc or json-rpc be simpler? Is it possible to secure such communication? At what level would that occur?</p> <p>Any help would be much appreciated.</p> http://stackoverflow.com/questions/1587806/how-to-load-xml-from-https-using-xmltextreader 1 How to load xml from https using XmlTextReader awe 2009-10-19T09:48:36Z 2009-10-19T10:11:44Z <p>I am using <code>System.Xml.XmlTextReader</code> 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? </p> http://stackoverflow.com/questions/1559705/secure-custom-login-control-asp-net 0 Secure custom login control ASP.NET Gargamel 2009-10-13T11:42:12Z 2009-10-13T11:59:46Z <p>Problem: I want to create a custom log in control that posts securely to HTTPS without affecting other submit buttons on the page.</p> <p>If I had been writing this in ASP.NET MVC or any other language for that matter, I would just create a new form tag with an form action="https://...". Now I'm stuck in a ASP.NET web forms site. That means that I can only have one forms tag in the entire page, thus ripping me off on that easy solution.</p> <p>What have I tried? </p> <ol> <li><p>I've changed the pages entire form during pre render so that the action posts to a HTTPS dress. But as I stated before, this will make all other buttons on the page also submit via SSL. I don't want that.</p></li> <li><p>I've done practically the same thing using JavaScript. The nice thing about this is that I can bind the fiddeling of the action attribute to a specific button. The drawback is that If the user disables JavaScript or doesn't have support the user name and password will be submitted in clear text.</p></li> <li><p>A composite approach. I could use AJAX to load a page containing the control that uses JavaScript to change the post. That way the control won't even be rendered if the user doesn't have JavaScript and instead render a button that sends the user to a log in page. </p></li> </ol> <p>The last alternative is the best choice in my situation but it gets complicated without going into details.</p> <p>So my question is, Is there any other way of achieving a secure loginin control in ASP.NET without the use of JavaScript?</p> <p>I've been searching my finger off for a solution to this problem without finding anything so if any one can crack this nut, kudos!</p> http://stackoverflow.com/questions/1498136/pre-compiled-websites-code-security 0 Pre-Compiled websites code security Ahmed Khalaf 2009-09-30T13:30:23Z 2009-10-11T20:19:19Z <p>How far pre-compiling a website or project in VWD is safe ?</p> <p>I know that Reflector can retrieve the whole thing again (as it will be IL at the end of the day), and I heard that obfuscation won't go so far (not sure) there is tools to deal with obfuscation.</p> <p>Is there a good solution to guarantee that clients don't get to the underlying Solution architecture, and algorithms ? [plz consider the case where the client is a pro or an IT company]</p> http://stackoverflow.com/questions/1013989/sometimes-when-i-secure-a-pdf-in-adobe-acrobat-acrobat-8-doesnt-show-text-or-ima 0 Sometimes when I secure a pdf in Adobe Acrobat Acrobat 8 doesn't show text or images in that new document Neo42 2009-06-18T17:17:02Z 2009-10-05T17:05:07Z <p>It's consistent on certain documents too. The only solution I have at the moment is to print a PDF of the document and then secure that version of the document. That seems to bypass the issue. But I have 5000 documents I'm batch processing and I'd rather not have to mess with such things..</p> http://stackoverflow.com/questions/1465271/securing-xml-plists-in-cocoa-objective-c 5 Securing xml plists in Cocoa / Objective C JK 2009-09-23T10:49:32Z 2009-09-23T11:26:47Z <p>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 that it cannot be extracted easily from the app bundle by another party after distribution. Is there any way to secure or encrypt xml plists that one includes within your app bundle?</p> <p>Any help would be greatly appreciated please.</p> http://stackoverflow.com/questions/1391532/video-streaming-api 0 Video streaming API josh 2009-09-08T01:24:24Z 2009-09-08T02:35:29Z <p>Current situation: Users are downloading the whole video clip (>70mb or >140mb). This is not as effective as we would like.</p> <p>[I am a non programmer looking for a solution]... I want to be able to stream video for a professional development package from our servers to the user. The user logs in and access the video from the dashboard. I wanted to use Youtube Api for this, but we are apprehensive in using it as we cannot dissallow others that aren't in the subscription to view it.</p> <p>Does any one recommend a solution for this problem i can give to our programming team?</p> <p>thanks in advance for your advice!</p> http://stackoverflow.com/questions/1360680/is-there-a-way-to-use-bindings-with-an-editable-nssecuretextfieldcell-in-an-nstab 0 Is there a way to use bindings with an editable NSSecureTextFieldCell in an NSTableView? eJames 2009-09-01T05:32:00Z 2009-09-01T06:33:27Z <p>I have an <code>NSTableView</code> with several columns, one of which is set up to use an <code>NSSecureTextFieldCell</code> as its <code>dataCell</code>. I am using a properly configured <code>NSArrayController</code> to provide data to this table.</p> <p>The problem is that my secure text field does not want to work. It shows an appropriate number of dots for the strings that it holds, but it is not editable! I am unable to make changes to the secure text.</p> <p>Just to be sure, I did the same thing with a regular <code>NSTextFieldCell</code>, and everything works like a charm. I have the bindings set up properly, and the column <em>is</em> set to be editable.</p> <p>I was able to find a reference to the <a href="http://lists.apple.com/archives/Cocoa-dev/2006/May/msg01866.html" rel="nofollow">same problem</a> on Apple's developer mailing list, but the workaround posted there is from 2006.</p> <p><strong>Is there a fix for this particular problem?</strong><br /> or<br /> <strong>Does anyone have a better workaround,</strong> perhaps something that still allows the use of bindings?</p> http://stackoverflow.com/questions/1347810/session-handling-in-php 1 Session handling in PHP Indranil 2009-08-28T15:40:19Z 2009-08-28T15:50:56Z <p>What is the best &amp; most secure way you've handled sessions in a PHP application? I want to know the best, most robust and secure method there is. :)</p> http://stackoverflow.com/questions/1314055/is-it-possible-to-enforce-web-service-calls-from-known-client-only 0 Is it possible to enforce web service calls from known client only? Magnus Johansson 2009-08-21T20:30:00Z 2009-08-22T03:19:59Z <p>Scenario:</p> <p>A publically available Web Service that I have full control over. But I only want this specific desktop application (my published application) to have access to the Web Service. I could store a secret password in the desktop client, but that would be easy to crack.</p> <p>Is there any known implementation that enforces this? PKI, assymmetric keys?</p> http://stackoverflow.com/questions/1234990/ie-this-page-contains-both-secure-and-non-secure-items 1 IE - "This page contains both secure and non-secure items"... Luke Skinner 2009-08-05T18:39:32Z 2009-08-06T19:49:08Z <p>I've googled and googled for an answer to this and have found loads of answers - all saying pretty much the same thing. Remove any absolute references to images, scripts etc. I did that, but it's made no difference.</p> <p>I searched the code for the string "http://" and made them relative (I've then changed some of the outbound links back to http to prevent searchbots finding a duplicate (https) version of our entire site) - but I don't think that's a problem, is it?</p> <p>Please, could anyone take a look at the code, and see if they can find anything? The page is here: <a href="https://www.droverholidays.co.uk/bikehireform.php" rel="nofollow">https://www.droverholidays.co.uk/bikehireform.php</a></p> <p>Many, many thanks in advance!</p> http://stackoverflow.com/questions/1087591/why-is-chrome-reporting-a-secure-non-secure-warning-when-no-other-browsers-aren 4 Why is Chrome reporting a secure / non secure warning when no other browsers aren't? Frank Edwards 2009-07-06T15:21:58Z 2009-08-05T19:29:54Z <p>When I go to our web site through HTTPS mode, Chome is reporting an error saying that the page contains secure and not secure items. However, I used Firebug, Fiddler, and HttpDebuggerPro, all which are telling me that everything is going through HTTPS. Is this a bug in Chrome?</p> <p>Sorry but I'm unable to give out the actual URL.</p> http://stackoverflow.com/questions/1221785/how-do-i-prevent-non-legit-client-apps-from-using-my-server 3 How do I prevent non-legit client apps from using my server? typhoid 2009-08-03T11:18:16Z 2009-08-03T11:41:21Z <p>I’m currently writing a pair of client/server applications. I was recently posed with the question of “how do I prevent someone from writing their own client application and using our server?” I really didn’t have an answer to that question because all of the secure communication stuff I have done to date is to ensure the communications between the client and server are encrypted. This would be a departure from that train of thought in that – how do I ensure the client application on the other end is the client application I want to talk to (and not someone pretending to be my client application)? </p> <p>Anyone have any thoughts on a reasonable way to do this?</p>