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
log: PID PPID PGID SID TSID LOGIN WCHAN EMUL COMM TDNAME | |
log: 55 33 33 33 0 root - ORBIS kernel SEL WebProcess.self elf_user_thid | |
log: [PS4][INFO]: PID 55 number of vmaps 226 | |
log: PID INDEX START END SIZE PRT RES PRES REF SHD FL TP PATH | |
log: 55 0 0x2bf6c000 0x2bf70000 0x4000 r-x 1 0 1 0 CN ?? | |
log: 55 1 0x2bf70000 0x2bf74000 0x4000 rw- 1 0 1 0 -- df | |
log: 55 2 0x200ad0000 0x200ad4000 0x4000 rw- 1 0 7 0 -- df | |
log: 55 3 0x200ad4000 0x200adc000 0x8000 rw- 2 0 7 0 -- df | |
log: 55 4 0x200adc000 0x200ae4000 0x8000 rw- 2 0 7 0 -- df | |
log: 55 5 0x200ae4000 0x200aec000 0x8000 rw- 1 0 7 0 -- df |
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
I/PSM UI : OnFocusActiveSceneChanged [BrowserMain : MainScene] -> [ContentAreaScene : ContentAreaScene] | |
I/PSM UI : Scene [ContentAreaScene : ContentAreaScene] : Alive | |
[SystemLogger][ClickThrough][EVT21]: s:[MainScene]s:[Sce.Vsh.ShellUI.AppSystem.LayerManager.RootScene:ShellApp:ShellAppScreen:WebBrowserScene:BrowserMain]s:[ContentAreaScene]s:[ | |
Sce.Vsh.ShellUI.AppSystem.LayerManager.RootScene:TopMenu:Navigation:TopMenuFrameScene:ContentsArea:ContentAreaScene]s:[NULL]s:[NULL]s:[NULL] | |
EVT22 is empty | |
EVT_invalid_ is empty |
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
I/PSM UI : UI system timer elap | |
sed 00:06:00 | |
[VSMALLOC] Video: Free=67257492, FreeChunk=87; System: Free=10024944, FreeChunk=6; Heap: Free=5101824 | |
Shader=10;VertexBuffer=71;PixelBuffer=320;FrameBuffer=4;Image=6 | |
W/PSM UI : ##### exit value = psexit: ##### | |
I/PSM UI : ** Unload enqueue: WebBrowserPlugin : WebBrowserPlugin |
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
#my ghetto soluton until this feature is implemented, https://github.com/oracle/opengrok/issues/2000 | |
from BeautifulSoup import BeautifulSoup | |
import urllib2 | |
import re | |
import os | |
import argparse | |
parser = argparse.ArgumentParser() | |
requiredNamed = parser.add_argument_group("required named arguments") |
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
# This quick and dirty script will print a chunk that you can copy into gdb for loading of UEFI driver symbols | |
# requires objdump to be in your env path | |
# Expects a debug.log file which it will parse for all loaded drivers | |
import glob, os | |
import sys | |
import subprocess | |
DEBUG_FILE = "debug.log" | |
UEFI_PATH = "/home/droogie/src/edk2/Build/OvmfX64/DEBUG_GCC5/X64/" |
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
(function () { | |
var app = WinJS.Application; | |
var activation = Windows.ApplicationModel.Activation; | |
var isFirstActivation = true; | |
app.onactivated = function (args) { | |
if (isFirstActivation) { | |
// execute system command via lua | |
Windows.Storage.DownloadsFolder.createFileAsync("escape.lua").then(function (file) { |
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 <stdlib.h> | |
#include <utils/RefBase.h> | |
#include <utils/Log.h> | |
#include <binder/TextOutput.h> | |
#include <binder/IInterface.h> | |
#include <binder/IBinder.h> | |
#include <binder/ProcessState.h> | |
#include <binder/IServiceManager.h> |
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
# 'sxe ld driver.sys' to breakpoint when driver loads | |
# probably want to manually breakpoint DriverEntry then trace... | |
# or find a better solution than this ghetto script | |
# modified to use pykd api more and increase the speed significantly | |
import pykd | |
PATH = "C:\\Users\\droogie\\Desktop\\trace.txt" | |
MODULE_NAME = "driver.sys" |
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
// basic program to grab if a PE binary was compiled with ASLR or DEP | |
#include <stdio.h> | |
#include <stdlib.h> | |
#define BYTE unsigned char | |
#define WORD unsigned short | |
#define DWORD unsigned int | |
#define LONG long | |
#define ULONGLONG unsigned long long |
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 <stdio.h> | |
#include <math.h> | |
#include <Windows.h> | |
#define MAX_THREADS 32 | |
typedef struct PrimeData { | |
unsigned long min; | |
unsigned long max; | |
unsigned long count; |
OlderNewer