mirror of
https://github.com/nullsecuritynet/tools
synced 2026-06-08 16:27:39 +00:00
7 lines
183 B
Bash
Executable File
7 lines
183 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
curl https://www.dropbox.com/s/6bbtntpywxm0wz0/example_binaries.tar.gz?dl=1 -o examples.tar.gz -J -L -k
|
|
gzip -d examples.tar.gz
|
|
tar -xvf examples.tar
|
|
rm examples.tar
|