This file is indexed.

/usr/bin/rsbac_settings_menu is in rsbac-admin 1.4.0-repack-0ubuntu3.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

  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
#!/bin/bash
# 
# This script is used for Administration of RSBAC general attributes
#
#
# Make sure we're really running bash.
#
[ -z "$BASH" ] && { echo "This menu requires bash - sorry!" 1>&2; exit 1; }
#
# We also need the proc fs mounted.
[ ! -f /proc/stat ] && { echo "This menu requires proc fs mounted" 1>&2; exit 1; }
#
# Cache function definitions, turn off posix compliance
#
set -h +o posix

# Set conf filename
RSBACCONF=/etc/rsbac.conf
# Read settings
if test -f $RSBACCONF
then . $RSBACCONF
fi
if test -f ~/.rsbacrc
then . ~/.rsbacrc
fi
if test -z "$RSBACMOD"
then RSBACMOD='GEN MAC PM DAZ FF RC AUTH ACL CAP JAIL RES PAX'
fi
for i in $RSBACMOD
do
  export SHOW_${i}=yes
done

# set this to rsbac bin dir, if not in path (trailing / is mandatory!)
#
#if test -z "$RSBACPATH" ; then RSBACPATH=./ ; fi

# which dialog tool to use - dialog or kdialog or xdialog...
if test -z $DIALOG
then DIALOG=${RSBACPATH}dialog
fi
if ! $DIALOG --clear
then
  echo $DIALOG menu program required! >&2
  exit
fi
if ! $DIALOG --help 2>&1 | grep -q "help-button"
then
  echo "Newer dialog menu version >= 0.9a-20020309a with '--help-button' option" >&2
  echo "required, please use dialog from admin tools contrib dir or set" >&2
  echo "\$DIALOG to another dialog program, e.g. with rsbac_settings_menu!" >&2
  exit
fi

# The dir for tmp files
if test -z "$TMPDIR" ; then TMPDIR=/tmp ; fi

# This must be a unique temporary filename
if ! TMPFILE=`mktemp -q $TMPDIR/rsbac_dialog.XXXXXX`
then
  TMPFILE=$TMPDIR/rsbac_dialog.$$
  if test -e $TMPFILE
  then rm -f $TMPFILE
  fi
fi

set_geometry ()
{
        BL=${1:-24}
        BC=${2:-80}
        [ $BL = 0 ] && BL=24
        [ $BC = 0 ] && BC=80
        export LINES=$BL
        export COLUMNS=$BC
        BL=$((BL-4))
        BC=$((BC-5))
        MAXLINES=$((LINES-10))
}

set_geometry `stty size 2>/dev/null`

gl ()
{
        if test $1 -gt $MAXLINES
        then echo $MAXLINES
        else echo $1
        fi
}
													
if test -z "$LINES" ; then LINES=25 ; fi
if test -z "$COLUMNS" ; then COLUMNS=80 ; fi
export LINES
export COLUMNS
declare -i BL=$LINES-4
declare -i BC=$COLUMNS-4
declare -i MAXLINES=$LINES-10

setonoff () {
      if echo $RSBACMOD | grep -q "\\<$1\\>"
      then
        echo on
      else
        echo off
      fi
}

onoff () {
      if test "$1" = "$2"
      then
        echo on
      else
        echo off
      fi
}

export BACKTITLE="RSBAC Administration Tools 1.4.0"
TITLE="`whoami`@`hostname`: RSBAC Administration"
ERRTITLE="RSBAC Administration - ERROR"

MODIFIED=no

show_help () {
  case "$RSBACLANG" in
    DE)
      show_help_german "$1"
      ;;
    RU)
      show_help_russian "$1"
      ;;
    *)
      show_help_english "$1"
      ;;
  esac
}

