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
| version: "3.7" | |
| volumes: | |
| keycloak: | |
| services: | |
| keycloak: | |
| image: quay.io/keycloak/keycloak:22.0.5 | |
| ports: |
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
| #Thank you @NotMedic for troubleshooting/validating stuff! | |
| $password = Read-Host -Prompt "Enter Password" | |
| #^^ Feel free to hardcode this for running in a beacon/not retyping it all the time! | |
| $server = "admin" #This will just decide the name of the cert request files that are created. I didn't want to change the var name so it's server for now. | |
| $CERTPATH = "C:\Users\lowpriv\Desktop\" #Where do you want the cert requests to be stored? | |
| $CAFQDN = "dc01.alexlab.local" #hostname of underlying CA box. | |
| $CASERVER = "alexlab-dc01-ca" #CA name. | |
| $CA = $CAFQDN + "\" + $CASERVER |
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 | |
| # install necessary dependencies | |
| sudo apt-get install -y libnetfilter-queue-dev libpcap-dev iptables lsof make gcc jq | |
| # download specific go version needed for glutton | |
| wget https://dl.google.com/go/go1.17.7.linux-amd64.tar.gz | |
| tar xvzf go1.17.7.linux-amd64.tar.gz | |
| mv go /usr/local |
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
| import "hash" | |
| rule metasploit_office_word_macro_vbaproject_bin_zipped { | |
| meta: | |
| author = "DidierStevens" | |
| date = "2017/08/20" | |
| description = "Source code put in public domain by Didier Stevens, no Copyright https://DidierStevens.com, Use at your own risk! Detect .docm files created with Metasploit's office_word_macro exploit" | |
| strings: |
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 | |
| Help() | |
| { | |
| # Display Help | |
| echo "Automated recon script for Bug Bounty - author @maikroservice" | |
| echo | |
| echo "Syntax: recon.sh [-h|v|V] <targetdomain>" | |
| echo "options:" | |
| echo "h Print this Help." |
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 | |
| ROCKYOU_PATH=$(find / -name rockyou.txt 2>/dev/null) | |
| if [ -z "$ROCKYOU_PATH" ] | |
| then | |
| echo "rockyou.txt not found" | |
| exit | |
| else | |
| mkdir -p /usr/share/wordlists/rockyou |
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 | |
| # install the necessary tools for UTM to support copy & paste | |
| sudo apt install -y spice-vdagent \ | |
| spice-webdavd | |
| # install gnupg for the kali repos + standard tooling | |
| sudo apt install -y gnupg \ | |
| wget \ | |
| curl \ |
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 | |
| sudo apt remove -y openvpn | |
| sudo apt autoremove -y | |
| sudo sh -c 'echo "deb http://ftp.de.debian.org/debian bullseye main" > /etc/apt/sources.list.d/debian-aptrepo.list' | |
| sudo apt update | |
| sudo apt install -y openvpn=2.5.1-3 | |
| sudo apt-mark hold openvpn |
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
| # Generated by Powerlevel10k configuration wizard on 2022-07-02 at 11:45 CEST. | |
| # Based on romkatv/powerlevel10k/config/p10k-rainbow.zsh, checksum 24045. | |
| # Wizard options: nerdfont-complete + powerline, small icons, rainbow, unicode, | |
| # 24h time, angled separators, sharp heads, flat tails, 1 line, compact, many icons, | |
| # concise, instant_prompt=verbose. | |
| # Type `p10k configure` to generate another config. | |
| # | |
| # Config for Powerlevel10k with powerline prompt style with colorful background. | |
| # Type `p10k configure` to generate your own config based on it. | |
| # |
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
| # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. | |
| # Initialization code that may require console input (password prompts, [y/n] | |
| # confirmations, etc.) must go above this block; everything else may go below. | |
| if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then | |
| source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" | |
| fi | |
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH |
NewerOlder