|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1037 ] | SAFLINK |
---|---|
Organisation name | SAFLINK Corporation |
Short name or acronym | SAFLINK |
Organisation type | Company |
Activity type | Speaker Verificataion |
Address | 11911 NE 1st Street |
Postal Code | 98005 |
City | Bellevue, WA |
Country | United States |
Phone | + +1 425 278 1100 |
Fax | + +1 425 278 1300 |
info_(on)_saflink.com | |
Organisation URL | http://www.saflink.com |
Logo | Description |
![]() |
SAFLINK Corporation provides enterprise network security solutions using multiple biometric technologies in place of vulnerable passwords. Biometrics provide positive identification to enhance network security along with unparalleled convenience for users since they can forget their passwords. SAFLINK products support speaker verification, fingerprint matching, iris recognition and face recognition. SAFLINK products support network server platforms comprised of Microsoft Windows NT/2000, Novell NetWare and eDirectory, and Computer Associates eTrust Single Sign-On. SAFLINK uses open standards such as the BioAPI standard and the Human Authentication API standard to permit easy integration of multiple biometric devices to give customers the freedom of choice and protection against technology obsolescence. |
Contact | |
Name | Marketing Communications Manager Tom Doggett |
Function | Marketing Communications |
Department | Marketing |
info_(on)_saflink.com | |
Phone | + +1 425 278 1202 |
Fax | + +1 425 278 1300 |
![]() |
Last update: 2002-04-15 20:51:31 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |