mirror of
https://github.com/zardus/ctf-tools
synced 2025-01-07 10:08:48 +00:00
16 lines
275 B
Text
16 lines
275 B
Text
|
#!/bin/bash -e
|
||
|
|
||
|
[ -e libc-database ] || git clone https://github.com/niklasb/libc-database
|
||
|
|
||
|
mkdir -p bin
|
||
|
for i in add dump find get identify
|
||
|
do
|
||
|
cat <<END > bin/libc-database-$i
|
||
|
cd $PWD/libc-database/
|
||
|
./$i "$@"
|
||
|
END
|
||
|
chmod 755 bin/libc-database-$i
|
||
|
done
|
||
|
|
||
|
bin/libc-database-get
|