https

How do I implement Https on asp.net mvc login page?

How do I implement Https on asp.net mvc login page? ...

How to include files with HTTPS - PHP

I made a form process and broke the code up into different files to stay clean and organized. Now I am setting up the form for https security. Do all the files I pull into my page have to be called as https as well? In which case I can no longer use include(); as it no longer allows relative paths? Is the solution to use file_get_cont...

Achieving AES-256 Channel Encryption with the .NET Compact Framework

Hi There, I am working on a business application where the clients are Windows Mobile 6.1 Professional devices. The server is a Java enterprise application. The industry working group recommends AES-256 encryption for client/server communications. This is necessary to gain certification. The encryption doesn't necessarily need to be ch...

https form validation not passing SESSION VARIABLES - PHP

I had my form processes working perfectly but after renaming the form action to <form action="https://www.example.com/validate.php" method="post"> for working with an SSL certificate it stopped working. Seems as though the SESSION variables are no longer being passed properly... Is there something I should know about https an...

Is my form secure? - php

I have a 4 step form process. form.php, validation.php, review.php and complete.php Form.php posts to validate.php which depending on the validation redirects either back to form.php or to review.php. The final step is complete.php Each page is called with HTTPS except validate.php which is where the SESSION variables are created a...

HTTP and HTTPS sniffer for Windows

Hi. Does any of you know a good HTTP / HTTPS packet sniffer for Windows? I need it for debugging a webapp I prefer open source (.NET), but shareware or paid products are also of interest. /Thanks ...

Https POST from Php to C#

Hi, I have to make a post to a third party https url to get data procesed and sent back. And all I have as an example is this: $signature= foo_string; $data_to_post = json_dictionary; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $base_url); curl_setopt($ch, CURLOPT_USERPWD, "$user:$password"); curl_setopt($ch, CURLOPT_HTTPAUTH, CUR...

Python HTTPS client with basic authentication via proxy

From Python, I would like to retrieve content from a web site via HTTPS with basic authentication. I need the content on disk. I am on an intranet, trusting the HTTPS server. Platform is Python 2.6.2 on Windows. I have been playing around with urllib2, however did not succeed so far. I have a solution running, calling wget via os.syste...

How to implement a HTTPS login page in a web application?

I want to create a secure login/logout mechanism. I started reading the following articles to get an idea of things to take into account: Solving the Logout Problem Properly and Elegantly Revisiting the logout problem These articles make some good points, but I was thinking in using HTTPS in a similar way as the Yahoo mail login pag...

where can i find an example of how to setup https on java where https is not supported

Hi, Does anyone have a good example of how to do https over http (or a socket)? The embedded java platform doesn't support https out of the box, but I'm sure it should be possible using some 3rd party libraries or source code snippets. If anyone can point me to the correct direction I'd be very grateful ...

HTTPS vs HTTP speed comparison

I'm considered running my entire e-commerce website under https. I decided to run a crude benchmark to measure the download time of a 156KB image through https vs http because I had read that https is burdened with additional overhead from the encryption process. Benchmark was performed using Firefox's Firebug simply by transcribing the...

HTTPS Form Submission with cURL(or anything better)

function login_board($url,$ch) { $cookie="cookie.txt"; curl_setopt( $ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1" ); curl_setopt( $ch, CURLOPT_URL, $url ); curl_setopt( $ch, CURLOPT_COOKIEJAR, $cookie ); curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, true ); ...

Writing python client for SOAP with suds

Dear python programmers, I want to convert a perl SOAP client into a python SOAP client. The perl client is initialized like $url = 'https://host:port/cgi-devel/Service.cgi'; $uri = 'https://host/Service'; my $soap = SOAP::Lite -> uri($uri) -> proxy($url); I tried to replicate this in python 2.4.2 with suds 0.3.6 doing fro...

Python urllib2 HTTPS and proxy NTLM authentication

Hello, urllib2 doesn't seem to support HTTPS with proxy authentication in general, even less with NTLM authentication. Anyone knows if there is a patch somewhere for HTTPS on proxy with NTLM authentication. Regards, Laurent ...

how to use a private yum repo on amazon-s3 to provision amazon-ec2 instances?

My fantasy is to be able to spin up a standard AMI, load a tiny script and end up with a properly configured server instance. Part of this is that I would like to have a PRIVATE yum repo in S3 that would contain some proprietary code. It seems that S3 wants you to either be public or use AMZN's own special flavor of authentication. Is...

VS2008, Debugging, Local IIS Server vs Use Custom Web Server, SSL/https

I am debugging a vs2008 web application project using the custom web server option and some of the pages are using https. I can debug https pages. Using iis7/Vista. The way I'm doing it is: name of the self signed certificate is assigned to trucks custom server url: http://trucks hosts file: 127.0.0.1 trucks publish to http://trucks ...

git-svn anonymous checkout fails with -s

I'm trying to use git to clone an svn repository with std layout (using the -s option). The repository uses https anonymously (the repository is at https://secure.simplistix.com/svn/xlwt/). I can check the repository out fine using svn, but with git-svn I get password prompts and then cannot check out (I don't have an account for this re...

When does HTTPS handshake take place?

I understand from various sources that the HTTPS handshake is the heaviest part of using HTTPS. I'm using POSTs internally between my servers to communicate information and would like to use HTTPS for it. I wondered how long the actual HTTPS handshake lasts/"stays open"? Is it re-done for each POST I'm sending to a server, or what is the...

SSL post transmission encryption

There is an external server posting data back to my server that is coming from an https address. The address it is posting to on my end is an http (no SSL) address. How does SSL encryption work between servers? Will this data be encrypted between the external server and my server, or does there need to be SSL on both ends to have the da...

POCO C++ - NET SSL - how to POST HTTPS request

Hello How to correctly do a POST to HTTPS server and embed the login data correctly. Below code does not return any cookies (in Wininet it does). I wonder how POCO HTTP library handles HTTP redirections? MyApp() { try { const Poco::URI uri( "https://localhost.com" ); const Poco::Net::Context::Ptr context( new Po...