show_help_english () {
 {
  echo "$1"
  echo ""
  case "$1" in
    'Modules:')
      echo "Choose the modules you would like to see in the menues."
      ;;

    'Dialog Tool:')
      echo "Choose the dialog program. If it is not in a PATH directory, you can"
      echo "enter the full path here."
      ;;

    'Menu Help Language:')
      echo "Choose the language the menues use in their help texts."
      ;;

    'TMP Dir:')
      echo "Where RSBAC menues store there temporary files."
      ;;

    'Tool Path:')
      echo "Directory, where the RSBAC tools are. This variable must either be"
      echo "empty or end with a slash (/)."
      ;;

    'Menu Log File:')
      echo "File, where all set operations are logged."
      ;;

    'Reload:')
      echo "Restore startup settings by reloading config file."
      ;;

    'Save:')
      echo "Save changed settings to global or personal config file."
      ;;

    Quit)
        echo "Quit this menu."
      ;;

    *)
        echo "No help for $1 available!"
  esac
 } > $TMPFILE
  $DIALOG --title "$HELPTITLE" \
          --backtitle "$BACKTITLE" \
          --textbox $TMPFILE $BL $BC
#  sleep 1
}

show_help_german () {
 {
  echo "$1"
  echo ""
  case "$1" in
    'Modules:')
      echo "Wähle die Module, die in den Menüs angezeigt werden sollen."
      ;;

    'Dialog Tool:')
      echo "Wähle das dialog-Programm. Wenn es nicht in einem PATH-Verzeichnis"
      echo "liegt, bitte den vollen Pfad eingeben."
      ;;

    'Menu Help Language:')
      echo "Wähle die Sprache der Menü-Hilfen."
      ;;

    'TMP Dir:')
      echo "Temporäres Verzeichnis für die RSBAC-Menüs."
      ;;

    'Tool Path:')
      echo "Verzeichnis, in dem sich die RSBAC-Hilfsprogramme befinden."
      echo "Diese Variable muß entweder leer sein oder mit einem Schrägstrich"
      echo "(/) enden!"
      ;;

    'Menu Log File:')
      echo "Logdatei, in der alle Attribut-Setzungen der Menüs protokolliert"
      echo "werden."
      ;;

    'Reload:')
      echo "Starteinstellungen durch erneutes Lesen der Konfigurations-Datei"
      echo "wiederherstellen."
      ;;

    'Save:')
      echo "Geänderte Einstellungen in globale oder persönliche"
      echo "Konfigurationsdatei speichern."
      ;;

    Quit)
        echo "Beende dieses Menü."
      ;;

    *)
        echo "Keine Hilfe für $1 verfügbar!"
  esac
 } > $TMPFILE
  $DIALOG --title "$HELPTITLE" \
          --backtitle "$BACKTITLE" \
          --textbox $TMPFILE $BL $BC
#  sleep 1
}

show_help_russian () {
 {
  echo "$1"
  echo ""
  case "$1" in
    'Modules:')
      echo "Choose the modules you would like to see in the menues."
      ;;

    'Dialog Tool:')
      echo "Choose the dialog program. If it is not in a PATH directory, you can"
      echo "enter the full path here."
      ;;

    'Menu Help Language:')
      echo "Choose the language the menues use in their help texts."
      ;;

    'TMP Dir:')
      echo "Where RSBAC menues store there temporary files."
      ;;

    'Tool Path:')
      echo "Directory, where the RSBAC tools are. This variable must either be"
      echo "empty or end with a slash (/)."
      ;;

    'Menu Log File:')
      echo "File, where all set operations are logged."
      ;;

    'Reload:')
      echo "Restore startup settings by reloading config file."
      ;;

    'Save:')
      echo "Save changed settings to global or personal config file."
      ;;

    Quit)
        echo "Quit this menu."
      ;;

    *)
        echo "No help for $1 available!"
  esac
 } > $TMPFILE
  $DIALOG --title "$HELPTITLE" \
          --backtitle "$BACKTITLE" \
          --textbox $TMPFILE $BL $BC
#  sleep 1
}

