Last active
May 9, 2023 07:32
-
-
Save six2dez/6e2d9f4932fd38d84610eb851014b26e to your computer and use it in GitHub Desktop.
axiom_config.sh
This file contains 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 | |
# Use this as initial axiom's script on reconftw.cfg file to copy config files to the fleet | |
axiom-exec 'mkdir -p /home/op/.config/amass/ /home/op/Tools/ /home/op/.config/subfinder/ /home/op/.config/notify/' | |
axiom-scp ~/.config/amass/config.ini '*':/home/op/.config/amass/config.ini | |
axiom-scp ~/Tools/h8mail_config.ini '*':/home/op/Tools/h8mail_config.ini | |
axiom-scp ~/Tools/.github_tokens '*':/home/op/Tools/.github_tokens | |
axiom-scp ~/.config/notify/notify.conf '*':/home/op/.config/notify/notify.conf | |
axiom-scp ~/Tools/.gitlab_tokens '*':/home/op/Tools/.gitlab_tokens | |
axiom-exec "go install github.com/projectdiscovery/nuclei/v2/cmd/nuclei@latest" | |
axiom-exec "/home/op/go/bin/nuclei -ut" | |
axiom-exec "go install -v github.com/projectdiscovery/httpx/cmd/httpx@latest" | |
axiom-exec 'wget -q -O - https://raw.githubusercontent.com/trickest/resolvers/main/resolvers.txt > /home/op/lists/resolvers.txt' | |
axiom-exec 'wget -q -O - https://raw.githubusercontent.com/trickest/resolvers/main/resolvers-trusted.txt > /home/op/lists/resolvers_trusted.txt' | |
axiom-exec 'git clone https://github.com/geeknik/the-nuclei-templates /home/op/recon/nuclei/extra_templates' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment