View sbl1.log
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
B - 724192 - huawei_oba_mode_check begin | |
B - 2539125 - emmc read sucessfully | |
B - 2546231 - huawei_sd_auto_update_check: init efs error | |
B - 2553338 - huawei_check_sd_app_exist | |
B - 2739235 - card and update.app are all exist | |
B - 2793342 - huawei_check_sd_boot | |
B - 2807128 - Error mounting /hdev/sdc1h0p33 on /sys_boot : 1024 |
View relf2koji.c
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 <sys/types.h> | |
#include <sys/mman.h> | |
#include <sys/stat.h> | |
#include <err.h> | |
#include <errno.h> | |
#include <fcntl.h> | |
#include <unistd.h> | |
#include <string.h> | |
#include <stddef.h> | |
#include <stdio.h> |
View 903KC_dlpager.py
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
#/bin/env python | |
from idautils import * | |
from idaapi import * | |
from ida_bytes import * | |
from ida_segment import * | |
PAGE_SIZE = 4096 | |
# Tested version: |
View MO-01J_dlpager.py
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
#/bin/env python | |
from idautils import * | |
from idaapi import * | |
from ida_bytes import * | |
from ida_segment import * | |
PAGE_SIZE = 4096 | |
# Tested version: |
View checkupgrade.lua
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
--c736578b1d7c82e2df2a4f770e46ecb3e50c393776a03300ab45428cec78ecda ./rootfs/usr/sbin/checkupgrade.lua | |
--d0069d4b6c0bb716b07e0e014757f99f7baaabf7b270d17da6bfc5637a4cb2bb ./rootfs/usr/sbin/checkupgrade.lua.dec | |
local L0, L1, L2, L3, L4, L5, L6, L7, L8, L9, L10, L11, L12, L13, L14, L15, L16, L17, L18, L19, L20, L21, L22, L23, L24, L25 | |
L0 = require | |
L1 = "xiaoqiang.common.XQConfigs" | |
L0 = L0(L1) | |
L1 = require | |
L2 = "xiaoqiang.common.XQFunction" | |
L1 = L1(L2) | |
L2 = require |
View N-02E_diag.c
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 <dlfcn.h> | |
#include <fcntl.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <unistd.h> | |
typedef int (*nv_cmd_remote_t)(int, int, void *); | |
int main(int argc, char *argv[]) | |
{ |
View CVE-2018-9568.c
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
/* | |
* The BUG: | |
* *(obj + offset_v4) remains unchanged. | |
* Subsequential allcation will return a live object. | |
* Side effect: | |
* *(obj + offset_v6) = 0. | |
* The page will be linked into v6 slab CPU partial list. | |
* Plan A: | |
* A full slab. | |
* 1 2 3 4 W A B C D |
View sm801.php
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
<?php | |
$req = array( | |
"method" => "get_all_builds", | |
"params" => array( | |
"device" => "icesky_msm8992_user", // ro.product.device + "_" + ro.build.type | |
"version" => "2.5.3-2016012303-user-is", // ro.smartisan.version | |
"buildtime" => "1453489594", // ro.build.date.utc | |
"deviceid" => "990006210028584", // IMEI | |
"flag" => "0", // rooted | |
) |
View mkfldr.c
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
/* | |
* data: | |
* IV: 16 bytes | |
* AESed Data( | |
* data: | |
* data: | |
* info: offset 0x200,24 | |
* 0x220,240 | |
* name: offset 0x400,8(DL50, etc) | |
* ... |
View fldr.c
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
/* | |
* | |
* SHARP fldr mode | |
* tewilove@gmail.com, All rights reserved | |
* | |
*/ | |
#include <sys/types.h> | |
#include <unistd.h> |
NewerOlder