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 |
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
| @echo off | |
| set SERVER_X=<IP> | |
| echo STARTING: | |
| ntdsutil | |
| echo * SET NEW PASSWORD | |
| set dsrm password |
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
| @echo off | |
| REM netstat -tulpen analog: | |
| echo\ | |
| netstat -anvp tcp | findstr "LIST*" | |
| REM German | |
| netstat -anvp tcp | findstr "ABH*" |
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/sh | |
| IFACE=$1 | |
| #Igmp version | |
| IV=2 | |
| echo "Multicast supported?" | |
| cat /boot/config-$(uname -r) | grep CONFIG_IP_MULTICAST | |
| route add -net 224.0.0.0 netmask 240.0.0.0 dev $IFACE |
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
| @echo off | |
| cls | |
| :: echo change from eng (0409) to german -> 0407: | |
| :: (c) 2023 suuhmer | |
| :: | |
| echo Change Sys-Lang to %~1 - (Original: German 0407) | |
| echo\ | |
| Reg.Exe add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Nls\Language" /v Default /t REG_SZ /d %~1 /f | |
| 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 | |
| # Copyright 2023 - suuhmer | |
| # All rights reserved | |
| ################################## | |
| # Suse Upgrader - Easy version # | |
| # Version beta 0.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
| #turn your temp addr to a full ipv6 | |
| Set-NetIPv6Protocol -RandomizeIdentifiers Disabled | |
| Set-NetIPv6Protocol -UseTemporaryAddresses Disabled | |
| Restart-Computer |