/usr/share/doc/ncc/hacking.BIND is in ncc 2.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | Hacking Bind (9.1.2)
--------------------
As if on purpose, the program bind could not be any more obfuscated.
Anyway, our computer can do the job for us.
./configure
Run the following script:
--------------------------------------
#!/bin/sh
for a in $(find . -name Makefile)
do
cp $a TMP
cat TMP | sed 's/gcc/ncc -ncgcc -ncoo/' > $a
done
--------------------------------------
'make -i'
Voila!
|