[OpenWrt-Devel] MIPS stack security and other problems

Hauke Mehrtens hauke at hauke-m.de
Tue Jan 1 12:43:54 EST 2019


On 12/18/18 12:46 PM, Hauke Mehrtens wrote:
> On 12/17/18 1:54 AM, Dave Taht wrote:
>>
>> A pretty deep look at home MIPS and arm routers, and a surprising bug in Linux/MIPS - by mudge and co:
>>
>> https://cyber-itl.org/2018/12/07/a-look-at-home-routers-and-linux-mips.html
>>
>> I have no idea if current openwrt, or what prior releases... are subject to
>> the problems they outline.
> 
> In the second paper "Build Safety of Software in 28 Popular Home Router"
> [0] they checked the "security" of multiple popular devices, by checking
> if they activate ASLR, Non stack Exec, Relro and stack guards. The best
> device was the Linksys wrt32x and this is based on OpenWrt with not so
> many modifications. ;-) Just something like Samba downgrade to 3.0.37.
> The paper also wonders why the other Linksys devices like the wrt1900ac
> are much worse, but they probably do not use OpenWrt or a much older
> version. The GPL source code tar.gz of the Linksys wrt32x, begins with
> cloning from https://github.com/openwrt/openwrt.git
> 
> 
> It is also interesting how different this approve to security checking
> is to what the German BSI published in the "BSI TR-03148: Secure
> Broadband Router:" [1].
> You can build a device which scores 100% in the one and 0% in the other,
> there is no overlap. ;-)
> 
> Hauke
> 
> 
> [0]:
> https://cyber-itl.org/assets/papers/2018/build_safety_of_software_in_28_popular_home_routers.pdf
> [1]:
> https://www.bsi.bund.de/SharedDocs/Downloads/DE/BSI/Publikationen/TechnischeRichtlinien/TR03148/TR03148.pdf?__blob=publicationFile&v=2

It looks like they ran checksec from 
http://github.com/slimm609/checksec.sh on the root file system of the 
devices and came up with these results. The numbers for the Linksys 
wrt32x look very similar to current OpenWrt master, even for MIPS CPUs.

I attached two outputs of checksec to this mail from the lantiq target 
with a MIP24Kc CPU. One with master and the current default 
configuration and one with master + activated ASLR configuration option.

You can generate these yourself like this:
../checksec.sh/checksec -d build_dir/target-mips_24kc_musl/root-lantiq/

ASLR increases the image size by about 2.8%:
Without ASLR:	5.386.965 bytes
With ASLR:	5.540.565 bytes

This is caused by increased user space binary size, see for example 
busybox binary which is 7% bigger:
Without ASLR:	425.532 bytes
With ASLR:	457.336 bytes

The fortified function count does not work with fortify-headers, but 
only with glibc. With glibc some function calls are getting replaced 
with calls to *_chk functions which are taking extra arguments, this is 
done by some glibc header magic. For musl libc OpenWrt uses 
fortify-headers which overwrites the original functions and inlined some 
extra security checks into the calling application. The result should be 
similar, so I assume that we have at least in most places similar 
security for the glibc fortified functions.
I checked this by compiling an test application and checked the 
assembler code, it contained some extra size checks.

It looks like the detection does not work correctly for kernel modules.

Currently RELRO is not activated for the following libraries:
	root-lantiq/usr/lib/libbz2.so.1.0
	root-lantiq/usr/lib/libbz2.so.1.0.6
	root-lantiq/lib/libgcc_s.so.1
this looks like a bug.

For libgcc_s.so.1 also NX is disabled, which is not good.

Some binaries do not use a stack canary, I assume that these binaries 
just do not have an array on the stack which could be exploited. The 
compiler adds stack canaries only to functions which the compiler thinks 
need it.

ASLR is deactivated for root-lantiq/sbin/vdsl_cpe_control, because this 
application does not link any more when ASLR is activated, this is a bug 
in the package build system.

