<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/sslscan/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/sslscan/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Tue, 20 May 2014 11:04:38 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/sslscan/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>Invalid result - many ciphers "failed"</title><link>https://sourceforge.net/p/sslscan/bugs/15/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;used version: sslscan 1.8.2 precompiled from Ubuntu 14.04 amd64&lt;/p&gt;
&lt;p&gt;While using sslscan I noticed that a lot of ciphers were missing compared to the result of &lt;a href="https://www.ssllabs.com/ssltest." rel="nofollow"&gt;https://www.ssllabs.com/ssltest.&lt;/a&gt; The missing ciphers were marken in sslscan as "failed", however if I connect to the tested server using openssl s_client the "failed" cipher works without any problems.&lt;/p&gt;
&lt;p&gt;Example: sslscan --http --tls1 ssllabs.com:443 marks the cipher "ECDHE-RSA-AES256-GCM-SHA384" as "failed".&lt;/p&gt;
&lt;p&gt;Executing "openssl s_client -host ssllabs.com -port 443" results in the cipher ECDHE-RSA-AES256-GCM-SHA384 to be used. &lt;/p&gt;
&lt;p&gt;This also happens with other ciphers that use SHA256 and SHA384.&lt;/p&gt;
&lt;p&gt;Therefore the result of sslscan is unreliable.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">jpstotz</dc:creator><pubDate>Tue, 20 May 2014 11:04:38 -0000</pubDate><guid>https://sourceforge.netaef163ca3b2f4ceb407270dcf0e30ea58d7da68e</guid></item><item><title>Invalid XML files</title><link>https://sourceforge.net/p/sslscan/bugs/14/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;When scanning live.vodafone.es and generating an XML output file, some characters aren't correctly escaped. This causes XML parsers to fail to read the file, but at its worst, it can also cause a security issue if a malicious site is scanned and the resulting XML file is fed to a parser (XML injection vulnerability).&lt;/p&gt;
&lt;p&gt;I've attached the XML file showing the problem, look for unescaped ampersands in the "extension" tag near the end of the file.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mario Vilas</dc:creator><pubDate>Mon, 03 Feb 2014 16:33:01 -0000</pubDate><guid>https://sourceforge.net5d9b60e37ac689233d01b2797c357f88d2159d2d</guid></item><item><title>sslscan does not honor OpenSSL config options</title><link>https://sourceforge.net/p/sslscan/bugs/13/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;OpenSSL configured &lt;em&gt;without&lt;/em&gt; SSLv2 produces the following compiler warning/error:&lt;/p&gt;
&lt;p&gt;$ gcc -I /usr/local/ssl/macosx-x64/include/ /usr/local/ssl/macosx-x64/lib/libssl.a  -o sslscan sslscan.c&lt;/p&gt;
&lt;p&gt;sslscan.c:566:41: warning: implicit declaration of function&lt;br /&gt;
      'SSLv2_client_method' is invalid in C99 &lt;span&gt;[-Wimplicit-function-declaration]&lt;/span&gt;&lt;br /&gt;
  ...if (sslCipherPointer-&amp;gt;sslMethod == SSLv2_client_method())&lt;/p&gt;
&lt;p&gt;To configure OpenSSL without SSLv2:&lt;/p&gt;
&lt;p&gt;$ ./config -no-ssl2&lt;/p&gt;
&lt;p&gt;OpenSSL's configuration is stored in opensslconf.h&gt;:&lt;/p&gt;&lt;p&gt;
&lt;/p&gt;&lt;p&gt;$ cat /usr/local/ssl/macosx-x64/include/openssl/opensslconf.h | grep -b2 -a2 -i SSL2&lt;br /&gt;
...&lt;br /&gt;
738:#ifndef OPENSSL_NO_SSL2&lt;br /&gt;
762:# define OPENSSL_NO_SSL2&lt;br /&gt;
787-#endif&lt;br /&gt;
--&lt;br /&gt;
--&lt;br /&gt;
2009:# if defined(OPENSSL_NO_SSL2) &amp;amp;&amp;amp; !defined(NO_SSL2)&lt;br /&gt;
2060:#  define NO_SSL2&lt;br /&gt;
2078-# endif&lt;/p&gt;
&lt;p&gt;To detect it at compile time:&lt;/p&gt;
&lt;p&gt;#include opensslconf.h&gt;&lt;/p&gt;&lt;p&gt;
&lt;/p&gt;&lt;p&gt;#if !defined(OPENSSL_NO_SSL2) &amp;amp;&amp;amp; !defined(NO_SSL2)&lt;br /&gt;
    if (sslCipherPointer-&amp;gt;sslMethod == SSLv2_client_method())&lt;br /&gt;
    ...&lt;br /&gt;
 #endif&lt;/p&gt;
