mirror of
https://github.com/Maybe4a6f7365/PwnHub.git
synced 2026-08-28 02:24:22 -05:00
22 lines
350 B
Bash
Executable File
22 lines
350 B
Bash
Executable File
#!/bin/bash
|
|
|
|
tab="${QUERY_PARAMS[tab]}"
|
|
|
|
if [ -z "$tab" ]; then
|
|
tab="challenges"
|
|
fi
|
|
|
|
case "$tab" in
|
|
"challenges")
|
|
exec pages/api/challenges.sh
|
|
;;
|
|
"tools")
|
|
exec pages/api/tools.sh
|
|
;;
|
|
"wordlists")
|
|
exec pages/api/wordlists.sh
|
|
;;
|
|
*)
|
|
exec pages/api/challenges.sh
|
|
;;
|
|
esac |