Skip to content

Instantly share code, notes, and snippets.

@bittorrent3389
bittorrent3389 / list.h
Created November 23, 2017 02:31 — forked from evanslai/list.h
Linux kernel linked list, modified for userspace
#ifndef _LINUX_LIST_H
#define _LINUX_LIST_H
#include <stdio.h>
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
/**
* container_of - cast a member of a structure out to the containing structure
* @ptr: the pointer to the member.
@bittorrent3389
bittorrent3389 / super_decoder.js
Created August 27, 2016 07:05 — forked from Inndy/super_decoder.js
Decode jsfuck / aaencode / jjencode
!function () {
var global = this;
var old_eval = global.eval;
var old_const = global.Function.prototype.constructor;
global.Function.prototype.constructor = function (code) {
console.log('Function Constructor: ' + code);
return old_const(code);
};
global.eval = function (code) {
console.log('EVIL: ' + code);
cve product bounty source notes
CVE-2014-0257 .NET Framework $5,000.00 https://hackerone.com/reports/18851 Although the HackerOne report is filed under Sandbox Escape, the vulnerability was in the .NET Framework.
CVE-2015-3842 Android $2,000.00 https://code.google.com/p/android/issues/detail?id=177610
CVE-2015-3847 Android $1,500.00 https://code.google.com/p/android/issues/detail?id=179147
CVE-2015-3860 Android $500.00 https://code.google.com/p/android/issues/detail?id=178139
CVE-2015-3862 Android $333.00 https://code.google.com/p/android/issues/detail?id=181895
CVE-2015-3865 Android $1,500.00 https://code.google.com/p/android/issues/detail?id=182294
CVE-2015-3867 Android $4,000.00 https://code.google.com/p/android/issues/detail?id=182838
CVE-2015-3868 Android $4,000.00 https://code.google.com/p/android/issues/detail?id=182146
CVE-2015-3869 Android $3,000.00 https://code.google.com/p/android/issues/detail?id=182053