This file is indexed.

/usr/share/kde4/apps/kconf_update/kfmclient_3_2_update.sh is in konqueror 4:4.8.4-2.

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
#! /bin/sh

while read ln; do
    if (echo $ln | grep -v "^StartNewKonqueror="); then
        continue
    fi
    if test "$ln" = "StartNewKonqueror=Local only"; then
        echo "SafeParts=khtml.desktop"
    elif test "$ln" = "StartNewKonqueror=Web only"; then
        echo "SafeParts=SAFE"
    elif test "$ln" = "StartNewKonqueror=Always" \
            -o "$ln" = "StartNewKonqueror=TRUE" \
            -o "$ln" = "StartNewKonqueror=true" \
            -o "$ln" = "StartNewKonqueror=1"; then
        echo "SafeParts="
    else # =Never
        echo "SafeParts=ALL"
    fi
done

echo '# DELETE StartNewKonqueror'