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
@TaylanTatli
TaylanTatli / ytdeletelibsongs.js
Last active December 4, 2023 02:05
Youtube & YTMusic Scripts
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
async function deleteLibSongs() {
`use strict`;
var items = document.body.querySelectorAll(
".dropdown-trigger.ytmusic-menu-renderer"
);
var out;
@approovm
approovm / 00-android-bypass-certificate-pinning-and-mitm-attack-setup.md
Last active April 18, 2025 18:03
Certificate Pinning Bypassing: Setup with Frida, mitmproxy and Android Emulator with a writable file system
@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
@kremalicious
kremalicious / tor-openvpn.sh
Last active March 12, 2025 14:38
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
@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:
@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