Note
This no longer works in browser!
This no longer works if you're alone in vc! Somebody else has to join you!
Warning
There are now two quest types ("stream" and "play")! Pay attention to the instructions!
// native code exec PoC via Game Script - @carrot_c4k3 (exploits.forsale) | |
// | |
// sample shellcode: mov rax, 0x1337; ret; | |
// drop your own shellcode inplace here | |
let shellcode = [0x48,0xC7,0xC0,0x37,0x13,0x00,0x00,0xC3] | |
// hex printing helper functions | |
let i2c_map = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'] | |
let c2i_map = {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9, 'A': 0xA, 'B': 0xB, 'C': 0xC, 'D': 0xD, 'E': 0xE, 'F': 0xF} |
#!/bin/bash | |
BS=64M | |
ROOT_DEV=/dev/mmcblk0 | |
BOOTFS_BACKUP=${ROOT_DEV}p3 | |
BOOTFS_TARGET=${ROOT_DEV}p1 | |
ROOTFS_BACKUP=${ROOT_DEV}p2 | |
ROOTFS_TARGET=${ROOT_DEV}p4 | |
print_yellow() { | |
echo -e "\033[1;33m${1}\033[0m" |
I'm not going to be maintaining this document anymore. I'm leaving it as-is since much of the FAQ section is still accurate and has yet to be incorporated into other resources.
Use CanI.RootMy.TV to find an exploit for your TV.
import { defineConfig } from 'vite'; | |
import laravel from 'laravel-vite-plugin'; | |
import fs from 'fs'; | |
import { resolve } from 'path'; | |
import { homedir } from 'os'; | |
let host = 'sendstack.test'; | |
let homeDir = homedir(); | |
let serverConfig = {}; |
async function readRequestBody(request) { | |
const { headers } = request; | |
const contentType = headers.get('content-type') || ''; | |
if (contentType.includes('application/json')) { | |
return JSON.stringify(await request.json()); | |
} else if (contentType.includes('form')) { | |
const formData = await request.formData(); | |
const body = {}; | |
for (const entry of formData.entries()) { | |
body[entry[0]] = entry[1]; |
<?php | |
/** | |
----------------------------------------------------- | |
Enforce the Laravel Code Style using PHP CS Fixer 3.x | |
----------------------------------------------------- | |
Credits go to Laravel Shift & Andreas Elia. | |
https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200 | |
FireTV 2nd gen Cube Firmware
github.com/Pro-me3us/raven_firmware
Date | Version | Download | MD5 |
---|---|---|---|
2019-05-24 | Fire OS 6.2.6.4 (NS6264/1995) | update-kindle-mantis-NS6264_user_1995_0002449984388.bin | bfd8358014e3d36e8fa6f06fbf9ec0e4 |
2019-08-20 | Fire OS 6.2.6.5 (NS6265/2157) | update-kindle-mantis-NS6265_user_2157_0002852679044.bin | 09289b141c8339fe675cb0204689071f |
2019-10-09 | Fire OS 6.2.6.6 (NS6266/2292) | [update-kindle-mantis-NS6266_user_2292_0003054040196.bin](https://d1s31zyz7dcc2d.cloudfront.net/0136f0aae52d9777b27399ed9ea7d13e/update-kindle-mantis-NS6266_use |
/** | |
* Copy rich text content to clipboard. | |
* | |
* Must be initiated by a user click event. | |
* | |
* @param {string} content | |
*/ | |
export default function (content) { | |
const selection = window.getSelection(); |