opensslが受信したときにコマンドラインから直接http / sに応答するようにする方法

opensslが受信したときにコマンドラインから直接http / sに応答するようにする方法

openssl s_serverがコマンドラインまたはサーバー自体(サーバーはcentOSを使用)から直接すべてのhttp(s)要求に応答するようにするにはどうすればよいですか?それは可能ですか?

openssl s_serverの-helpコマンドで、次の目的で使用する必要がある-HTTPフラグがあることを確認してください。

 -WWW          - Respond to a 'GET /<path> HTTP/1.0' with file./<path> 
 -HTTP         - Respond to a 'GET /<path> HTTP/1.0' with file ./<path>
                  with the assumption it contains a complete HTTP response.

これで私の問題を解決できますか?その場合は、このフラグの使用方法の例が見つからないので、正確に使用する方法を知りたいと思います。

私が実行したいコマンドは簡単です。

openssl s_server -key key.pem -cert cert.pem -msg

よろしくお願いします!

ベストアンサー1

-WWWまたはを-HTTP使用すると、s_server現在のディレクトリのファイルを使用する静的コンテンツHTTPSサーバーとして機能します。デモに使用した完全な設定は次のとおりです。

$ openssl req -x509 -nodes -newkey rsa -keyout key.pem -out cert.pem -subj /CN=localhost
$ echo 'hello, world.' >index.txt
$ openssl s_server -key key.pem -cert cert.pem -WWW
Using default temp DH parameters
Using default temp ECDH parameters
ACCEPT

s_serverこれで、ポート4433でHTTPS要求を待っています。他のシェルで使用するようにs_server要求できますcurl

$ curl -kv https://localhost:4433/index.txt
* Hostname was NOT found in DNS cache
*   Trying 127.0.0.1...
* Connected to localhost (127.0.0.1) port 4433 (#0)
* successfully set certificate verify locations:
*   CAfile: none
  CApath: /etc/ssl/certs
* SSLv3, TLS handshake, Client hello (1):
* SSLv3, TLS handshake, Server hello (2):
* SSLv3, TLS handshake, CERT (11):
* SSLv3, TLS handshake, Server key exchange (12):
* SSLv3, TLS handshake, Server finished (14):
* SSLv3, TLS handshake, Client key exchange (16):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSL connection using TLSv1.2 / ECDHE-RSA-AES256-GCM-SHA384
* Server certificate:
*    subject: CN=localhost
*    start date: 2015-06-01 15:29:02 GMT
*    expire date: 2015-07-01 15:29:02 GMT
*    issuer: CN=localhost
*    SSL certificate verify result: self signed certificate (18), continuing anyway.
> GET /index.txt HTTP/1.1
> User-Agent: curl/7.38.0
> Host: localhost:4433
> Accept: */*
> 
* HTTP 1.0, assume close after body
< HTTP/1.0 200 ok
< Content-type: text/plain
< 
hello, world.
* Closing connection 0
* SSLv3, TLS alert, Client hello (1):

$ curl -k https://localhost:4433/not-existence
Error opening 'not-existence'
140226499298960:error:02001002:system library:fopen:No such file or directory:bss_file.c:169:fopen('not-existence','r')
140226499298960:error:2006D080:BIO routines:BIO_new_file:no such file:bss_file.c:172:

要求ごとにs_server要求されたパスを印刷し、次の要求をもう一度待ちます。

FILE:index.txt
ACCEPT

CGIのように、要求に応じてスクリプトを実行するには、次のような他のツールを使用する必要があります。ソカット

$ echo 'echo "Your request is $(head -1)"' > server.sh
$ socat openssl-listen:4433,cert=cert.pem,key=key.pem,verify=0,reuseaddr,fork exec:"bash server.sh"

結果:

$ curl -k https://localhost:4433/index.txt
Your request is GET /index.txt HTTP/1.1

おすすめ記事