mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
15 lines
275 B
Bash
Executable file
15 lines
275 B
Bash
Executable file
#!/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
|