mirror of
https://github.com/juewuy/ShellCrash.git
synced 2026-03-10 23:41:22 +00:00
19 lines
496 B
Bash
19 lines
496 B
Bash
. "$CRASHDIR"/libs/set_proxy.sh
|
|
#$1:目标地址 $2:json字符串
|
|
web_data_get() {
|
|
setproxy
|
|
if curl --version >/dev/null 2>&1; then
|
|
curl -ksSl --connect-timeout 3 "$1" 2>/dev/null
|
|
else
|
|
wget -Y on -q --timeout=3 -O - "$1"
|
|
fi
|
|
}
|
|
web_data_post() {
|
|
setproxy
|
|
if curl --version >/dev/null 2>&1; then
|
|
curl -ksSl -X POST --connect-timeout 3 "$1" "$2" >/dev/null 2>&1
|
|
else
|
|
wget -Y on -q --timeout=3 --header="Content-Type: application/octet-stream" --method=POST --body-file="$2" "$1"
|
|
fi
|
|
}
|