Re: a crude script to check shared library soname/package name integrity

2002-04-19 Thread Ulrich Eckhardt
On Friday 19 April 2002 01:06, Junichi Uekawa wrote: This line can be used to crudely check for suspicious soname/package name integrity, run it on your system, and see how much comes up : for A in /var/lib/dpkg/info/*.shlibs; do awk '$3 !~ $2$ {print $0}' $A; done A _lot_. However, what

Re: a crude script to check shared library soname/package name integrity

2002-04-19 Thread Junichi Uekawa
Ulrich Eckhardt [EMAIL PROTECTED] cum veritate scripsit: for A in /var/lib/dpkg/info/*.shlibs; do awk '$3 !~ $2$ {print $0}' $A; done A _lot_. However, what does this really check for ? And what are the conclusions you can draw from that ? It checks if the soname of a library as noted

a crude script to check shared library soname/package name integrity

2002-04-18 Thread Junichi Uekawa
Hi, This line can be used to crudely check for suspicious soname/package name integrity, run it on your system, and see how much comes up : for A in /var/lib/dpkg/info/*.shlibs; do awk '$3 !~ $2$ {print $0}' $A; done regards, junichi -- [EMAIL PROTECTED] : Junichi Uekawa