From 0e663cf6baf4a03836419e6ff8bd0c15eec59dae Mon Sep 17 00:00:00 2001 From: mclang Date: Fri, 26 Aug 2022 13:58:30 +0300 Subject: [PATCH] Fixes config path for 'Kiho linear recurring' --- kiho-linear-recurring.sh | 4 +++- pt-tools/README.md | 16 ++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 pt-tools/README.md diff --git a/kiho-linear-recurring.sh b/kiho-linear-recurring.sh index cd11bdf..10c9b81 100755 --- a/kiho-linear-recurring.sh +++ b/kiho-linear-recurring.sh @@ -7,7 +7,8 @@ set -e set -u # Read Linear API key from config file: -API_KEY=$(cat kiho-linear-recurring.cfg) +BASEDIR=$(dirname "$(readlink -nf $0)") +API_KEY=$(cat "${BASEDIR}/kiho-linear-recurring.cfg") API_URL="https://api.linear.app/graphql" @@ -124,3 +125,4 @@ for TPLID in "${TEMPLATES[@]}"; do # print_data "create issue result" "$RESULT" echo "==> Success: $(echo "$RESULT" | jq -cr '.data.issueCreate | [.success, .issue.identifier, .issue.state.name] | @csv')" done + diff --git a/pt-tools/README.md b/pt-tools/README.md new file mode 100644 index 0000000..5a027bf --- /dev/null +++ b/pt-tools/README.md @@ -0,0 +1,16 @@ +# Pentesting Tools + +Go tools from [Project Discovery](https://projectdiscovery.io/) +- [dnsx](https://github.com/projectdiscovery/dnsx) +- [httpx](https://github.com/projectdiscovery/httpx) +- [naabu](https://github.com/projectdiscovery/naabu) +- [nuclei](https://github.com/projectdiscovery/nuclei) +- [proxify](https://github.com/projectdiscovery/proxify) +- [subfinder](https://github.com/projectdiscovery/subfinder) + +Useful Links: +- [Nmap](https://nmap.org/) +- [OWASP Tools List](https://owasp.org/www-community/Vulnerability_Scanning_Tools) +- [Tenable Nessus](https://www.tenable.com/products/nessus) +- [Burb Suite](https://portswigger.net/burp/communitydownload) +- [Metasploit](https://www.metasploit.com/)