while true ; do \
  if ! \
  $DIALOG --title "$TITLE" \
         --backtitle "$BACKTITLE" \
         --help-button --default-item "$CHOICE" \
         --menu "Settings Menu" $BL $BC `gl 11` \
                "Modules:" "$RSBACMOD" \
                "Dialog Tool:" "$DIALOG" \
                "Menu Help Language:" "$RSBACLANG" \
                "TMP Dir:" "$TMPDIR" \
                "Tool Path:" "(empty = use \$PATH) $RSBACPATH" \
                "Menu Log File:" "$RSBACLOGFILE" \
                "---------------" "" \
                "Reload:" "Reload settings" \
                "Save:" "Save settings" \
                "---------------" "" \
                "Quit" "" \
         2>$TMPFILE
   then
        if test "$MODIFIED" = "yes"
        then
          if ! $DIALOG --title "$TITLE" \
                     --backtitle "$BACKTITLE" \
                     --yesno "Settings have been modified. Exit anyway?" 5 $BC \
                   2>/dev/null
          then continue
          fi
        fi
        rm $TMPFILE ; exit
  fi

  CHOICE=`cat $TMPFILE`
  case $CHOICE in
    HELP*)
        show_help "${CHOICE:5}"
        CHOICE="${CHOICE:5}"
      ;;
    'Modules:')
        if \
        $DIALOG --title "$TITLE" \
               --backtitle "$BACKTITLE" \
               --checklist "Select Modules to Show" $BL $BC `gl 12` \
                      "GEN" "General attributes for all modules" "`setonoff GEN`" \
                      "MAC" "Mandatory Access Control (Bell-LaPadula)" "`setonoff MAC`" \
                      "PM"  "Privacy Model" "`setonoff PM`" \
                      "DAZ" "Dazuko (Malware Scan)" "`setonoff DAZ`" \
                      "FF"  "File Flags" "`setonoff FF`" \
                      "RC"  "Role Compatibility" "`setonoff RC`" \
                      "ACL" "Access Control Lists" "`setonoff ACL`" \
                      "AUTH" "Authorization" "`setonoff AUTH`" \
                      "CAP" "Linux Capabilities" "`setonoff CAP`" \
                      "JAIL" "Process JAILs" "`setonoff JAIL`" \
                      "RES" "Linux RESources" "`setonoff RES`" \
                      "PAX" "PaX Administration" "`setonoff PAX`" \
             2>$TMPFILE
        then
          RSBACMOD=`cat $TMPFILE|tr -d '"'`
          MODIFIED=yes
        fi
      ;;

    'Dialog Tool:')
        if $DIALOG --title "$TITLE" \
                   --backtitle "$BACKTITLE" \
                   --inputbox "Dialog program" $BL $BC "$DIALOG" \
          2>$TMPFILE
        then DIALOG=`cat $TMPFILE`
          MODIFIED=yes
        fi
      ;;

    'Menu Help Language:')
        if \
        $DIALOG --title "$TITLE" \
               --backtitle "$BACKTITLE" \
               --radiolist "Select Language to use in Menu Help" $BL $BC `gl 4` \
                      "" "No pre-selection" "`onoff $RSBACLANG ''`" \
                      "EN" "English" "`onoff $RSBACLANG EN`" \
                      "DE" "German" "`onoff $RSBACLANG DE`" \
                      "RU" "Russian" "`onoff $RSBACLANG RU`" \
             2>$TMPFILE
        then
          RSBACLANG=`cat $TMPFILE|tr -d '"'`
          MODIFIED=yes
        fi
      ;;

    'TMP Dir:')
        if $DIALOG --title "$TITLE" \
                   --backtitle "$BACKTITLE" \
                   --inputbox "Directory for Temporary Files" $BL $BC "$TMPDIR" \
          2>$TMPFILE
        then TMPDIR=`cat $TMPFILE`
          MODIFIED=yes
        fi
      ;;

    'Tool Path:')
        if $DIALOG --title "$TITLE" \
                   --backtitle "$BACKTITLE" \
                   --inputbox 'Path to RSBAC tools dir (empty = use $PATH, end with /)' \
                       $BL $BC "$RSBACPATH" \
          2>$TMPFILE
        then RSBACPATH=`cat $TMPFILE`
          MODIFIED=yes
        fi
      ;;

    'Menu Log File:')
        if $DIALOG --title "$TITLE" \
                   --backtitle "$BACKTITLE" \
                   --inputbox "Menu Log File (empty = none)" $BL $BC "$RSBACLOGFILE" \
          2>$TMPFILE
        then RSBACLOGFILE=`cat $TMPFILE`
          MODIFIED=yes
        fi
      ;;

    'Reload:')
        if test "$MODIFIED" = "yes"
        then
          if ! $DIALOG --title "$TITLE" \
                     --backtitle "$BACKTITLE" \
                     --yesno "Settings were modified. Reload anyway?" 5 $BC \
                   2>/dev/null
          then continue
          fi
        fi
        if $DIALOG --title "$TITLE" \
                   --backtitle "$BACKTITLE" \
                   --menu "Load settings from" 10 $BC 3 \
                     "$HOME/.rsbacrc" "Personal Settings" \
                     "$RSBACCONF" "Global Settings" \
                     "Enter name" "$FILE" \
                   2>$TMPFILE
        then
          TMP="`cat $TMPFILE`"
          if test "$TMP" = "Enter name"
          then
            if $DIALOG --title "$TITLE" \
                       --backtitle "$BACKTITLE" \
                       --inputbox "Filename to load settings from" $BL $BC "$FILE" \
              2>$TMPFILE
            then TMP=`cat $TMPFILE`
            else continue
            fi
          fi
          FILE=$TMP
          . $FILE
        fi
      ;;

    'Save:')
        if $DIALOG --title "$TITLE" \
                   --backtitle "$BACKTITLE" \
                   --menu "Save settings to" 10 $BC 3 \
                     "$HOME/.rsbacrc" "Personal Settings" \
                     "$RSBACCONF" "Global Settings" \
                     "Enter name" "$FILE" \
                   2>$TMPFILE
        then
          TMP="`cat $TMPFILE`"
          if test "$TMP" = "Enter name"
          then
            if $DIALOG --title "$TITLE" \
                       --backtitle "$BACKTITLE" \
                       --inputbox "Filename to save settings to" $BL $BC "$FILE" \
              2>$TMPFILE
            then TMP=`cat $TMPFILE`
            else continue
            fi
          fi
          FILE=$TMP
          {
            echo '# RSBAC menu configuration'
            echo "# `date`"
            if test -n "$RSBACMOD"
            then
              echo "RSBACMOD=\"$RSBACMOD\""
            else
              echo "# RSBACMOD is not set"
            fi
            if test -n "$DIALOG"
            then
              echo "DIALOG=\"$DIALOG\""
            else
              echo "# DIALOG is not set"
            fi
            if test -n "$RSBACLANG"
            then
              echo "RSBACLANG=\"$RSBACLANG\""
            else
              echo "# RSBACLANG is not set"
            fi
            if test -n "$TMPDIR"
            then
              echo "TMPDIR=\"$TMPDIR\""
            else
              echo "# TMPDIR is not set"
            fi
            if test -n "$RSBACPATH"
            then
              echo "RSBACPATH=\"$RSBACPATH\""
            else
              echo "# RSBACPATH is not set"
            fi
            if test -n "$RSBACLOGFILE"
            then
              echo "RSBACLOGFILE=\"$RSBACLOGFILE\""
            else
              echo "# RSBACLOGFILE is not set"
            fi
          } >$FILE && MODIFIED=no || \
            $DIALOG --title "$TITLE" \
                    --backtitle "$BACKTITLE" \
                    --msgbox "Saving settings to $FILE failed!" 5 $BC \
                   2>/dev/null
        fi
      ;;

    Quit)
        if test "$MODIFIED" = "yes"
        then
          if ! $DIALOG --title "$TITLE" \
                     --backtitle "$BACKTITLE" \
                     --yesno "Settings have been modified. Exit anyway?" 5 $BC \
                   2>/dev/null
          then continue
          fi
        fi
        rm $TMPFILE ; exit
      ;;

    *)
        $DIALOG --title "$ERRTITLE" \
               --backtitle "$BACKTITLE" \
               --msgbox "Main Menu: Selection Error!" 5 $BC

  esac
# sleep 2
done