This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # 1. Update hệ thống | |
| sudo apt update && sudo apt install -y golang tmux curl jq git | |
| # 2. Setup GOPATH | |
| mkdir -p $HOME/go/{bin,src,pkg} | |
| echo 'export GOPATH=$HOME/go' >> ~/.bashrc | |
| echo 'export PATH=$PATH:$GOPATH/bin:/usr/local/go/bin' >> ~/.bashrc | |
| source ~/.bashrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "swagger": "2.0", | |
| "info": { | |
| "title": "PoC XSS", | |
| "version": "1.0.0" | |
| }, | |
| "host": "webhook.site", | |
| "basePath": "/", | |
| "schemes": ["https"], | |
| "paths": { |