Skip to content

Instantly share code, notes, and snippets.

@davidzou2131
davidzou2131 / EMU.py
Created February 9, 2020 06:22
DET NSW EMU Batch Password Reset Utility v2
#!/usr/bin/env python3
import csv
import getpass
import json
import re
import requests
import sys
import time
import traceback
@davidzou2131
davidzou2131 / w32_dummy.c
Created July 29, 2016 04:54
Win32 Dummy Application
#include <windows.h>
/* A Win32 program that does literally nothing, returning immediately.
Useful for replacing an existing binary to do nothing and exit.
*/
// Create a Graphical Windows Program in order to prevent a terminal showing
int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdParam, int iCmdShow) {
return 0;
}
@davidzou2131
davidzou2131 / README.md
Created April 23, 2016 07:22
iTunes m4a Personal Information Remover

What this script does

This script removes all the personal information linked to the iTunes account which purchased the song. This includes your full name and email address. This script losslessly remuxes the mp4 (m4a) into a new mp4 container. avconv is used because a file stripped of all personal information tags with AtomicParsley will still contain the owner's full name if the file is viewed with a hex editor. avconv will only preserve standard metadata tags, thus removing all personal information plus some iTunes specific information.

Requirements/Dependencies

  • Python 3 (compatible with v2)
  • avconv (Successor to ffmpeg)
  • AtomicParsley

Setup

  • Linux packages
@davidzou2131
davidzou2131 / DomainUserAccountDeleter.au3
Created February 27, 2016 23:10
Domain User Account Deleter
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <GUIListBox.au3>
#include <WindowsConstants.au3>
#include <GuiListView.au3>
#include <ListviewConstants.au3>
#include <Array.au3>
#RequireAdmin
@davidzou2131
davidzou2131 / README.md
Last active February 9, 2020 06:27
DET NSW EMU Batch Password Reset Tool