Skip to content

Commit

Permalink
Fixes config path for 'Kiho linear recurring'
Browse files Browse the repository at this point in the history
  • Loading branch information
mclang committed Aug 26, 2022
1 parent 28a20a3 commit 0e663cf
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
4 changes: 3 additions & 1 deletion kiho-linear-recurring.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"


Expand Down Expand Up @@ -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

16 changes: 16 additions & 0 deletions pt-tools/README.md
Original file line number Diff line number Diff line change
@@ -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/)

0 comments on commit 0e663cf

Please sign in to comment.