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
| #!/usr/bin/env python | |
| # Zed Attack Proxy (ZAP) and its related class files. | |
| # | |
| # ZAP is an HTTP/HTTPS proxy for assessing web application security. | |
| # | |
| # Copyright 2017 ZAP Development Team | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at |
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 | |
| # usage: ./minio-upload my-bucket my-file.zip minio-host.com access_key secret | |
| bucket=$1 | |
| file=$2 | |
| minio_host=$3 | |
| access_key=$4 | |
| secret=$5 |