1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
|
#!/bin/bash
# Smart Card KDE3.5 Authentication Script (c) 2009 Timothy Pearson
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Maximum number of virtual terminals on this system
MAXIMUM_VTS=49
# The [secure] temporary directory for authentication
SECURE_DIRECTORY=/tmp/smartauth
hexcvt ()
{
echo ""$1" "16" o p" | dc
}
# Create the secure directory and lock it down
rm -rf $SECURE_DIRECTORY
mkdir -p $SECURE_DIRECTORY
chown root $SECURE_DIRECTORY
chgrp root $SECURE_DIRECTORY
chmod 600 $SECURE_DIRECTORY
SECURE_DIRECTORY=$(mktemp /tmp/smartauth/smartauthmon.XXXXXXXXXX)
rm -rf $SECURE_DIRECTORY
mkdir -p $SECURE_DIRECTORY
chown root $SECURE_DIRECTORY
chgrp root $SECURE_DIRECTORY
chmod 600 $SECURE_DIRECTORY
# Restart PCSCD and kill spurious processes
killall -9 pcscd
/etc/init.d/pcscd restart
/etc/init.d/pcscd-nodbus restart
# See if required programs are installed
scriptor=$(whereis scriptor)
if [[ $scriptor == "scriptor:" ]]; then
echo "ERROR: scriptor is not installed! This program cannot continue!"
exit
fi
opensc=$(whereis opensc-explorer)
if [[ $opensc == "opensc-explorer:" ]]; then
echo "ERROR: opensc-explorer is not installed! This program cannot continue!"
exit
fi
get_file () {
if [[ $COMMAND_MODE == "acos" ]]; then
# Select EF $1 under DF 1000
echo "$SELECT_FILE $1" > $SECURE_DIRECTORY/query
scriptor $SECURE_DIRECTORY/query 1> $SECURE_DIRECTORY/response2
echo $(cat $SECURE_DIRECTORY/response2)
# Read binary
echo "$READ_BINARY" > $SECURE_DIRECTORY/query
scriptor $SECURE_DIRECTORY/query 1> $SECURE_DIRECTORY/response2
authokresponse="90 00 : Normal processing"
response1=$(cat $SECURE_DIRECTORY/response2 | grep "$authokresponse")
if [[ $response1 != "" ]]; then
cat $SECURE_DIRECTORY/response2 | tr -d '\n' > $SECURE_DIRECTORY/response4
stringtoreplace="Using T=0 protocol00 B0 00 00 FF> 00 B0 00 00 FF< "
newstring=""
sed -i "s#${stringtoreplace}#${newstring}#g" $SECURE_DIRECTORY/response4
stringtoreplace=" 90 00 : Normal processing."
newstring=""
sed -i "s#${stringtoreplace}#${newstring}#g" $SECURE_DIRECTORY/response4
if [[ $2 == "text" ]]; then
stringtoreplace=" 00"
newstring=""
sed -i "s#${stringtoreplace}#${newstring}#g" $SECURE_DIRECTORY/response4
fi
echo $(cat $SECURE_DIRECTORY/response4)
rm -f $SECURE_DIRECTORY/lukskey
xxd -r -p $SECURE_DIRECTORY/response4 $SECURE_DIRECTORY/lukskey
RESPONSE=$SECURE_DIRECTORY/lukskey
fi
fi
if [[ $COMMAND_MODE == "cryptoflex" ]]; then
FILE=${1/ /}
echo "get $FILE" | opensc-explorer
RESPONSE="3F00_$FILE"
fi
}
update_file () {
if [[ $COMMAND_MODE == "acos" ]]; then
# Select EF $1 under DF 1000
echo "$SELECT_FILE $1" > $SECURE_DIRECTORY/query
scriptor $SECURE_DIRECTORY/query 1> $SECURE_DIRECTORY/response2
echo $(cat $SECURE_DIRECTORY/response2)
# Update existing file
# Zero pad input file
dd if=/dev/zero of=$SECURE_DIRECTORY/response2 bs=1 count=255
dd if=$2 of=$SECURE_DIRECTORY/response2 bs=1 count=255 conv=notrunc
# Truncate to 255 bytes and expand to standard hex listing format
xxd -l 255 -ps -c 1 $SECURE_DIRECTORY/response2 > $SECURE_DIRECTORY/response
cat $SECURE_DIRECTORY/response | tr '\n' ' ' > $SECURE_DIRECTORY/hexready
echo "$UPDATE_BINARY $(cat $SECURE_DIRECTORY/hexready)" > $SECURE_DIRECTORY/query
scriptor $SECURE_DIRECTORY/query 1> $SECURE_DIRECTORY/response2 2>/dev/null
echo $(cat $SECURE_DIRECTORY/response2)
fi
if [[ $COMMAND_MODE == "cryptoflex" ]]; then
# Delete old file
echo "$DELETE_FILE $1" > $SECURE_DIRECTORY/query
scriptor $SECURE_DIRECTORY/query 1> $SECURE_DIRECTORY/response2 2>/dev/null
echo $(cat $SECURE_DIRECTORY/response2)
# Create new file
createfile "FF" $1
FILE=${1/ /}
echo "put $FILE $2" | opensc-explorer
fi
}
oldsmartcard_username=""
echo "Ready..."
while [[ 1 == 1 ]]; do
sleep 1
echo "exit" | scriptor 2>/dev/null 1>/dev/null
OUTPUT=$?
if [[ $OUTPUT -eq 0 ]]; then
echo "Card inserted!"
# Get card ATR
echo "RESET" > $SECURE_DIRECTORY/query
scriptor $SECURE_DIRECTORY/query 1> $SECURE_DIRECTORY/response2
authokresponse="OK: "
response1=$(cat $SECURE_DIRECTORY/response2 | grep "$authokresponse")
if [[ $response1 != "" ]]; then
cat $SECURE_DIRECTORY/response2 | tr -d '\n' > $SECURE_DIRECTORY/response4
stringtoreplace="Using T=0 protocolRESET> RESET< OK: "
newstring=""
sed -i "s#${stringtoreplace}#${newstring}#g" $SECURE_DIRECTORY/response4
smartatr=$(cat $SECURE_DIRECTORY/response4)
echo "Got ATR: $smartatr"
if [[ $smartatr == "3B BE 18 00 00 41 05 10 00 00 00 00 00 00 00 00 00 90 00 " ]]; then
echo "Detected ACOS5 card"
COMMAND_MODE="acos"
fi
if [[ $smartatr == "3B 02 14 50 " ]]; then
echo "Detected Schlumberger CryptoFlex card"
COMMAND_MODE="cryptoflex"
fi
else
echo "No card detected!"
fi
if [[ $COMMAND_MODE == "cryptoflex" ]]; then
GET_CHALLENGE="C0 84 00 00 08"
EXTERNAL_AUTH="C0 82 00 00 07 01"
SELECT_FILE="C0 A4 00 00 02"
DELETE_FILE="F0 E4 00 00 02"
fi
if [[ $COMMAND_MODE == "acos" ]]; then
GET_CHALLENGE="00 84 00 00 08"
EXTERNAL_AUTH="00 82 00 82 08" # Key 2
SELECT_FILE="00 A4 00 00 02"
DELETE_FILE="00 E4 00 00 00"
READ_BINARY="00 B0 00 00 FF"
UPDATE_BINARY="00 D6 00 00 FF"
ACTIVATE_FILE="00 44 00 00 02"
fi
# Authenticate card
if [[ $COMMAND_MODE == "acos" ]]; then
# Select MF
echo "00 A4 00 00 00" > $SECURE_DIRECTORY/query
scriptor $SECURE_DIRECTORY/query 1> $SECURE_DIRECTORY/response2
echo $(cat $SECURE_DIRECTORY/response2)
# Select DF 1000 under MF
echo "$SELECT_FILE 10 00" > $SECURE_DIRECTORY/query
scriptor $SECURE_DIRECTORY/query 1> $SECURE_DIRECTORY/response2
echo $(cat $SECURE_DIRECTORY/response2)
fi
echo $GET_CHALLENGE > $SECURE_DIRECTORY/authscript
scriptor $SECURE_DIRECTORY/authscript | grep 'Normal processing' > $SECURE_DIRECTORY/challenge
perl -pi -e 's/ //g' $SECURE_DIRECTORY/challenge
perl -pi -e 's/:Normalprocessing.//g' $SECURE_DIRECTORY/challenge
perl -pi -e 's/<//g' $SECURE_DIRECTORY/challenge
xxd -r -p $SECURE_DIRECTORY/challenge $SECURE_DIRECTORY/challenge
# Now DES encrypt the challenge
# Later, change the initialization vector to random if possible
openssl des-ecb -in $SECURE_DIRECTORY/challenge -out $SECURE_DIRECTORY/response -K <your key in hexadecimal> -iv 1
if [[ $COMMAND_MODE == "acos" ]]; then
# Truncate to 8 bytes
dd if=$SECURE_DIRECTORY/response of=$SECURE_DIRECTORY/response2 bs=1 count=8
# Expand to standard hex listing format
xxd -g 1 $SECURE_DIRECTORY/response2 $SECURE_DIRECTORY/response
dd if=$SECURE_DIRECTORY/response of=$SECURE_DIRECTORY/response2 bs=1 count=23 skip=9
fi
if [[ $COMMAND_MODE == "cryptoflex" ]]; then
# Truncate to 6 bytes
dd if=$SECURE_DIRECTORY/response of=$SECURE_DIRECTORY/response2 bs=1 count=6
# Expand to standard hex listing format
xxd -g 1 $SECURE_DIRECTORY/response2 $SECURE_DIRECTORY/response
dd if=$SECURE_DIRECTORY/response of=$SECURE_DIRECTORY/response2 bs=1 count=17 skip=9
fi
# Assemble the response file
response2=$(cat $SECURE_DIRECTORY/response2)
response1="$EXTERNAL_AUTH ${response2}"
echo $response1 > $SECURE_DIRECTORY/response
# Send the response!
scriptor $SECURE_DIRECTORY/response > $SECURE_DIRECTORY/response2
# Get the result
authokresponse="< 90 00 : Normal processing"
response1=$(cat $SECURE_DIRECTORY/response2 | grep "$authokresponse")
echo $response1
if [[ $response1 != "" ]]; then
echo "Smart card validation successfull!"
# Get username and password
get_file "10 02" "text"
smartcard_username=$(cat $RESPONSE)
get_file "10 03" "text"
mv $RESPONSE $SECURE_DIRECTORY/password
get_file "10 04" "text"
smartcard_slave=$(cat $RESPONSE)
if [[ $smartcard_slave == "SLAVE" ]]; then
get_file "10 05" "text"
smartcard_minutes=$(cat $RESPONSE)
get_file "10 06" "text"
internet_minutes=$(cat $RESPONSE)
fi
else
echo "This card does not recognize this system!"
sleep 1
smartcard_username=""
rm -f $SECURE_DIRECTORY/password
smartcard_slave=""
fi
if [[ $smartcard_slave == "SLAVE" ]]; then
if [[ $smartcard_minutes == "" ]]; then
smartcard_minutes=1
fi
# Decrement minutes on card
if [[ $smartcard_minutes -gt 0 ]]; then
let "smartcard_minutes=smartcard_minutes-1"
echo $smartcard_minutes > $SECURE_DIRECTORY/minutes
update_file "10 05" "$SECURE_DIRECTORY/minutes"
fi
if [[ $smartcard_minutes -eq 0 ]]; then
echo "Minutes have been used up!"
# Prohibit logon
smartcard_username=""
rm $SECURE_DIRECTORY/password
fi
mkdir -p /etc/smartmon
echo $smartcard_minutes > /etc/smartmon/minutesremaining
chmod 755 /etc/smartmon/minutesremaining
fi
# Initialize variables
loginok=1
# Try to do the authentication
result=""
timeout=0
errcode=0
waserror=0
noactivesessions=0
result_is_consistent=0
while [[ $result_is_consistent == 0 ]]; do
result_one=$(/opt/kde3/bin/kdmctl -g list)
sleep 0.1
result_two=$(/opt/kde3/bin/kdmctl -g list)
sleep 0.1
result_three=$(/opt/kde3/bin/kdmctl -g list)
sleep 0.1
result_four=$(/opt/kde3/bin/kdmctl -g list)
if [[ $result_one == $result_two ]]; then
if [[ $result_one == $result_three ]]; then
if [[ $result_one == $result_four ]]; then
result=$result_one
result_is_consistent=1
fi
fi
fi
done
if [[ $result == "ok" ]]; then
noactivesessions=1
result="okbutempty"
fi
echo $result
resultbkp=$result
if [[ $errcode -eq 0 ]]; then
# Allow KDM to finish starting
if [[ $waserror -eq 1 ]]; then
sleep 10
fi
# Zero the desktop array
index=0
while [[ $index != $MAXIMUM_VTS ]]; do
darray[index]=""
index=$((index+1))
done
if [[ result != "okbutempty" ]]; then
posone="0"
posone=$(expr index "$result" " :")
postwo="0"
postwo=$(expr index "$result" ",")
while [[ $posone != "0" ]]; do
length=$((postwo-posone-1))
terminals="${result:posone:length}"
echo $terminals
# Delete the terminal we just got from the list of terminals
result="${result:postwo}"
postwo=$(expr index "$result" ",")
result="${result:postwo}"
postwo=$(expr index "$result" ",")
length=$((postwo-1))
username="${result:0:length}"
darray[terminals]=$username # Save username of this terminal
echo $username
result="${result:postwo}"
postwo=$(expr index "$result" ",")
result="${result:postwo}"
# Now see if there might be ANOTHER terminal active or not
posone="0"
posone=$(expr index "$result" " :")
postwo="0"
postwo=$(expr index "$result" ",")
done
fi
# See if the desired user is already logged in
index=0
foundsession=0
while [[ $index != $MAXIMUM_VTS ]]; do
if [[ ${darray[index]} == $smartcard_username ]]; then
if [[ ${darray[index]} != "" ]]; then
echo "Found existing session on desktop: ${index}"
foundsession=1
# Check password
lverify=$(/usr/bin/smartauthckpasswd -u ${darray[index]} -p $(cat $SECURE_DIRECTORY/password))
cverify="User:${darray[index]}"
udisplay=":${index}"
if [[ $lverify == $cverify ]]; then
su $smartcard_username -c "export DISPLAY=$udisplay; /opt/kde3/bin/dcop kdesktop KScreensaverIface quit"
/opt/kde3/bin/kdmctl activate $udisplay
fi
else
echo "Username not specified"
foundsession=2
sleep 1
fi
fi
index=$((index+1))
done
if [[ $foundsession == "0" ]]; then
echo "Existing session not found, starting new..."
# Make sure that this is not display :0 (default login screen).
# If it is, execute login. If not, create new session, then execute login
usebasedisplay=0
if [[ $noactivesessions -eq 1 ]]; then
newdisplay=$(ls /var/run/xdmctl/ | grep 'xdmctl-:0')
echo $newdisplay
if [[ $newdisplay != "" ]]; then
usebasedisplay=1
fi
fi
vtsessions=$(echo "$resultbkp" | grep ',vt')
if [[ $vtsessions == "" ]]; then
newdisplay=$(ls /var/run/xdmctl/ | grep 'xdmctl-:0')
echo $newdisplay
if [[ $newdisplay != "" ]]; then
usebasedisplay=1
fi
fi
echo "Creating new session"
# Attempt login
ls /var/run/xdmctl > $SECURE_DIRECTORY/originalxdm
# Set loop separator to end of line
BAKIFS=$IFS
IFS=$(echo -en "\n\b")
exec 3<&0
exec 0<"$SECURE_DIRECTORY/originalxdm"
newdisplayfound=0
newdisplay=-1
while read -r line
do
# use $line variable to process lines
line=$(echo $line | grep 'xdmctl-:' | sed -e 's/xdmctl-://')
if [ "`expr $line - $line 2>/dev/null`" == "0" ]; then
echo "Found active display on $line"
if [[ $newdisplayfound -eq 0 ]]; then
tempnewdisplay=$((newdisplay + 1))
if [[ $line -eq $tempnewdisplay ]]; then
echo "Sequential display $line found after display $newdisplay..."
newdisplay=$line
fi
fi
fi
done
exec 0<&3
newdisplay=$(($newdisplay + 1))
newdisplay=":$newdisplay"
echo "The next display to start will be $newdisplay"
rm $SECURE_DIRECTORY/originalxdm
/opt/kde3/bin/kdmctl -g reserve
/opt/kde3/bin/kdmctl -g login $newdisplay now $smartcard_username $(cat $SECURE_DIRECTORY/password)
sleep 2
/opt/kde3/bin/kdmctl -g activate $newdisplay
udisplay=$newdisplay
fi
if [[ $smartcard_slave == "SLAVE" ]]; then
if [[ $smartcard_minutes -lt 5 ]]; then
su $smartcard_username -c "export DISPLAY=$udisplay; zenity --warning --text 'You have less than 5 minutes of computer time remaining' || exit 0" &
fi
fi
rm -f $SECURE_DIRECTORY/password
#if [[ loginok -eq 1 ]]; then
# Wait for SmartCard removal
TIMER=60
OUTPUT=0
while [[ $OUTPUT -eq 0 ]]; do
sleep 1
su $smartcard_username -c "export DISPLAY=$udisplay; /opt/kde3/bin/dcop kdesktop KScreensaverIface quit"
echo "exit" | scriptor 2>/dev/null 1>/dev/null
OUTPUT=$?
if [[ $smartcard_slave == "SLAVE" ]]; then
TIMER=$(( TIMER - 1 ))
if [[ $TIMER -eq 0 ]]; then
# 60 seconds have passed, decrement minutes on card
let "smartcard_minutes=smartcard_minutes-1"
echo $smartcard_minutes > /etc/smartmon/minutesremaining
chmod 755 /etc/smartmon/minutesremaining
TIMER=60
echo $smartcard_minutes > $SECURE_DIRECTORY/minutes
update_file "10 05" "$SECURE_DIRECTORY/minutes"
if [[ $smartcard_minutes -eq 0 ]]; then
echo "Minutes have been used up!"
# Prohibit logon
smartcard_username=""
rm $SECURE_DIRECTORY/password
fi
mkdir -p /etc/smartmon
echo $smartcard_minutes > /etc/smartmon/minutesremaining
chmod 755 /etc/smartmon/minutesremaining
if [[ $smartcard_minutes -eq 5 ]]; then
su $smartcard_username -c "export DISPLAY=$udisplay; zenity --warning --text 'You have less than 5 minutes of computer time remaining' || exit 0" &
fi
if [[ $smartcard_minutes -eq 0 ]]; then
echo "Minutes have been used up!"
echo "Beginning logoff process"
OUTPUT=254
fi
fi
fi
done
echo "Card removed!"
# Is the user still logged in?
result="ok"
timeout=0
errcode=0
result_is_consistent=0
while [[ $result_is_consistent == 0 ]]; do
result_one=$(/opt/kde3/bin/kdmctl -g list)
sleep 0.1
result_two=$(/opt/kde3/bin/kdmctl -g list)
sleep 0.1
result_three=$(/opt/kde3/bin/kdmctl -g list)
sleep 0.1
result_four=$(/opt/kde3/bin/kdmctl -g list)
if [[ $result_one == $result_two ]]; then
if [[ $result_one == $result_three ]]; then
if [[ $result_one == $result_four ]]; then
result=$result_one
result_is_consistent=1
fi
fi
fi
done
if [[ $result == "ok" ]]; then
noactivesessions=1
result="okbutempty"
fi
echo $result
# Zero the desktop array
index=0
while [[ $index != $MAXIMUM_VTS ]]; do
darray[index]=""
index=$((index+1))
done
posone="0"
posone=$(expr index "$result" " :")
postwo="0"
postwo=$(expr index "$result" ",")
while [[ $posone != "0" ]]; do
length=$((postwo-posone-1))
terminals="${result:posone:length}"
echo $terminals
# Delete the terminal we just got from the list of terminals
result="${result:postwo}"
postwo=$(expr index "$result" ",")
result="${result:postwo}"
postwo=$(expr index "$result" ",")
length=$((postwo-1))
username="${result:0:length}"
darray[terminals]=$username # Save username of this terminal
echo $username
result="${result:postwo}"
postwo=$(expr index "$result" ",")
result="${result:postwo}"
# Now see if there might be ANOTHER terminal active or not
posone="0"
posone=$(expr index "$result" " :")
postwo="0"
postwo=$(expr index "$result" ",")
done
# See if the desired user is still logged in
index=0
foundsession=0
while [[ $index != $MAXIMUM_VTS ]]; do
if [[ ${darray[index]} == $smartcard_username ]]; then
if [[ ${darray[index]} != "" ]]; then
echo "Found existing session on desktop: ${index}"
udisplay=":${index}"
foundsession=1
errcode=1
timeout=0
blankresult=""
while [[ $blankresult != "true" ]]; do
/opt/kde3/bin/kdmctl -g activate $udisplay
su $smartcard_username -c "export DISPLAY=$udisplay; /opt/kde3/bin/dcop kdesktop KScreensaverIface lock"
blankresult=$(su $smartcard_username -c "export DISPLAY=$udisplay; /opt/kde3/bin/dcop kdesktop KScreensaverIface isBlanked")
if [[ $? != 0 ]]; then
blankresult="true"
fi
logouttest=$(echo $blankresult | grep 'target display has no VT assigned')
if [[ "$logouttest" != "" ]]; then
echo "User has logged out"
blankresult="true"
fi
done
else
echo "Username not specified!"
sleep 1
fi
fi
index=$((index+1))
done
#fi
fi
smartcard_username=""
rm -rf /etc/smartmon/minutesremaining
fi
done
|