This file is indexed.

/usr/lib/radare/bin/dbg-report is in radare-common 1:1.5.2-4.

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
#!/bin/sh
cat <<_EOF_
!echo == Debug report
!printf "Date: "
!date
!info
!echo Registers:
!regs
!fpregs
!echo Backtrace:
!bt
!echo Maps:
!maps
!echo Status:
!status
!echo Current eip disassembly
pd 100@eip
!echo Stack
px 120@esp
!echo Data pointed by registers
!echo EAX
px 120@eax
!echo EBX
px 120@ebx
!echo ECX
px 120@ecx
!echo EDX
px 120@edx
!echo ESI
px 120@esi
!echo EDI
px 120@edi
_EOF_