HEX
Server: Apache
System:
User: root (0)
PHP: 7.4.30
Disabled: exec, passthru, shell_exec, system, proc_open, popen, parse_ini_file, show_source, apache_child_terminate,apache_setenv,chgrp,chmod,chown,curl_multi_exec,define_syslog_variables,eval,exec,highlight_file,openlog,parse_ini_file,parse_ini_string,passthru,php_uname,popen,posix_kill,posix_setpgid,posix_setsid,posix_setuid,proc_open,shell_exec,show_source,syslog,system
Upload Files
File: //bin/abrt-action-analyze-ccpp-local
#!/bin/sh

INSTALL_DI=true
for opt in "$@"; do
    if [ x"$opt" = x"--without-di" ]; then
        INSTALL_DI=false
    fi
done

if $INSTALL_DI; then
    abrt-action-analyze-core --core=coredump -o build_ids || exit $?

    # On some systems debuginfo install needs root privileges.
    # Running a suided-to-abrt wrapper would make
    # debuginfo install fail even for root.
    # Therefore, if we are root, we don't use the wrapper.
    EXECUTABLE=/usr/libexec/abrt-action-install-debuginfo-to-abrt-cache
    if [ x"$(id -u)" = x"0" ]; then
        EXECUTABLE=abrt-action-install-debuginfo
    fi

    # Get VERSION_ID from crash's /etc/os-release (stored as os_info in a dump
    # directory).
    # We need this value for package managers to configure the correct
    # repositories (i.e. '$releasever' for DNF/Yum).
    EXTRA_ARGS=
    for osrel in "${DUMP_DIR:-.}/os_info_in_rootdir" "${DUMP_DIR:-.}/os_info"
    do
        if [ -e "$osrel" ]; then
            # shellcheck source=/dev/null
            . "$osrel"
            if [ -n "$VERSION_ID" ]; then
                EXTRA_ARGS="--releasever=$VERSION_ID"
                break
            fi
        fi
    done

   if ${EXECUTABLE} "${EXTRA_ARGS}" --size_mb=4096; then
       abrt-action-generate-backtrace && abrt-action-analyze-backtrace
   fi
fi