I was having a problem with client certificate information mismatching the user's dname info. The certificate used the word "emailAddress" and the dname file used the word "Email". Upon further investigation I think I found the source of the problem. Line 426 in nessus-mkcert-client reads:
[ ! -z "$EMAIL" ] && echo_no_nl "/Email=$EMAIL" >> $DNFILE I edited mine to read: [ ! -z "$EMAIL" ] && echo_no_nl "/emailAddress=$EMAIL" >> $DNFILE. This worked. Concurrence? Thanks, John B. __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com
