mirror of
https://github.com/hak5/bashbunny-payloads.git
synced 2025-10-29 16:58:25 +00:00
7 lines
177 B
Bash
7 lines
177 B
Bash
!#/bin/bash
|
|
|
|
# opens browsers to the bunny's index.html page
|
|
|
|
[[ "$(uname)" == "Darwin" ]] && open http://172.16.64.1
|
|
[[ "$(uname)" == "Linux" ]] && xdg-open http://172.16.64.1
|