&lt;p&gt;Attached is an updated sslscan.c that fixes the SSLv2 issues. You should also test with SSLv3 disabled (i.e., use -no-ssl3). Most of the time I disable SSLv3 also; and I require it be disabled in all projects with security requirements that use OpenSSL.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jeffrey Walton</dc:creator><pubDate>Sat, 14 Dec 2013 18:59:12 -0000</pubDate><guid>https://sourceforge.net80f1b07cf1e488899352fd7b4117e06951f43692</guid></item><item><title>Truncation errors on Mac OS X 10.8.4 and OpenSSL 1.0.1e</title><link>https://sourceforge.net/p/sslscan/bugs/12/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;$ gcc -I /usr/local/ssl/macosx-x64/include/ /usr/local/ssl/macosx-x64/lib/libssl.a  -o sslscan sslscan.c&lt;/p&gt;
&lt;p&gt;sslscan.c:566:41: warning: implicit declaration of function&lt;br /&gt;
      'SSLv2_client_method' is invalid in C99 &lt;span&gt;[-Wimplicit-function-declaration]&lt;/span&gt;&lt;br /&gt;
  ...if (sslCipherPointer-&amp;gt;sslMethod == SSLv2_client_method())&lt;br /&gt;
                                        ^&lt;br /&gt;
sslscan.c:566:38: warning: comparison between pointer and integer&lt;br /&gt;
      ('SSL_METHOD &lt;em&gt;' (aka 'struct ssl_method_st &lt;/em&gt;') and 'int')&lt;br /&gt;
  ...if (sslCipherPointer-&amp;gt;sslMethod == SSLv2_client_method())&lt;br /&gt;
    sslscan.c:691:22: warning: comparison between pointer and integer&lt;br /&gt;
          ('SSL_METHOD &lt;em&gt;' (aka 'struct ssl_method_st &lt;/em&gt;') and 'int')&lt;br /&gt;
      ...if (sslMethod == SSLv2_client_method())&lt;br /&gt;
