Skip to content

Instantly share code, notes, and snippets.

View otuva's full-sized avatar
💩

Onur Alp Akin otuva

💩
  • Arasaka Corporation
  • /home/otuva
View GitHub Profile
@gismo141
gismo141 / remove_gui_from_debian.sh
Last active May 16, 2025 05:19
Remove all GUI-related Packages from Existing Debian-Installation
apt-get remove -y --purge x11-common
apt-get autoremove -y --purge
apt-get install -y deborphan
deborphan | xargs dpkg -P # do this a bunch of times
@9to5IT
9to5IT / Manage-ADComputers.ps1
Created July 4, 2016 12:06
PowerShell: Cleanup inactive AD computer objects
Import-Module ActiveDirectory
# Set the number of days since last logon
$DaysInactive = 90
$InactiveDate = (Get-Date).Adddays(-($DaysInactive))
#-------------------------------
# FIND INACTIVE COMPUTERS
#-------------------------------
# Below are three options to find inactive computers. Select the one that is most appropriate for your requirements:
@kremalicious
kremalicious / tor-openvpn.sh
Last active July 6, 2025 23:21
Install and configure Tor as proxy for all OpenVPN server traffic
# what we want:
# client -> OpenVPN -> Tor -> Internet
# Install & configure OpenVPN
# https://www.digitalocean.com/community/tutorials/how-to-set-up-an-openvpn-server-on-ubuntu-16-04
# assumed OpenVPN configuration
# 10.8.0.1/24-Subnet
# tun0-Interface
@AshtonIzmev
AshtonIzmev / kali_THM_boostrap.sh
Last active November 22, 2023 10:11
TryHackMe Kali Complete Docker Image
docker pull kalilinux/kali-rolling
apt-get update
# Password
apt install -y hydra \
metasploit-framework \ # ! > 1gb
hashcat \ # needs GPU
nikto # webserver security
@approovm
approovm / 00-android-bypass-certificate-pinning-and-mitm-attack-setup.md
Last active November 10, 2025 15:45
Certificate Pinning Bypassing: Setup with Frida, mitmproxy and Android Emulator with a writable file system