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 | |
# Setting Up OpenWRT on a Virtual Machine with Proxmox | |
# Based on: https://community.bigbeartechworld.com/t/setting-up-openwrt-on-a-virtual-machine-with-proxmox/257 | |
# Set your wished version: | |
export VER="23.05" | |
export ARCH="amd64" | |
export INDEX_URL="https://images.linuxcontainers.org/images/openwrt/$VER/$ARCH/default" | |
#export BUILDDATE=$(date -d "yesterday" '+%Y%m%d') |
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 | |
# | |
[ "$1" != "--host" ] && echo "Usage: $0 --host <IP> [PORT] [USER]" && exit 1 || IP=$2 | |
[ -z $3 ] && PRT=22 || PRT=$3 | |
[ -z $4 ] && USR="root" || USR=$4 | |
echo "SSH BRUTE on $IP:$PRT - User: ($USR) ";echo "----------------------------------------------------------------";echo; sleep 2 | |
hydra $IP -s PRT -o "$IP-ssh-brute.txt" -l $USR -P /usr/share/wordlists/john.lst -e nsr -u -f -t 16 ssh | |
# |
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
wget https://github.com/PowerShell/PowerShell/releases/download/v7.2.17/powershell-lts_7.2.17-1.deb_amd64.deb | |
#suse fedora | |
#rpm -Uvh powershell-lts_7.2.17-1.deb_amd64.deb | |
dpkg -i powershell-lts_7.2.17-1.deb_amd64.deb | |
pwsh |
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
# Just enter the wished device you wanr to list your broadcast and multicast member ip's | |
D=eth0 ; B=$(ip a s dev $D | grep -E "^.*i.*brd \d" | cut -d ' ' -f8); echo 0 >/proc/sys/net/ipv4/icmp_echo_ignore_broadcasts; F=/tmp/mcout; rm $F; clear; while true; do ping $B -W2 -c2 | grep from | cut -d " " -f4 | cut -d ":" -f1 >> $F; ping 224.0.0.1 -W2 -c2 | grep from | cut -d " " -f4 | cut -d ":" -f1 >> $F; clear; echo "BROAD/MULTICAST [$B] (END CTRL^C)"; echo; cat $F | sort -u; sleep 2; done |
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 | |
# github_repo_release_downloader.sh (c) suuhm - 2023 | |
# -------------------------------------------------- | |
# Download/list all wished files in a Github repository: | |
# | |
# | |
# Options: | |
# ./github_repo_release_downloader.sh | |
# --list : List all files in Repo |
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
# SET PROXY-ARP | |
# ------------- | |
echo 1 > /proc/sys/net/ipv4/conf/eth0.1/proxy_arp | |
# Check with ARPPING | |
# ------------------ | |
apt install arping | |
arping 203.0.113.114 -i eth0 |
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 | |
#Set Version you wished: | |
VER="3.7.0" | |
echo "Installing OSSEC v${VER}" | |
echo "(c) 2023 - suuhm" | |
echo; sleep 2 | |
apt clean && apt update |
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 | |
# | |
# WIN-SAM-CRACKER.sh - 42 LINES OF FUN ; RUN ON KALI 2 RECOVER | |
clear; echo | |
echo " °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°° " | |
echo "| WINDOWS SAM CRACKER - v0.1b (C) 2023 suuhm |" | |
echo "| ------------------------------------------ |" | |
echo "| THE EASY WAY TO WINDOZE URSELF |" | |
echo " °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°° " |
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 | |
# | |
# ------------------------------------------- | |
# PDF INVESTIGATOR v0.2beta ; (c) 2023 suuhm | |
# ------------------------------------------- | |
# | |
# pdate-alternatives --install /usr/bin/python python /usr/bin/python3.11 1 | |
# | |
# apt install pdf-parser pdfid | |
# |
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 | |
echo "ReVanced CLI Helper v0.1a (c) by 2023 suuhm" | |
echo; echo "Usage: $0 YOU_YOUTUBE_APP.apk"; echo; sleep 1 | |
YTAPP=$1 | |
IPTV=1.2.3.4 | |
RDIRr=/opt/revanced | |
mkdir -p $RDIR && cd $RDIR |