Some notes and tools on fingerprinting minified JavaScript libraries, AST fingerprinting, source code similarity, etc.
Some notes on accessing / exporting Apple's Reminders data on macOS.
Some notes on JavaScript Web App Reverse Engineering, specifically focussing on module / dependency identification.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Define the cookie jar and temp file for HTML content | |
COOKIE_JAR="cookie.txt" | |
HTML_FILE="response.html" | |
# URL details | |
LOGIN_URL="http://192.168.0.1/goform/logon" | |
RESTART_PAGE="http://192.168.0.1/ad_restart_gateway.html" | |
RESTART_ACTION="http://192.168.0.1/goform/ad_restart_gateway" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# AppleScript for macOS Sonoma that opens a new Finder window/tab showing the directory of | |
# a selected item (file or folder). If no item is selected, the script does nothing. Can be | |
# used in a Shortcut.app, as a Service in the menubar item, or as a Quick Action extension. | |
# | |
# Author: H. Duraki <[email protected]> | |
# <https://github.com/duraki> | |
# Jan 11, 2025 | |
tell application "Finder" | |
-- Check if there is a selection of Item/Folder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"schemaVersion": "1.2", | |
"key": "halis-publish-addon", | |
"name": "Halis Publish Addon", | |
"description": "A sample addon that for pentesting", | |
"baseUrl": "https://example.com", | |
"minimalSubscriptionPlan": "FREE", | |
"lifecycle":[], | |
"webhooks":[], | |
"components": [], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MATCH_PATTRN_RFI_VALID_WORLD_DOMINATION_PROJECT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; A minimal Mach-o x64 executable for OS X (also see below Mountain Lion version) | |
; | |
; $ nasm -f bin -o tiny_hello tiny_hello.s | |
; $ chmod +x tiny_hello | |
; $ ./tiny_hello | |
; Hello World! | |
; $ | |
; c.f. | |
; http://osxbook.com/blog/2009/03/15/crafting-a-tiny-mach-o-executable/ ( the original tiny mach-o executable ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Finder" | |
set visible of every process whose visible is true and name is not "Finder" to false | |
set the collapsed of windows to true | |
end tell |
NewerOlder