Hauke
-------------- next part --------------
RELRO           STACK CANARY      NX            PIE             RPATH      RUNPATH    Symbols      	FORTIFY	Fortified	Fortifiable   Filename
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   264 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/lib/libnl-tiny.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   138 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/lib/libip6tc.so.0.1.0
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   286 Symbols     Yes	0		22	bin-aslr/root-lantiq/usr/lib/libxtables.so.12.2.0
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   290 Symbols     Yes	0		21	bin-aslr/root-lantiq/usr/lib/libjson-c.so.2
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   174 Symbols     Yes	0		8	bin-aslr/root-lantiq/usr/lib/libiptext6.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   230 Symbols     Yes	0		24	bin-aslr/root-lantiq/usr/lib/libatm.so.1.0.0
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   286 Symbols     Yes	0		22	bin-aslr/root-lantiq/usr/lib/libxtables.so.12
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   230 Symbols     Yes	0		24	bin-aslr/root-lantiq/usr/lib/libatm.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   138 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/lib/libip6tc.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   160 Symbols     Yes	0		14	bin-aslr/root-lantiq/usr/lib/pppd/2.4.7/rp-pppoe.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   135 Symbols     Yes	0		10	bin-aslr/root-lantiq/usr/lib/pppd/2.4.7/pppoatm.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   387 Symbols     Yes	0		10	bin-aslr/root-lantiq/usr/lib/libiptext.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   230 Symbols     Yes	0		24	bin-aslr/root-lantiq/usr/lib/libatm.so.1
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   364 Symbols     Yes	0		20	bin-aslr/root-lantiq/usr/lib/libiwinfo.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   186 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/lib/libuclient.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   134 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/lib/libip4tc.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   286 Symbols     Yes	0		22	bin-aslr/root-lantiq/usr/lib/libxtables.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   134 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/lib/libip4tc.so.0.1.0
No RELRO        Canary found      NX enabled    DSO             No RPATH   No RUNPATH   168 Symbols     Yes	0		6	bin-aslr/root-lantiq/usr/lib/libbz2.so.1.0
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   138 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/lib/libip6tc.so.0
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   290 Symbols     Yes	0		21	bin-aslr/root-lantiq/usr/lib/libjson-c.so.2.0.2
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   134 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/lib/libip4tc.so.0
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   183 Symbols     Yes	0		8	bin-aslr/root-lantiq/usr/lib/libiptext4.so
No RELRO        Canary found      NX enabled    DSO             No RPATH   No RUNPATH   168 Symbols     Yes	0		6	bin-aslr/root-lantiq/usr/lib/libbz2.so.1.0.6
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2362 Symbols     Yes	0		36	bin-aslr/root-lantiq/usr/sbin/wpad
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   137 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/sbin/ubirmvol
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   170 Symbols     Yes	0		16	bin-aslr/root-lantiq/usr/sbin/ubinize
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   364 Symbols     Yes	0		20	bin-aslr/root-lantiq/usr/sbin/xtables-legacy-multi
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   138 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/sbin/ubiattach
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   364 Symbols     Yes	0		20	bin-aslr/root-lantiq/usr/sbin/iptables
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/sbin/brctl
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   144 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/sbin/ubinfo
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/sbin/crond
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   98 Symbols     Yes	0		6	bin-aslr/root-lantiq/usr/sbin/ubicrc32
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   125 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/sbin/ubiblock
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   1179 Symbols     Yes	0		28	bin-aslr/root-lantiq/usr/sbin/pppd
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   129 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/sbin/ubidetach
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   130 Symbols     Yes	0		14	bin-aslr/root-lantiq/usr/sbin/br2684ctl
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   142 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/sbin/ubirsvol
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   706 Symbols     Yes	0		34	bin-aslr/root-lantiq/usr/sbin/dropbear
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   123 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/sbin/ubirename
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   148 Symbols     Yes	0		14	bin-aslr/root-lantiq/usr/sbin/ubimkvol
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   859 Symbols     Yes	0		44	bin-aslr/root-lantiq/usr/sbin/dnsmasq
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/sbin/ntpd
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   364 Symbols     Yes	0		20	bin-aslr/root-lantiq/usr/sbin/iptables-restore
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2362 Symbols     Yes	0		36	bin-aslr/root-lantiq/usr/sbin/hostapd
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   364 Symbols     Yes	0		20	bin-aslr/root-lantiq/usr/sbin/ip6tables-restore
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   133 Symbols     Yes	0		12	bin-aslr/root-lantiq/usr/sbin/ubiupdatevol
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   449 Symbols     Yes	0		22	bin-aslr/root-lantiq/usr/sbin/odhcpd
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   364 Symbols     Yes	0		20	bin-aslr/root-lantiq/usr/sbin/ip6tables
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   246 Symbols     Yes	0		16	bin-aslr/root-lantiq/usr/sbin/ubiformat
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   364 Symbols     Yes	0		20	bin-aslr/root-lantiq/usr/sbin/ip6tables-save
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   364 Symbols     Yes	0		20	bin-aslr/root-lantiq/usr/sbin/iptables-save
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/sbin/chroot
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   296 Symbols     Yes	0		26	bin-aslr/root-lantiq/usr/sbin/odhcp6c
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   479 Symbols     Yes	0		16	bin-aslr/root-lantiq/usr/sbin/iw
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2362 Symbols     Yes	0		36	bin-aslr/root-lantiq/usr/sbin/wpa_supplicant
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/tee
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/awk
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/less
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   3911 Symbols     Yes	0		159	bin-aslr/root-lantiq/usr/bin/ldd
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   144 Symbols     Yes	0		6	bin-aslr/root-lantiq/usr/bin/jshn
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/expr
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/md5sum
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/time
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/bzcat
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/top
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/killall
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   166 Symbols     Yes	0		14	bin-aslr/root-lantiq/usr/bin/usign
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/reset
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/nc
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/du
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/id
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/[
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   706 Symbols     Yes	0		34	bin-aslr/root-lantiq/usr/bin/dbclient
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/uptime
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/dirname
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/find
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/clear
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/which
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/readlink
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/sort
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/yes
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/wc
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/crontab
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/printf
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/uniq
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/test
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/hexdump
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/logger
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/tr
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/bunzip2
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/sha256sum
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/pgrep
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/mkfifo
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/strings
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/seq
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/basename
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   146 Symbols     Yes	0		10	bin-aslr/root-lantiq/usr/bin/iwinfo
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   95 Symbols     Yes	0		4	bin-aslr/root-lantiq/usr/bin/bspatch
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/tail
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/flock
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/nslookup
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/cut
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/free
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   114 Symbols     Yes	0		6	bin-aslr/root-lantiq/usr/bin/fwtool
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   166 Symbols     Yes	0		14	bin-aslr/root-lantiq/usr/bin/signify
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/xargs
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/env
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   706 Symbols     Yes	0		34	bin-aslr/root-lantiq/usr/bin/dropbearkey
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/cmp
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   173 Symbols     Yes	0		14	bin-aslr/root-lantiq/usr/bin/jsonfilter
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/[[
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   83 Symbols     Yes	0		2	bin-aslr/root-lantiq/usr/bin/getrandom
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/usr/bin/head
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   216 Symbols     Yes	0		10	bin-aslr/root-lantiq/lib/libubus.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   109 Symbols     Yes	0		6	bin-aslr/root-lantiq/lib/libblobmsg_json.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   372 Symbols     Yes	0		28	bin-aslr/root-lantiq/lib/libubox.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   3911 Symbols     Yes	0		159	bin-aslr/root-lantiq/lib/libc.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   150 Symbols     Yes	0		6	bin-aslr/root-lantiq/lib/libvalidate.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   208 Symbols     Yes	0		18	bin-aslr/root-lantiq/lib/libfstools.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   236 Symbols     Yes	0		22	bin-aslr/root-lantiq/lib/libuci.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   132 Symbols     Yes	0		4	bin-aslr/root-lantiq/lib/libjson_script.so
Full RELRO      No canary found   NX enabled    DSO             No RPATH   No RUNPATH   60 Symbols     No	0		0	bin-aslr/root-lantiq/lib/libsetlbf.so
No RELRO        No canary found   NX disabled   DSO             No RPATH   No RUNPATH   482 Symbols     No	0		4	bin-aslr/root-lantiq/lib/libgcc_s.so.1
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   3911 Symbols     Yes	0		159	bin-aslr/root-lantiq/lib/ld-musl-mips-sf.so.1
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   398 Symbols     Yes	0		3	bin-aslr/root-lantiq/lib/modules/4.14.89/dwc2.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   62 Symbols     Yes	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_log_common.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   176 Symbols     No	0		1	bin-aslr/root-lantiq/lib/modules/4.14.89/drv_ifxos.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   30 Symbols     Yes	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/ipt_MASQUERADE.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   28 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/xt_conntrack.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   62 Symbols     No	0		1	bin-aslr/root-lantiq/lib/modules/4.14.89/owl-loader.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   88 Symbols     Yes	0		1	bin-aslr/root-lantiq/lib/modules/4.14.89/br2684.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   33 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/ip6table_filter.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   73 Symbols     Yes	0		1	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_defrag_ipv6.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   76 Symbols     Yes	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_conntrack_ipv6.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   33 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/iptable_nat.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   32 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/xt_time.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   37 Symbols     Yes	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_nat_masquerade_ipv4.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   252 Symbols     Yes	0		1	bin-aslr/root-lantiq/lib/modules/4.14.89/atm.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   55 Symbols     Yes	0		1	bin-aslr/root-lantiq/lib/modules/4.14.89/xt_FLOWOFFLOAD.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   350 Symbols     Yes	0		3	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_conntrack.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   80 Symbols     Yes	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_conntrack_ipv4.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   74 Symbols     Yes	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_log_ipv6.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   38 Symbols     Yes	0		1	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_reject_ipv6.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   22 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/xt_comment.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   33 Symbols     Yes	0		2	bin-aslr/root-lantiq/lib/modules/4.14.89/slhc.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   92 Symbols     Yes	0		2	bin-aslr/root-lantiq/lib/modules/4.14.89/ltq_atm_vr9.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   33 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/iptable_filter.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   1670 Symbols     Yes	0		4	bin-aslr/root-lantiq/lib/modules/4.14.89/ath10k_core.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   27 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/xt_REDIRECT.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   20 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/crc-ccitt.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   40 Symbols     Yes	0		2	bin-aslr/root-lantiq/lib/modules/4.14.89/xt_TCPMSS.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   90 Symbols     Yes	0		2	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_nat.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   105 Symbols     Yes	0		3	bin-aslr/root-lantiq/lib/modules/4.14.89/ltq_ptm_vr9.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   70 Symbols     Yes	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_log_ipv4.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   169 Symbols     Yes	0		2	bin-aslr/root-lantiq/lib/modules/4.14.89/ltq_deu_vr9.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   559 Symbols     Yes	0		4	bin-aslr/root-lantiq/lib/modules/4.14.89/cfg80211.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   63 Symbols     No	0		2	bin-aslr/root-lantiq/lib/modules/4.14.89/compat.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   29 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/ipt_REJECT.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   1088 Symbols     Yes	0		4	bin-aslr/root-lantiq/lib/modules/4.14.89/drv_mei_cpe.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   566 Symbols     Yes	0		3	bin-aslr/root-lantiq/lib/modules/4.14.89/ath9k_hw.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   81 Symbols     Yes	0		2	bin-aslr/root-lantiq/lib/modules/4.14.89/ath.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   32 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/iptable_mangle.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   32 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/xt_limit.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   32 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_defrag_ipv4.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   29 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/ip6t_REJECT.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   50 Symbols     Yes	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_nat_ipv4.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   27 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/xt_LOG.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   95 Symbols     Yes	0		1	bin-aslr/root-lantiq/lib/modules/4.14.89/pppoe.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   23 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/xt_multiport.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   1459 Symbols     Yes	0		5	bin-aslr/root-lantiq/lib/modules/4.14.89/mac80211.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   39 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/pppox.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   54 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_conntrack_rtcache.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   101 Symbols     Yes	0		2	bin-aslr/root-lantiq/lib/modules/4.14.89/ip_tables.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   24 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/xt_mark.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   25 Symbols     Yes	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/xt_tcpudp.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   99 Symbols     Yes	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_flow_table.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   184 Symbols     Yes	0		3	bin-aslr/root-lantiq/lib/modules/4.14.89/ppp_generic.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   33 Symbols     No	0		1	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_reject_ipv4.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   27 Symbols     Yes	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_nat_redirect.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   78 Symbols     No	0		1	bin-aslr/root-lantiq/lib/modules/4.14.89/ppp_async.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   98 Symbols     No	0		2	bin-aslr/root-lantiq/lib/modules/4.14.89/gpio-button-hotplug.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   316 Symbols     Yes	0		2	bin-aslr/root-lantiq/lib/modules/4.14.89/ath10k_pci.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   34 Symbols     Yes	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/ip6table_mangle.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   102 Symbols     Yes	0		2	bin-aslr/root-lantiq/lib/modules/4.14.89/ip6_tables.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   118 Symbols     No	0		3	bin-aslr/root-lantiq/lib/modules/4.14.89/ath9k_common.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   51 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/pppoatm.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   22 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/xt_mac.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   39 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/nf_flow_table_hw.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   144 Symbols     Yes	0		2	bin-aslr/root-lantiq/lib/modules/4.14.89/x_tables.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   665 Symbols     Yes	0		5	bin-aslr/root-lantiq/lib/modules/4.14.89/ath9k.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   32 Symbols     Yes	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/xt_nat.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   575 Symbols     Yes	0		3	bin-aslr/root-lantiq/lib/modules/4.14.89/drv_dsl_cpe_api.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   27 Symbols     No	0		0	bin-aslr/root-lantiq/lib/modules/4.14.89/xt_state.ko
Full RELRO      No canary found   NX enabled    PIE enabled     No RPATH   No RUNPATH   100 Symbols     No	0		8	bin-aslr/root-lantiq/sbin/w921v_fw_cutter
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   147 Symbols     Yes	0		16	bin-aslr/root-lantiq/sbin/kmodloader
Full RELRO      No canary found   NX enabled    PIE enabled     No RPATH   No RUNPATH   173 Symbols     No	0		8	bin-aslr/root-lantiq/sbin/logd
Full RELRO      No canary found   NX enabled    PIE enabled     No RPATH   No RUNPATH   99 Symbols     No	0		8	bin-aslr/root-lantiq/sbin/udevtrigger
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/sbin/mkswap
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/sbin/hwclock
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/sbin/route
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/sbin/halt
Full RELRO      No canary found   NX enabled    PIE enabled     No RPATH   No RUNPATH   91 Symbols     No	0		0	bin-aslr/root-lantiq/sbin/jffs2reset
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   No Symbols      Yes	0		16	bin-aslr/root-lantiq/sbin/vdsl_cpe_control
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   204 Symbols     Yes	0		12	bin-aslr/root-lantiq/sbin/mtd
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/sbin/ip
Full RELRO      No canary found   NX enabled    PIE enabled     No RPATH   No RUNPATH   107 Symbols     No	0		2	bin-aslr/root-lantiq/sbin/upgraded
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/sbin/start-stop-daemon
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   147 Symbols     Yes	0		16	bin-aslr/root-lantiq/sbin/modinfo
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   147 Symbols     Yes	0		16	bin-aslr/root-lantiq/sbin/rmmod
Full RELRO      No canary found   NX enabled    PIE enabled     No RPATH   No RUNPATH   87 Symbols     No	0		6	bin-aslr/root-lantiq/sbin/validate_data
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/sbin/pivot_root
Full RELRO      No canary found   NX enabled    PIE enabled     No RPATH   No RUNPATH   91 Symbols     No	0		0	bin-aslr/root-lantiq/sbin/jffs2mark
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/sbin/sysctl
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/sbin/reboot
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   147 Symbols     Yes	0		16	bin-aslr/root-lantiq/sbin/lsmod
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   533 Symbols     Yes	0		20	bin-aslr/root-lantiq/sbin/procd
Full RELRO      No canary found   NX enabled    PIE enabled     No RPATH   No RUNPATH   148 Symbols     No	0		8	bin-aslr/root-lantiq/sbin/uci
Full RELRO      No canary found   NX enabled    PIE enabled     No RPATH   No RUNPATH   171 Symbols     No	0		14	bin-aslr/root-lantiq/sbin/init
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/sbin/switch_root
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/sbin/poweroff
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   147 Symbols     Yes	0		16	bin-aslr/root-lantiq/sbin/modprobe
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   262 Symbols     Yes	0		12	bin-aslr/root-lantiq/sbin/ubusd
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   147 Symbols     Yes	0		16	bin-aslr/root-lantiq/sbin/insmod
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   165 Symbols     Yes	0		8	bin-aslr/root-lantiq/sbin/swconfig
Full RELRO      No canary found   NX enabled    PIE enabled     No RPATH   No RUNPATH   77 Symbols     No	0		2	bin-aslr/root-lantiq/sbin/askfirst
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/sbin/ifconfig
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   165 Symbols     Yes	0		14	bin-aslr/root-lantiq/sbin/logread
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   984 Symbols     Yes	0		28	bin-aslr/root-lantiq/sbin/netifd
Full RELRO      No canary found   NX enabled    PIE enabled     No RPATH   No RUNPATH   89 Symbols     No	0		0	bin-aslr/root-lantiq/sbin/mount_root
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/sbin/udhcpc
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   518 Symbols     Yes	0		28	bin-aslr/root-lantiq/sbin/fw3
Full RELRO      No canary found   NX enabled    PIE enabled     No RPATH   No RUNPATH   159 Symbols     No	0		10	bin-aslr/root-lantiq/bin/ubus
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   186 Symbols     Yes	0		12	bin-aslr/root-lantiq/bin/wget
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/netstat
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/fsync
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/gunzip
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/mv
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/lock
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/netmsg
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/vi
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/sed
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/passwd
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/pwd
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/false
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/cat
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/ls
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/ln
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/rm
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/chmod
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/ash
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/true
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/tar
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   186 Symbols     Yes	0		12	bin-aslr/root-lantiq/bin/uclient-fetch
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/ping6
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/date
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/login
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/mknod
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/echo
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/traceroute
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/ping
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/sleep
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/mount
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/chown
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/sh
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/dmesg
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/grep
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/rmdir
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/busybox
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/gzip
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/traceroute6
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/chgrp
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/cp
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/nice
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/zcat
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/mktemp
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/mkdir
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/umount
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/uname
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/egrep
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/fgrep
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/ps
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/dd
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/kill
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/df
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/pidof
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/touch
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   817 Symbols     Yes	0		34	bin-aslr/root-lantiq/bin/opkg
Full RELRO      Canary found      NX enabled    PIE enabled     No RPATH   No RUNPATH   2112 Symbols     Yes	0		62	bin-aslr/root-lantiq/bin/sync
-------------- next part --------------
RELRO           STACK CANARY      NX            PIE             RPATH      RUNPATH    Symbols      	FORTIFY	Fortified	Fortifiable   Filename
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   264 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/lib/libnl-tiny.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   138 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/lib/libip6tc.so.0.1.0
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   286 Symbols     Yes	0		22	bin-normal/root-lantiq/usr/lib/libxtables.so.12.2.0
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   290 Symbols     Yes	0		21	bin-normal/root-lantiq/usr/lib/libjson-c.so.2
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   174 Symbols     Yes	0		8	bin-normal/root-lantiq/usr/lib/libiptext6.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   230 Symbols     Yes	0		24	bin-normal/root-lantiq/usr/lib/libatm.so.1.0.0
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   286 Symbols     Yes	0		22	bin-normal/root-lantiq/usr/lib/libxtables.so.12
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   230 Symbols     Yes	0		24	bin-normal/root-lantiq/usr/lib/libatm.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   138 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/lib/libip6tc.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   160 Symbols     Yes	0		14	bin-normal/root-lantiq/usr/lib/pppd/2.4.7/rp-pppoe.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   135 Symbols     Yes	0		10	bin-normal/root-lantiq/usr/lib/pppd/2.4.7/pppoatm.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   387 Symbols     Yes	0		10	bin-normal/root-lantiq/usr/lib/libiptext.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   230 Symbols     Yes	0		24	bin-normal/root-lantiq/usr/lib/libatm.so.1
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   364 Symbols     Yes	0		20	bin-normal/root-lantiq/usr/lib/libiwinfo.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   186 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/lib/libuclient.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   134 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/lib/libip4tc.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   286 Symbols     Yes	0		22	bin-normal/root-lantiq/usr/lib/libxtables.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   134 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/lib/libip4tc.so.0.1.0
No RELRO        Canary found      NX enabled    DSO             No RPATH   No RUNPATH   168 Symbols     Yes	0		6	bin-normal/root-lantiq/usr/lib/libbz2.so.1.0
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   138 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/lib/libip6tc.so.0
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   290 Symbols     Yes	0		21	bin-normal/root-lantiq/usr/lib/libjson-c.so.2.0.2
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   134 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/lib/libip4tc.so.0
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   183 Symbols     Yes	0		8	bin-normal/root-lantiq/usr/lib/libiptext4.so
No RELRO        Canary found      NX enabled    DSO             No RPATH   No RUNPATH   168 Symbols     Yes	0		6	bin-normal/root-lantiq/usr/lib/libbz2.so.1.0.6
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   4245 Symbols     Yes	0		36	bin-normal/root-lantiq/usr/sbin/wpad
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   168 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/sbin/ubirmvol
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   188 Symbols     Yes	0		16	bin-normal/root-lantiq/usr/sbin/ubinize
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   469 Symbols     Yes	0		20	bin-normal/root-lantiq/usr/sbin/xtables-legacy-multi
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   167 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/sbin/ubiattach
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   469 Symbols     Yes	0		20	bin-normal/root-lantiq/usr/sbin/iptables
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/sbin/brctl
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   185 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/sbin/ubinfo
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/sbin/crond
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   101 Symbols     Yes	0		6	bin-normal/root-lantiq/usr/sbin/ubicrc32
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   142 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/sbin/ubiblock
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   1878 Symbols     Yes	0		28	bin-normal/root-lantiq/usr/sbin/pppd
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   152 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/sbin/ubidetach
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   146 Symbols     Yes	0		14	bin-normal/root-lantiq/usr/sbin/br2684ctl
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   173 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/sbin/ubirsvol
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   705 Symbols     Yes	0		32	bin-normal/root-lantiq/usr/sbin/dropbear
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   153 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/sbin/ubirename
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   179 Symbols     Yes	0		14	bin-normal/root-lantiq/usr/sbin/ubimkvol
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   1527 Symbols     Yes	0		44	bin-normal/root-lantiq/usr/sbin/dnsmasq
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/sbin/ntpd
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   469 Symbols     Yes	0		20	bin-normal/root-lantiq/usr/sbin/iptables-restore
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   4245 Symbols     Yes	0		36	bin-normal/root-lantiq/usr/sbin/hostapd
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   469 Symbols     Yes	0		20	bin-normal/root-lantiq/usr/sbin/ip6tables-restore
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   160 Symbols     Yes	0		12	bin-normal/root-lantiq/usr/sbin/ubiupdatevol
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   568 Symbols     Yes	0		22	bin-normal/root-lantiq/usr/sbin/odhcpd
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   469 Symbols     Yes	0		20	bin-normal/root-lantiq/usr/sbin/ip6tables
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   309 Symbols     Yes	0		16	bin-normal/root-lantiq/usr/sbin/ubiformat
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   469 Symbols     Yes	0		20	bin-normal/root-lantiq/usr/sbin/ip6tables-save
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   469 Symbols     Yes	0		20	bin-normal/root-lantiq/usr/sbin/iptables-save
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/sbin/chroot
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   370 Symbols     Yes	0		26	bin-normal/root-lantiq/usr/sbin/odhcp6c
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   680 Symbols     Yes	0		16	bin-normal/root-lantiq/usr/sbin/iw
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   4245 Symbols     Yes	0		36	bin-normal/root-lantiq/usr/sbin/wpa_supplicant
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/tee
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/awk
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/less
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   3911 Symbols     Yes	0		159	bin-normal/root-lantiq/usr/bin/ldd
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   160 Symbols     Yes	0		6	bin-normal/root-lantiq/usr/bin/jshn
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/expr
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/md5sum
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/time
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/bzcat
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/top
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/killall
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   168 Symbols     Yes	0		14	bin-normal/root-lantiq/usr/bin/usign
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/reset
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/nc
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/du
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/id
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/[
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   705 Symbols     Yes	0		32	bin-normal/root-lantiq/usr/bin/dbclient
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/uptime
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/dirname
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/find
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/clear
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/which
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/readlink
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/sort
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/yes
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/wc
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/crontab
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/printf
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/uniq
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/test
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/hexdump
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/logger
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/tr
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/bunzip2
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/sha256sum
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/pgrep
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/mkfifo
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/strings
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/seq
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/basename
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   148 Symbols     Yes	0		10	bin-normal/root-lantiq/usr/bin/iwinfo
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   98 Symbols     Yes	0		4	bin-normal/root-lantiq/usr/bin/bspatch
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/tail
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/flock
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/nslookup
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/cut
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/free
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   124 Symbols     Yes	0		6	bin-normal/root-lantiq/usr/bin/fwtool
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   168 Symbols     Yes	0		14	bin-normal/root-lantiq/usr/bin/signify
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/xargs
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/env
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   705 Symbols     Yes	0		32	bin-normal/root-lantiq/usr/bin/dropbearkey
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/cmp
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   194 Symbols     Yes	0		14	bin-normal/root-lantiq/usr/bin/jsonfilter
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/[[
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   87 Symbols     Yes	0		2	bin-normal/root-lantiq/usr/bin/getrandom
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/usr/bin/head
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   216 Symbols     Yes	0		10	bin-normal/root-lantiq/lib/libubus.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   109 Symbols     Yes	0		6	bin-normal/root-lantiq/lib/libblobmsg_json.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   372 Symbols     Yes	0		28	bin-normal/root-lantiq/lib/libubox.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   3911 Symbols     Yes	0		159	bin-normal/root-lantiq/lib/libc.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   150 Symbols     Yes	0		6	bin-normal/root-lantiq/lib/libvalidate.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   208 Symbols     Yes	0		18	bin-normal/root-lantiq/lib/libfstools.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   236 Symbols     Yes	0		22	bin-normal/root-lantiq/lib/libuci.so
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   132 Symbols     Yes	0		4	bin-normal/root-lantiq/lib/libjson_script.so
Full RELRO      No canary found   NX enabled    DSO             No RPATH   No RUNPATH   60 Symbols     No	0		0	bin-normal/root-lantiq/lib/libsetlbf.so
No RELRO        No canary found   NX disabled   DSO             No RPATH   No RUNPATH   482 Symbols     No	0		4	bin-normal/root-lantiq/lib/libgcc_s.so.1
Full RELRO      Canary found      NX enabled    DSO             No RPATH   No RUNPATH   3911 Symbols     Yes	0		159	bin-normal/root-lantiq/lib/ld-musl-mips-sf.so.1
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   398 Symbols     Yes	0		3	bin-normal/root-lantiq/lib/modules/4.14.89/dwc2.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   62 Symbols     Yes	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/nf_log_common.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   176 Symbols     No	0		1	bin-normal/root-lantiq/lib/modules/4.14.89/drv_ifxos.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   30 Symbols     Yes	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/ipt_MASQUERADE.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   28 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/xt_conntrack.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   62 Symbols     No	0		1	bin-normal/root-lantiq/lib/modules/4.14.89/owl-loader.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   88 Symbols     Yes	0		1	bin-normal/root-lantiq/lib/modules/4.14.89/br2684.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   33 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/ip6table_filter.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   73 Symbols     Yes	0		1	bin-normal/root-lantiq/lib/modules/4.14.89/nf_defrag_ipv6.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   76 Symbols     Yes	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/nf_conntrack_ipv6.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   33 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/iptable_nat.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   32 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/xt_time.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   37 Symbols     Yes	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/nf_nat_masquerade_ipv4.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   252 Symbols     Yes	0		1	bin-normal/root-lantiq/lib/modules/4.14.89/atm.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   55 Symbols     Yes	0		1	bin-normal/root-lantiq/lib/modules/4.14.89/xt_FLOWOFFLOAD.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   350 Symbols     Yes	0		3	bin-normal/root-lantiq/lib/modules/4.14.89/nf_conntrack.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   80 Symbols     Yes	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/nf_conntrack_ipv4.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   74 Symbols     Yes	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/nf_log_ipv6.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   38 Symbols     Yes	0		1	bin-normal/root-lantiq/lib/modules/4.14.89/nf_reject_ipv6.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   22 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/xt_comment.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   33 Symbols     Yes	0		2	bin-normal/root-lantiq/lib/modules/4.14.89/slhc.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   92 Symbols     Yes	0		2	bin-normal/root-lantiq/lib/modules/4.14.89/ltq_atm_vr9.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   33 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/iptable_filter.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   1670 Symbols     Yes	0		4	bin-normal/root-lantiq/lib/modules/4.14.89/ath10k_core.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   27 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/xt_REDIRECT.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   20 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/crc-ccitt.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   40 Symbols     Yes	0		2	bin-normal/root-lantiq/lib/modules/4.14.89/xt_TCPMSS.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   90 Symbols     Yes	0		2	bin-normal/root-lantiq/lib/modules/4.14.89/nf_nat.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   105 Symbols     Yes	0		3	bin-normal/root-lantiq/lib/modules/4.14.89/ltq_ptm_vr9.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   70 Symbols     Yes	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/nf_log_ipv4.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   169 Symbols     Yes	0		2	bin-normal/root-lantiq/lib/modules/4.14.89/ltq_deu_vr9.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   559 Symbols     Yes	0		4	bin-normal/root-lantiq/lib/modules/4.14.89/cfg80211.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   63 Symbols     No	0		2	bin-normal/root-lantiq/lib/modules/4.14.89/compat.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   29 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/ipt_REJECT.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   1088 Symbols     Yes	0		4	bin-normal/root-lantiq/lib/modules/4.14.89/drv_mei_cpe.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   566 Symbols     Yes	0		3	bin-normal/root-lantiq/lib/modules/4.14.89/ath9k_hw.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   81 Symbols     Yes	0		2	bin-normal/root-lantiq/lib/modules/4.14.89/ath.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   32 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/iptable_mangle.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   32 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/xt_limit.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   32 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/nf_defrag_ipv4.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   29 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/ip6t_REJECT.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   50 Symbols     Yes	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/nf_nat_ipv4.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   27 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/xt_LOG.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   95 Symbols     Yes	0		1	bin-normal/root-lantiq/lib/modules/4.14.89/pppoe.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   23 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/xt_multiport.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   1459 Symbols     Yes	0		5	bin-normal/root-lantiq/lib/modules/4.14.89/mac80211.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   39 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/pppox.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   54 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/nf_conntrack_rtcache.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   101 Symbols     Yes	0		2	bin-normal/root-lantiq/lib/modules/4.14.89/ip_tables.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   24 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/xt_mark.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   25 Symbols     Yes	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/xt_tcpudp.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   99 Symbols     Yes	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/nf_flow_table.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   184 Symbols     Yes	0		3	bin-normal/root-lantiq/lib/modules/4.14.89/ppp_generic.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   33 Symbols     No	0		1	bin-normal/root-lantiq/lib/modules/4.14.89/nf_reject_ipv4.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   27 Symbols     Yes	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/nf_nat_redirect.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   78 Symbols     No	0		1	bin-normal/root-lantiq/lib/modules/4.14.89/ppp_async.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   98 Symbols     No	0		2	bin-normal/root-lantiq/lib/modules/4.14.89/gpio-button-hotplug.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   316 Symbols     Yes	0		2	bin-normal/root-lantiq/lib/modules/4.14.89/ath10k_pci.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   34 Symbols     Yes	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/ip6table_mangle.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   102 Symbols     Yes	0		2	bin-normal/root-lantiq/lib/modules/4.14.89/ip6_tables.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   118 Symbols     No	0		3	bin-normal/root-lantiq/lib/modules/4.14.89/ath9k_common.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   51 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/pppoatm.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   22 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/xt_mac.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   39 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/nf_flow_table_hw.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   144 Symbols     Yes	0		2	bin-normal/root-lantiq/lib/modules/4.14.89/x_tables.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   665 Symbols     Yes	0		5	bin-normal/root-lantiq/lib/modules/4.14.89/ath9k.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   32 Symbols     Yes	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/xt_nat.ko
No RELRO        Canary found      NX disabled   Not an ELF file   No RPATH   No RUNPATH   575 Symbols     Yes	0		3	bin-normal/root-lantiq/lib/modules/4.14.89/drv_dsl_cpe_api.ko
No RELRO        No canary found   NX disabled   Not an ELF file   No RPATH   No RUNPATH   27 Symbols     No	0		0	bin-normal/root-lantiq/lib/modules/4.14.89/xt_state.ko
Full RELRO      No canary found   NX enabled    No PIE          No RPATH   No RUNPATH   102 Symbols     No	0		8	bin-normal/root-lantiq/sbin/w921v_fw_cutter
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   179 Symbols     Yes	0		16	bin-normal/root-lantiq/sbin/kmodloader
Full RELRO      No canary found   NX enabled    No PIE          No RPATH   No RUNPATH   194 Symbols     No	0		8	bin-normal/root-lantiq/sbin/logd
Full RELRO      No canary found   NX enabled    No PIE          No RPATH   No RUNPATH   105 Symbols     No	0		8	bin-normal/root-lantiq/sbin/udevtrigger
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/sbin/mkswap
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/sbin/hwclock
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/sbin/route
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/sbin/halt
Full RELRO      No canary found   NX enabled    No PIE          No RPATH   No RUNPATH   91 Symbols     No	0		0	bin-normal/root-lantiq/sbin/jffs2reset
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   No Symbols      Yes	0		16	bin-normal/root-lantiq/sbin/vdsl_cpe_control
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   223 Symbols     Yes	0		12	bin-normal/root-lantiq/sbin/mtd
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/sbin/ip
Full RELRO      No canary found   NX enabled    No PIE          No RPATH   No RUNPATH   113 Symbols     No	0		2	bin-normal/root-lantiq/sbin/upgraded
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/sbin/start-stop-daemon
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   179 Symbols     Yes	0		16	bin-normal/root-lantiq/sbin/modinfo
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   179 Symbols     Yes	0		16	bin-normal/root-lantiq/sbin/rmmod
Full RELRO      No canary found   NX enabled    No PIE          No RPATH   No RUNPATH   95 Symbols     No	0		6	bin-normal/root-lantiq/sbin/validate_data
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/sbin/pivot_root
Full RELRO      No canary found   NX enabled    No PIE          No RPATH   No RUNPATH   91 Symbols     No	0		0	bin-normal/root-lantiq/sbin/jffs2mark
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/sbin/sysctl
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/sbin/reboot
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   179 Symbols     Yes	0		16	bin-normal/root-lantiq/sbin/lsmod
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   679 Symbols     Yes	0		20	bin-normal/root-lantiq/sbin/procd
Full RELRO      No canary found   NX enabled    No PIE          No RPATH   No RUNPATH   174 Symbols     No	0		8	bin-normal/root-lantiq/sbin/uci
Full RELRO      No canary found   NX enabled    No PIE          No RPATH   No RUNPATH   183 Symbols     No	0		14	bin-normal/root-lantiq/sbin/init
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/sbin/switch_root
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/sbin/poweroff
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   179 Symbols     Yes	0		16	bin-normal/root-lantiq/sbin/modprobe
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   313 Symbols     Yes	0		12	bin-normal/root-lantiq/sbin/ubusd
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   179 Symbols     Yes	0		16	bin-normal/root-lantiq/sbin/insmod
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   167 Symbols     Yes	0		8	bin-normal/root-lantiq/sbin/swconfig
Full RELRO      No canary found   NX enabled    No PIE          No RPATH   No RUNPATH   80 Symbols     No	0		2	bin-normal/root-lantiq/sbin/askfirst
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/sbin/ifconfig
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   176 Symbols     Yes	0		14	bin-normal/root-lantiq/sbin/logread
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   1325 Symbols     Yes	0		28	bin-normal/root-lantiq/sbin/netifd
Full RELRO      No canary found   NX enabled    No PIE          No RPATH   No RUNPATH   90 Symbols     No	0		0	bin-normal/root-lantiq/sbin/mount_root
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/sbin/udhcpc
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   742 Symbols     Yes	0		28	bin-normal/root-lantiq/sbin/fw3
Full RELRO      No canary found   NX enabled    No PIE          No RPATH   No RUNPATH   192 Symbols     No	0		10	bin-normal/root-lantiq/bin/ubus
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   203 Symbols     Yes	0		12	bin-normal/root-lantiq/bin/wget
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/netstat
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/fsync
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/gunzip
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/mv
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/lock
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/netmsg
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/vi
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/sed
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/passwd
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/pwd
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/false
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/cat
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/ls
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/ln
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/rm
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/chmod
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/ash
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/true
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/tar
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   203 Symbols     Yes	0		12	bin-normal/root-lantiq/bin/uclient-fetch
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/ping6
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/date
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/login
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/mknod
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/echo
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/traceroute
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/ping
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/sleep
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/mount
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/chown
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/sh
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/dmesg
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/grep
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/rmdir
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/busybox
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/gzip
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/traceroute6
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/chgrp
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/cp
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/nice
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/zcat
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/mktemp
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/mkdir
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/umount
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/uname
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/egrep
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/fgrep
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/ps
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/dd
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/kill
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/df
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/pidof
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/touch
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   1098 Symbols     Yes	0		34	bin-normal/root-lantiq/bin/opkg
Full RELRO      Canary found      NX enabled    No PIE          No RPATH   No RUNPATH   3446 Symbols     Yes	0		62	bin-normal/root-lantiq/bin/sync
-------------- next part --------------
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


More information about the openwrt-devel mailing list