Skip to content

Instantly share code, notes, and snippets.

@suuhm
suuhm / ossec-install-helper.sh
Last active September 15, 2023 21:31
OSSEC 3.7.0 installing helper script
#!/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
@suuhm
suuhm / win-sam-cracker.sh
Created August 18, 2023 19:16
Windows SAM NTLM File cracker - 42 LINES OF FUN ; Run on Kali live or install impacket / hashcat , john on your mashine to start
#!/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 " °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°° "
@suuhm
suuhm / pdf-investigator_0.2b.sh
Created August 16, 2023 20:29
Simple bash script for checking of PDF files and filter strings
#!/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
#
@suuhm
suuhm / ReVanced_CLI_Build_Helper_Linux.sh
Created August 14, 2023 16:16
ReVanced CLI Build Helper Script for Linux Devices incude. adb push
#!/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
@suuhm
suuhm / set_dsrm.bat
Created August 10, 2023 20:55
Setup / Reset new DSRM Password
@echo off
set SERVER_X=<IP>
echo STARTING:
ntdsutil
echo * SET NEW PASSWORD
set dsrm password
@suuhm
suuhm / listening-tulpen.bat
Last active January 16, 2024 18:49
Get listening TCP / UDP Ports like netstat in linux just on windows cmd
@echo off
REM netstat -tulpen analog:
echo\
netstat -anvp tcp | findstr "LIST*"
REM German
netstat -anvp tcp | findstr "ABH*"
@suuhm
suuhm / get_multicast_info.sh
Created May 23, 2023 22:44
Get some Infos and set IGMP Version on Linux Systems with SmcRoute
#!/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
@suuhm
suuhm / change_winX-language.bat
Created April 19, 2023 20:16
Changing the Windows - Systemlanguage smart way
@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\
@suuhm
suuhm / suse_upgrader.sh
Created April 5, 2023 00:19
openSuse Leap Update / Upgrade Helper Script for smart updating your new versions
#!/bin/bash
# Copyright 2023 - suuhmer
# All rights reserved
##################################
# Suse Upgrader - Easy version #
# Version beta 0.1 #
##################################
@suuhm
suuhm / disbale_ipv6_priv_ext.ps1
Created March 6, 2023 21:42
#turn your temp addr to a full ipv6
#turn your temp addr to a full ipv6
Set-NetIPv6Protocol -RandomizeIdentifiers Disabled
Set-NetIPv6Protocol -UseTemporaryAddresses Disabled
Restart-Computer