sslscan.c:811:13: warning: assigning to 'SSL_METHOD &lt;em&gt;' (aka&lt;br /&gt;
      'struct ssl_method_st &lt;/em&gt;') from 'const SSL_METHOD &lt;em&gt;' (aka 'const struct&lt;br /&gt;
      ssl_method_st &lt;/em&gt;') discards qualifiers&lt;br /&gt;
&lt;span&gt;[-Wincompatible-pointer-types-discards-qualifiers]&lt;/span&gt;&lt;br /&gt;
                sslMethod = SSLv23_method();&lt;br /&gt;
                          ^ ~~~~~~~~~~~~~~~&lt;br /&gt;
sslscan.c:1195:37: warning: incompatible integer to pointer conversion passing&lt;br /&gt;
      'int' to parameter of type 'SSL_METHOD &lt;em&gt;' (aka 'struct ssl_method_st &lt;/em&gt;')&lt;br /&gt;
&lt;span&gt;[-Wint-conversion]&lt;/span&gt;&lt;br /&gt;
  ...status = defaultCipher(options, SSLv2_client_method());&lt;br /&gt;
                                     ^~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;
sslscan.c:648:64: note: passing argument to parameter 'sslMethod' here&lt;br /&gt;
int defaultCipher(struct sslCheckOptions &lt;em&gt;options, SSL_METHOD &lt;/em&gt;sslMethod)&lt;br /&gt;
                                                               ^&lt;br /&gt;
sslscan.c:1197:38: warning: passing 'const SSL_METHOD &lt;em&gt;' (aka 'const struct&lt;br /&gt;
      ssl_method_st &lt;/em&gt;') to parameter of type 'SSL_METHOD &lt;em&gt;' (aka&lt;br /&gt;
      'struct ssl_method_st &lt;/em&gt;') discards qualifiers&lt;br /&gt;
&lt;span&gt;[-Wincompatible-pointer-types-discards-qualifiers]&lt;/span&gt;&lt;br /&gt;
  ...status = defaultCipher(options, SSLv3_client_method());&lt;br /&gt;
                                     ^~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;
sslscan.c:648:64: note: passing argument to parameter 'sslMethod' here&lt;br /&gt;
int defaultCipher(struct sslCheckOptions &lt;em&gt;options, SSL_METHOD &lt;/em&gt;sslMethod)&lt;br /&gt;
                                                               ^&lt;br /&gt;
sslscan.c:1199:38: warning: passing 'const SSL_METHOD &lt;em&gt;' (aka 'const struct&lt;br /&gt;
      ssl_method_st &lt;/em&gt;') to parameter of type 'SSL_METHOD &lt;em&gt;' (aka&lt;br /&gt;
      'struct ssl_method_st &lt;/em&gt;') discards qualifiers&lt;br /&gt;
&lt;span&gt;[-Wincompatible-pointer-types-discards-qualifiers]&lt;/span&gt;&lt;br /&gt;
  ...status = defaultCipher(options, TLSv1_client_method());&lt;br /&gt;
                                     ^~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;
sslscan.c:648:64: note: passing argument to parameter 'sslMethod' here&lt;br /&gt;
int defaultCipher(struct sslCheckOptions &lt;em&gt;options, SSL_METHOD &lt;/em&gt;sslMethod)&lt;br /&gt;
                                                               ^&lt;br /&gt;
sslscan.c:1202:37: warning: incompatible integer to pointer conversion passing&lt;br /&gt;
      'int' to parameter of type 'SSL_METHOD &lt;em&gt;' (aka 'struct ssl_method_st &lt;/em&gt;')&lt;br /&gt;
&lt;span&gt;[-Wint-conversion]&lt;/span&gt;&lt;br /&gt;
  ...status = defaultCipher(options, SSLv2_client_method());&lt;br /&gt;
                                     ^~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;
sslscan.c:648:64: note: passing argument to parameter 'sslMethod' here&lt;br /&gt;
int defaultCipher(struct sslCheckOptions &lt;em&gt;options, SSL_METHOD &lt;/em&gt;sslMethod)&lt;br /&gt;
                                                               ^&lt;br /&gt;
sslscan.c:1205:37: warning: passing 'const SSL_METHOD &lt;em&gt;' (aka 'const struct&lt;br /&gt;
      ssl_method_st &lt;/em&gt;') to parameter of type 'SSL_METHOD &lt;em&gt;' (aka&lt;br /&gt;
      'struct ssl_method_st &lt;/em&gt;') discards qualifiers&lt;br /&gt;
&lt;span&gt;[-Wincompatible-pointer-types-discards-qualifiers]&lt;/span&gt;&lt;br /&gt;
  ...status = defaultCipher(options, SSLv3_client_method());&lt;br /&gt;
                                     ^~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;
sslscan.c:648:64: note: passing argument to parameter 'sslMethod' here&lt;br /&gt;
int defaultCipher(struct sslCheckOptions &lt;em&gt;options, SSL_METHOD &lt;/em&gt;sslMethod)&lt;br /&gt;
                                                               ^&lt;br /&gt;
sslscan.c:1208:37: warning: passing 'const SSL_METHOD &lt;em&gt;' (aka 'const struct&lt;br /&gt;
      ssl_method_st &lt;/em&gt;') to parameter of type 'SSL_METHOD &lt;em&gt;' (aka&lt;br /&gt;
      'struct ssl_method_st &lt;/em&gt;') discards qualifiers&lt;br /&gt;
&lt;span&gt;[-Wincompatible-pointer-types-discards-qualifiers]&lt;/span&gt;&lt;br /&gt;
  ...status = defaultCipher(options, TLSv1_client_method());&lt;br /&gt;
                                     ^~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;
sslscan.c:648:64: note: passing argument to parameter 'sslMethod' here&lt;br /&gt;
int defaultCipher(struct sslCheckOptions &lt;em&gt;options, SSL_METHOD &lt;/em&gt;sslMethod)&lt;br /&gt;
                                                               ^&lt;br /&gt;
sslscan.c:1418:35: warning: incompatible integer to pointer conversion passing&lt;br /&gt;
      'int' to parameter of type 'SSL_METHOD &lt;em&gt;' (aka 'struct ssl_method_st &lt;/em&gt;')&lt;br /&gt;
&lt;span&gt;[-Wint-conversion]&lt;/span&gt;&lt;br /&gt;
  ...populateCipherList(&amp;amp;options, SSLv2_client_method());&lt;br /&gt;
                                  ^~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;
sslscan.c:128:69: note: passing argument to parameter 'sslMethod' here&lt;br /&gt;
int populateCipherList(struct sslCheckOptions &lt;em&gt;options, SSL_METHOD &lt;/em&gt;sslMethod)&lt;br /&gt;
                                                                    ^&lt;br /&gt;
sslscan.c:1419:35: warning: passing 'const SSL_METHOD &lt;em&gt;' (aka 'const struct&lt;br /&gt;
      ssl_method_st &lt;/em&gt;') to parameter of type 'SSL_METHOD &lt;em&gt;' (aka&lt;br /&gt;
      'struct ssl_method_st &lt;/em&gt;') discards qualifiers&lt;br /&gt;
&lt;span&gt;[-Wincompatible-pointer-types-discards-qualifiers]&lt;/span&gt;&lt;br /&gt;
  ...populateCipherList(&amp;amp;options, SSLv3_client_method());&lt;br /&gt;
                                  ^~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;
sslscan.c:128:69: note: passing argument to parameter 'sslMethod' here&lt;br /&gt;
int populateCipherList(struct sslCheckOptions &lt;em&gt;options, SSL_METHOD &lt;/em&gt;sslMethod)&lt;br /&gt;
                                                                    ^&lt;br /&gt;
sslscan.c:1420:35: warning: passing 'const SSL_METHOD &lt;em&gt;' (aka 'const struct&lt;br /&gt;
      ssl_method_st &lt;/em&gt;') to parameter of type 'SSL_METHOD &lt;em&gt;' (aka&lt;br /&gt;
      'struct ssl_method_st &lt;/em&gt;') discards qualifiers&lt;br /&gt;
&lt;span&gt;[-Wincompatible-pointer-types-discards-qualifiers]&lt;/span&gt;&lt;br /&gt;
  ...populateCipherList(&amp;amp;options, TLSv1_client_method());&lt;br /&gt;
                                  ^~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;
sslscan.c:128:69: note: passing argument to parameter 'sslMethod' here&lt;br /&gt;
int populateCipherList(struct sslCheckOptions &lt;em&gt;options, SSL_METHOD &lt;/em&gt;sslMethod)&lt;br /&gt;
                                                                    ^&lt;br /&gt;
sslscan.c:1423:35: warning: incompatible integer to pointer conversion passing&lt;br /&gt;
      'int' to parameter of type 'SSL_METHOD &lt;em&gt;' (aka 'struct ssl_method_st &lt;/em&gt;')&lt;br /&gt;
&lt;span&gt;[-Wint-conversion]&lt;/span&gt;&lt;br /&gt;
  ...populateCipherList(&amp;amp;options, SSLv2_client_method());&lt;br /&gt;
                                  ^~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;
sslscan.c:128:69: note: passing argument to parameter 'sslMethod' here&lt;br /&gt;
int populateCipherList(struct sslCheckOptions &lt;em&gt;options, SSL_METHOD &lt;/em&gt;sslMethod)&lt;br /&gt;
                                                                    ^&lt;br /&gt;
sslscan.c:1426:35: warning: passing 'const SSL_METHOD &lt;em&gt;' (aka 'const struct&lt;br /&gt;
      ssl_method_st &lt;/em&gt;') to parameter of type 'SSL_METHOD &lt;em&gt;' (aka&lt;br /&gt;
      'struct ssl_method_st &lt;/em&gt;') discards qualifiers&lt;br /&gt;
&lt;span&gt;[-Wincompatible-pointer-types-discards-qualifiers]&lt;/span&gt;&lt;br /&gt;
  ...populateCipherList(&amp;amp;options, SSLv3_client_method());&lt;br /&gt;
                                  ^~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;
sslscan.c:128:69: note: passing argument to parameter 'sslMethod' here&lt;br /&gt;
int populateCipherList(struct sslCheckOptions &lt;em&gt;options, SSL_METHOD &lt;/em&gt;sslMethod)&lt;br /&gt;
                                                                    ^&lt;br /&gt;
sslscan.c:1429:35: warning: passing 'const SSL_METHOD &lt;em&gt;' (aka 'const struct&lt;br /&gt;
      ssl_method_st &lt;/em&gt;') to parameter of type 'SSL_METHOD &lt;em&gt;' (aka&lt;br /&gt;
      'struct ssl_method_st &lt;/em&gt;') discards qualifiers&lt;br /&gt;
&lt;span&gt;[-Wincompatible-pointer-types-discards-qualifiers]&lt;/span&gt;&lt;br /&gt;
  ...populateCipherList(&amp;amp;options, TLSv1_client_method());&lt;br /&gt;
                                  ^~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;
sslscan.c:128:69: note: passing argument to parameter 'sslMethod' here&lt;br /&gt;
int populateCipherList(struct sslCheckOptions &lt;em&gt;options, SSL_METHOD &lt;/em&gt;sslMethod)&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jeffrey Walton</dc:creator><pubDate>Sat, 14 Dec 2013 18:41:55 -0000</pubDate><guid>https://sourceforge.netea782f49adaa56f5a3461fa42cc2636400b2f575</guid></item><item><title>redhat does not support ec in openssl</title><link>https://sourceforge.net/p/sslscan/bugs/11/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;attached patch to compile under rhel systems&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eero Volotinen</dc:creator><pubDate>Fri, 13 Sep 2013 08:24:47 -0000</pubDate><guid>https://sourceforge.net1bc5124c283b6666ec021c599a0959f50efddd11</guid></item><item><title>Makefile can cause link issues (underlinking)</title><link>https://sourceforge.net/p/sslscan/bugs/10/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The current Makefile can cause link issues depending on the specific linker being used. GNU ld with --as-needed and gold both have issues. I'll attach the patch we use in Gentoo to fix these.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hans de Graaff</dc:creator><pubDate>Sat, 29 Dec 2012 11:36:58 -0000</pubDate><guid>https://sourceforge.net6ea8850fc485883d88e931affed21f6553ff7bac</guid></item><item><title>Support for other ports</title><link>https://sourceforge.net/p/sslscan/bugs/9/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;It would be nice to be able to have a command line switch that would allow for scanning non-standard ports.  For example, port 8080, 8443, or 5500.  Is there a way to have this feature added to the product?&lt;/p&gt;
&lt;p&gt;Thanks in advance!&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John</dc:creator><pubDate>Tue, 19 Jun 2012 19:54:38 -0000</pubDate><guid>https://sourceforge.net1ef11c71966b42646aa2e03c8c0c3c321271ba0c</guid></item><item><title>Certificate Dump: Negative Serial Numbers</title><link>https://sourceforge.net/p/sslscan/bugs/8/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;SSL Certificate:&lt;br /&gt;
Version: 0&lt;br /&gt;
Serial Number: -4294967295&lt;br /&gt;
Signature Algorithm: sha1WithRSAEncryption&lt;br /&gt;
Issuer: /CN=xxx/O=xxx/ST=California/C=US&lt;br /&gt;
Not valid before: Mar 13 18:01:35 2012 GMT&lt;br /&gt;
Not valid after: Mar 12 18:01:35 2017 GMT&lt;br /&gt;
Subject: /CN=xxx/O=xxx/ST=California/C=US&lt;br /&gt;
Public Key Algorithm: rsaEncryption&lt;br /&gt;
RSA Public Key: (2048 bit)&lt;br /&gt;
Modulus (2048 bit):&lt;br /&gt;
00:d8:32:c3:92:b0:97:23:4f:32:6f:60:66:c2:3a:&lt;br /&gt;
27:c8:a7:15:ea:21:35:89:44:6c:f1:eb:33:bb:be:&lt;br /&gt;
5d:49:8c:57:53:94:8e:46:5e:31:44:3a:b2:c7:5a:&lt;br /&gt;
3c:6d:3c:05:52:c2:6f:6e:c3:ba:17:52:fa:0e:e9:&lt;br /&gt;
f9:b3:93:1d:cb:03:0a:85:7e:3a:da:23:02:55:98:&lt;br /&gt;
a7:86:85:eb:48:31:66:93:81:15:70:c4:f7:e6:7f:&lt;br /&gt;
65:01:b9:ca:54:ea:a1:77:90:07:8c:e8:7f:99:4f:&lt;br /&gt;
8e:28:68:41:47:a4:34:2b:76:e9:cd:ac:d4:61:83:&lt;br /&gt;
2c:00:50:2c:b4:2d:b8:60:dd:d2:3f:5a:b0:11:4e:&lt;br /&gt;
dd:f1:5e:e2:cc:40:15:b9:27:b4:98:c6:5e:9a:f7:&lt;br /&gt;
4e:43:40:cc:c4:09:2d:95:9c:08:23:57:89:fa:70:&lt;br /&gt;
ea:1c:76:45:53:2f:a9:a2:d1:9a:69:5b:bf:70:81:&lt;br /&gt;
e7:45:f3:9d:05:d1:ba:6e:d2:a2:54:91:a9:3b:f0:&lt;br /&gt;
14:4f:d6:e8:e7:2b:a3:ff:bf:4c:b2:21:03:18:ab:&lt;br /&gt;
b7:94:f8:8b:e4:35:0b:27:27:02:4a:47:e7:d3:d9:&lt;br /&gt;
fd:80:79:58:1b:07:bb:00:cc:93:92:39:5f:61:3c:&lt;br /&gt;
54:75:c8:40:0b:d2:ad:eb:ae:6e:74:fb:d5:cb:70:&lt;br /&gt;
f7:99&lt;br /&gt;
Exponent: 65537 (0x10001)&lt;br /&gt;
Verify Certificate:&lt;br /&gt;
self signed certificate&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 23 Mar 2012 18:37:06 -0000</pubDate><guid>https://sourceforge.netef5dc1ea533aa88b0c292cfb7c9e09496bb6f323</guid></item><item><title>Make: Conversion warnings with -Wconversion</title><link>https://sourceforge.net/p/sslscan/bugs/7/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;sslscan-1.8.2$ make CFLAGS="-Wall -Wextra -Wconversion --stack-protector-all -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -Wl,-z,noexecheap -fPIE"&lt;br /&gt;
gcc -g -Wall -lssl -o sslscan sslscan.c  -Wall -Wextra -Wconversion --stack-protector-all -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -Wl,-z,noexecheap -fPIE&lt;br /&gt;
sslscan.c: In function ‘readLine’:&lt;br /&gt;
sslscan.c:227: warning: conversion to ‘int’ from ‘size_t’ may change the sign of the result&lt;br /&gt;
sslscan.c: In function ‘password_callback’:&lt;br /&gt;
sslscan.c:311: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result&lt;br /&gt;
sslscan.c:313: warning: conversion to ‘int’ from ‘size_t’ may change the sign of the result&lt;br /&gt;
sslscan.c:309: warning: unused parameter ‘rwflag’&lt;br /&gt;
sslscan.c: In function ‘testCipher’:&lt;br /&gt;
sslscan.c:506: warning: conversion to ‘int’ from ‘size_t’ may change the sign of the result&lt;br /&gt;
sslscan.c: In function ‘testHost’:&lt;br /&gt;
sslscan.c:1134: warning: conversion to ‘sa_family_t’ from ‘int’ may alter its value&lt;br /&gt;
sslscan.c:1135: warning: conversion to ‘size_t’ from ‘int’ may change the sign of the result&lt;br /&gt;
sslscan.c:1136: warning: conversion to ‘uint16_t’ from ‘int’ may alter its value&lt;br /&gt;
sslscan.c: In function ‘main’:&lt;br /&gt;
sslscan.c:1328: warning: conversion to ‘int’ from ‘size_t’ may change the sign of the result&lt;br /&gt;
sslscan-1.8.2$ &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 23 Mar 2012 17:14:05 -0000</pubDate><guid>https://sourceforge.netde5df07932aea677aea6d407df5f534092875560</guid></item><item><title>MAN page needs updating</title><link>https://sourceforge.net/p/sslscan/bugs/6/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The MAN page incorrectly denotes a command line parameter of --html.  It should be updated to --http.  Please update the description as well. Change the file sslscan.1&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Brian Holland</dc:creator><pubDate>Thu, 03 Nov 2011 17:02:03 -0000</pubDate><guid>https://sourceforge.neted6d3513c234ff33958a07ade88f8ba62efff0d5</guid></item></channel></rss>