This file contains 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
{ | |
"homepage": "https://wimlib.net/", | |
"description": "wimlib is an open source, cross-platform library for creating, extracting, and modifying Windows Imaging (WIM) archives.", | |
"version": "1.14.4", | |
"license": "GPL-3.0-or-later", | |
"architecture": { | |
"64bit": { | |
"url": "https://wimlib.net/downloads/wimlib-1.14.4-windows-x86_64-bin.zip", | |
"hash": "6d99e242bfbc6d36fc987d433d63772180551b7f2d8de43e9561535a3e2c16d8" | |
}, |
This file contains 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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# MIT License | |
# | |
# Copyright (c) 2022 Michael Bikovitsky | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights |
This file contains 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
@"C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\cdb.exe" -sins -y "srv*nul" -c "r rip = ntdll!NtTerminateProcess; r rcx = -1; r rdx = 0; r rsp = (@rsp & 0xFFFFFFFFFFFFFFF0) - 8; eq @rsp (-1); qd" -p %1 |
This file contains 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
//------------------------------------------------ | |
//--- 010 Editor v12.0.1 Binary Template | |
// | |
// File: PFF.bt | |
// Authors: Michael Bikovitsky | |
// Version: 0.1 | |
// Purpose: Parses Still Life 2 cutscene files | |
// Category: Game | |
// File Mask: *.pff | |
// ID Bytes: 50 46 46 30 2E 30 00 |
This file contains 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
#include <assert.h> | |
#include <Windows.h> | |
#pragma pack(push, 1) | |
typedef struct MAGIC_SAUCE | |
{ | |
INT nHandleCount; | |
HANDLE hEvent; |
This file contains 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
// ==UserScript== | |
// @name JSONopto | |
// @namespace https://bikodbg.com/ | |
// @match https://*.panopto.eu/Panopto/Pages/Viewer.aspx?id=* | |
// @grant GM_registerMenuCommand | |
// @grant GM_xmlhttpRequest | |
// @grant GM_setClipboard | |
// @version 1.0 | |
// @author Michael Bikovitsky | |
// @description Extracts the Panopto video JSON |
This file contains 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
############################################################################# | |
# | |
# Copyright (C) Microsoft Corporation 1995 | |
# All Rights Reserved. | |
# | |
# MAKEFILE for WDM device driver kit | |
# | |
############################################################################# | |
# |
This file contains 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
#!/usr/bin/env python3 | |
import struct | |
from keystone import * | |
from capstone import * | |
CODE = """ | |
begin: |
This file contains 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
interface MyInterface | |
{ | |
typedef [encode, decode] MY_STRUCT; | |
} |
This file contains 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
#ifndef _UNISTD_H | |
#define _UNISTD_H 1 | |
/* This file intended to serve as a drop-in replacement for | |
* unistd.h on Windows. | |
* Please add functionality as neeeded. | |
* Original file from: http://stackoverflow.com/a/826027 | |
*/ | |
#include <stdlib.h> |
NewerOlder