CPU: Intel Core i3-4160
Mainboard: Gigabyte GA-H97M-D3H
RAM: 16GB
- Inject [FakePCIID.kext][1]
- Inject [FakePCIID_Intel_HD_Graphics.kext][1]
| # -*- coding: utf-8 -*- | |
| # Generated by the protocol buffer compiler. DO NOT EDIT! | |
| # NO CHECKED-IN PROTOBUF GENCODE | |
| # source: BSSIDApple.proto | |
| # Protobuf Python Version: 5.27.0 | |
| """Generated protocol buffer code.""" | |
| from google.protobuf import descriptor as _descriptor | |
| from google.protobuf import descriptor_pool as _descriptor_pool | |
| from google.protobuf import runtime_version as _runtime_version | |
| from google.protobuf import symbol_database as _symbol_database |
| #!/bin/sh | |
| ffmpeg -i $1 -vcodec copy -acodec ac3 -scodec copy -map 0:v -map 0:a:0 -map 0:s $2 -map 0:s:0 $2.srt |
| /* | |
| 1. capture api key data using mitm | |
| 2. insert api key data | |
| */ | |
| var request = require('request'); | |
| var plist = require('plist'); | |
| var icalToolkit = require('ical-toolkit'); | |
| var headers = { | |
| 'User-Agent': '<capture it using MITM>', |
| public class ZBarCharsetDetectionFixer { | |
| private static final CharsetDecoder latin1CharsetDecoder = Charset.forName("ISO-8859-1").newDecoder(); | |
| private static final CharsetEncoder sjisCharsetEncoder = Charset.forName("SJIS").newEncoder(); | |
| /** | |
| * Tries to workaround ZBars unreliable charset detection for qr codes. | |
| * | |
| * What it does: | |
| * Encodes String to Shift-JS, decodes the resulting bytes to ISO-8859-1. | |
| * |