Skip to content

Instantly share code, notes, and snippets.

View 0x11DFE's full-sized avatar
👁️‍🗨️
Watching you...

Tesla 0x11DFE

👁️‍🗨️
Watching you...
View GitHub Profile
##
# - @T3SL4
# This PowerShell script is used to manage the permissions of a folder for the current user.
# It first prompts the user to input the folder path and then asks whether they want to do.
# This can be useful for protecting sensitive folders from accidental modification or deletion.
##
$folderPath = Read-Host -Prompt 'Input your folder path'; $username = whoami; $action = Read-Host -Prompt "(1) Block current-user from deleting, modifying, or renaming folder.`n(2) Restore current-user access?`nEnter the number"; if ($action -eq 1) { takeown /F $folderPath /A /R /D Y; icacls $folderPath /inheritance:r; icacls $folderPath /grant:r $username':(RX)' /T; icacls $folderPath /deny $username':(WD,AD,DC,WDAC,WO,WD)'; attrib +r $folderPath /S /D } else { icacls $folderPath /grant:r $username':(M)' /T; attrib -r $folderPath /S /D }
Serial Keys:
FU512-2DG1H-M85QZ-U7Z5T-PY8ZD
CU3MA-2LG1N-48EGQ-9GNGZ-QG0UD
GV7N2-DQZ00-4897Y-27ZNX-NV0TD
YZ718-4REEQ-08DHQ-JNYQC-ZQRD0
GZ3N0-6CX0L-H80UP-FPM59-NKAD4
YY31H-6EYEJ-480VZ-VXXZC-QF2E0
ZG51K-25FE1-H81ZP-95XGT-WV2C0
VG30H-2AX11-H88FQ-CQXGZ-M6AY4
NetLimiter 3
Registration name: Peter Raheli
Registration code: C99A2-QSSUD-2CSBG-TSRPN-A2BEB
NetLimiter 4
Registration Name: Vladimir Putin #2
Registration Code: XLEVD-PNASB-6A3BD-Z72GJ-SPAH7
https://www.netlimiter.com/download
# Netlimiter Full Netlimiter Activated Netlimiter cracked Netlimiter Full Version Netlimiter Serial Netlimiter keygen Netlimiter crack Netlimiter 4 serial Netlimiter 4 Crack Netlimiter 4 register Netlimiter 4 patch Netlimiter full Full version Netlimiter 4 Activated Netlimiter 4 Cracked Netlimiter Pro
@joyrexus
joyrexus / README.md
Last active June 19, 2024 09:35 — forked from liamcurry/gist:2597326
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})