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 | |
| if [ ! -f "$1" ]; then | |
| echo "Usage: $0 <file.gnmap>" | |
| exit 1 | |
| fi | |
| INPUT_FILE=$1 | |
| OUTPUT_FILE="combined_services.nmap" |
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/python3 | |
| import webbrowser | |
| import sys | |
| import os | |
| # Check arguments | |
| if len(sys.argv) < 2: | |
| print("Usage: openinbrowser.py <urls_file> [max_tabs]") | |
| sys.exit(1) |
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
| services: | |
| vpn1: | |
| image: dperson/openvpn-client:latest | |
| container_name: vpn-client1 | |
| cap_add: | |
| - NET_ADMIN | |
| devices: | |
| - /dev/net/tun | |
| restart: unless-stopped | |
| volumes: |
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 bash | |
| domain=$1 | |
| temp_ip=() | |
| ipv4=() | |
| ipv6=() | |
| while IFS= read -r line; do | |
| temp_ip+=( "$line" ) |
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
| # Inspiration from https://twitter.com/mrhvid/status/929717169130176512 @mrhvid @Lee_Holmes | |
| function ResolveIp($IpAddress) { | |
| try { | |
| (Resolve-DnsName $IpAddress -QuickTimeout -ErrorAction SilentlyContinue).NameHost | |
| } catch { | |
| $null | |
| } | |
| } |