ACC SHELL

Path : /proc/self/root/usr/share/ssl/misc/
File Upload :
Current File : //proc/self/root/usr/share/ssl/misc/c_issuer

#!/bin/sh
#
# print out the issuer
#

for i in $*
do
	n=`openssl x509 -issuer -noout -in $i`
	echo "$i	$n"
done

ACC SHELL 2018