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
{ | |
"images": [ | |
{ | |
/* required */ "name": "Windows 1.0", | |
/* required */ "version": "1.0", | |
/* required */ "locale": "en-US", | |
/* required */ "publisher": "Rafael", | |
/* required */ "lastUpdated": "2017-06-07T17:00:00Z", /* UniversalSortableDateTimePattern */ | |
/* required */ "description": [ | |
"Windows 1.0 was officially released on November 20, 1985.\n\n", |
This file has been truncated, but you can view the full file.
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
eoraptor - Scan for wasteful PNG text chunks in PE files | |
D:\analysis\Program Files\Common Files\microsoft shared\ink\ar-SA\tipresx.dll.mui | |
- Total: 0 | |
D:\analysis\Program Files\Common Files\microsoft shared\ink\bg-BG\tipresx.dll.mui | |
- Total: 0 | |
D:\analysis\Program Files\Common Files\microsoft shared\ink\cs-CZ\tipresx.dll.mui | |
- Total: 0 |
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
<#@ template debug="false" hostspecific="false" language="C#" #> | |
<#@ output extension="cpp" #> | |
/* Auto-generated code follows */ | |
#include <SDKDDKVer.h> | |
#include <stdio.h> | |
#define WIN32_LEAN_AND_MEAN | |
#define NOGDI | |
#include <windows.h> | |
<#@ assembly name="mscorlib" #> |
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
C:\Sources>electron-forge init barilium --template=react | |
WARNING: DEBUG environment variable detected. Progress indicators will be sent over electron-forge:lifecycle | |
electron-forge:lifecycle Process Started: Checking your system +0ms | |
electron-forge:lifecycle Process Succeeded: Checking your system +46ms | |
electron-forge:runtime-config setting key: verbose to value: false +6ms | |
WARNING: DEBUG environment variable detected. Progress indicators will be sent over electron-forge:lifecycle | |
electron-forge:init Initializing in: C:\Sources\barilium +0ms | |
electron-forge:lifecycle Process Started: Initializing Project Directory +3ms | |
electron-forge:init:directory creating directory: C:\Sources\barilium +2ms | |
electron-forge:init:directory found 7 files in the directory. warning the user +4ms |
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
#include "stdafx.h" | |
#include "nvapi.h" | |
#include "NvApiDriverSettings.h" | |
#define FAST_FAIL(x) { __debugbreak; NvAPI_Status __status = x; if (__status != NVAPI_OK) { return __status; } } | |
int wmain() | |
{ | |
auto NvStringOrEmpty = [](NvAPI_UnicodeString nvstring) -> LPWSTR |
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "attach", | |
"name": "Attach to Process", | |
"port": 6666 | |
} | |
] |
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
#!/usr/bin/env node | |
'use strict' | |
const co = require('co') | |
const frida = require('frida') | |
const fs = require('fs-promise') | |
const path = require('path') | |
const sleep = require('co-sleep'); | |
const pkg = require('./package.json') |
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
# Copyright (c) Rafael Rivera | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
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
import _ from 'lodash'; | |
import {fs} from '../promisify'; | |
import BuildDiscoverBase from '../build-discover-base'; | |
export default class OverrideBuildDiscoverer extends BuildDiscoverBase { | |
constructor(rootDir) { | |
super(rootDir); | |
} | |
async getAffinityForRootDir() { |
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
# | |
# Very preliminary Hololens appx/appxbundle publishing cmdlet to stand-in for | |
# Windows 10 SDK's WinAppDeployCmd which doesn't seem to support HoloLens | |
# | |
# https://gist.github.com/riverar/4046c3f97582e63dca618ab7f99cd337 | |
# | |
# Working: | |
# - Basic uploading of appx/appxbundle over HTTP | |
# |