mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 08:24:42 +01:00
Removed
This commit is contained in:
parent
1fe7e92955
commit
2ea2871282
2 changed files with 0 additions and 1329 deletions
1274
utils/binary_analyze
1274
utils/binary_analyze
File diff suppressed because it is too large
Load diff
|
@ -1,55 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
#****************************************************************************
|
||||
#* Copyright (c) Andrew Gross 2003-2004
|
||||
#* All Rights Reserved
|
||||
#*
|
||||
#* The following information and material is confidential and proprietary
|
||||
#* information of Andrew Gross (the "Confidential Material") and
|
||||
#* is protected by copyright, patent, trade secrets and other intellectual
|
||||
#* and property laws. Access to this Confidential Material is limited to
|
||||
#* authorized employees and/or licensees. Any unauthorized use of the
|
||||
#* Confidential Material could subject the user to criminal and/or civil
|
||||
#* penalties.
|
||||
#*
|
||||
#* This work is intended for Immunix, Inc. (the "Client") on a
|
||||
#* work-for-hire basis pending contract completion and payment whereupon
|
||||
#* all rights confer to the Client.
|
||||
#*
|
||||
#****************************************************************************
|
||||
|
||||
|
||||
|
||||
|
||||
# Usage: ./pass1 path_to_executable
|
||||
|
||||
|
||||
# Get basename of path given on command line.
|
||||
#
|
||||
FILE=`basename $1`
|
||||
|
||||
|
||||
# Clear out old data
|
||||
#
|
||||
/bin/rm -rf $FILE
|
||||
mkdir -p $FILE
|
||||
|
||||
|
||||
# Run objdump with a variety of options to obtain data files for pass2
|
||||
#
|
||||
objdump $1 -x > $FILE/header
|
||||
objdump $1 -R > $FILE/dynam
|
||||
objdump $1 -d > $FILE/text
|
||||
objdump $1 -T > $FILE/dyn_syms
|
||||
objdump $1 -s --section=.rodata > $FILE/rodata
|
||||
objdump $1 -s --section=.data > $FILE/data
|
||||
|
||||
|
||||
# Used only for object files
|
||||
#
|
||||
objdump $1 -r > $FILE/reloc
|
||||
|
||||
|
||||
# Not used
|
||||
#
|
||||
#objdump $1 -t > $FILE/syms
|
Loading…
Add table
Reference in a new issue