[Full-Disclosure] [ElectronicSouls] - GOT Tools?
From: es@hush.com
Date: 11/29/02
- Next message: es@hush.com: "[Full-Disclosure] [ElectronicSouls] - Linux insmod Advisory"
- Previous message: es@hush.com: "[Full-Disclosure] [ElectronicSouls]"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
From: es@hush.com (es@hush.com) Date: Thu, 28 Nov 2002 22:05:27 -0800
-----BEGIN PGP SIGNED MESSAGE-----
Dear List,
Often we forget how the syntax to complex command line tools, such
as objdump. Because of the difficulties surrounding memorization,
we have created a series of useful shellscripts to automate some very
basic processes.
# cat es-got.sh
#!/bin/sh
# (C) BrainStorm - ElectronicSouls
# 0x4553 == 0x5345 got it?
# just made while researching stuff..
# might be usefull for you too..
binary=$1
funct=$2
obj="/usr/bin/objdump"
echo "-+- 0x4553 -+-"
if [ "$1" = "" ];
then
echo "get GOT entry of:";read binary
if [ "$binary" = "" ];
then
echo "sqeez me ?"
exit
fi
echo "grab function:";read funct
if [ "$funct" = "" ];
then
echo "sqeez me ?"
exit
fi
echo "-+- results:"
$obj --dynamic-reloc $binary |grep $funct
else
$obj --dynamic-reloc $1 |grep $2
exit
fi
#
We are sure you can find some very useful applications for this out
in the wild <EG>.
The Electronic Souls Crew
[ElectronicSouls] (c) 2002
"Be forwarned -- the ship sails at noon."
-----BEGIN PGP SIGNATURE-----
Version: Hush 2.2 (Java)
Note: This signature can be verified at https://www.hushtools.com/verify
wlMEARECABMFAj3nA7cMHGVzQGh1c2guY29tAAoJEN5nGqhGcjltAyIAnjm4RABbNnMy
C6bV+3mBeetCuhiPAKCIIkDseeXR2YvXfWwtt0tLgCbnZw==
=rr1R
-----END PGP SIGNATURE-----
Concerned about your privacy? Follow this link to get
FREE encrypted email: https://www.hushmail.com/?l=2
Big $$$ to be made with the HushMail Affiliate Program:
https://www.hushmail.com/about.php?subloc=affiliate&l=427
- Next message: es@hush.com: "[Full-Disclosure] [ElectronicSouls] - Linux insmod Advisory"
- Previous message: es@hush.com: "[Full-Disclosure] [ElectronicSouls]"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]