自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(45)
  • 收藏
  • 关注

转载 [转载] JavaScript 静态方法和实例方法

博客出处:https://www.cnblogs.com/roger9567/p/5048276.html总结:直接定义在构造函数上的方法和属性是静态的, 定义在构造函数的原型和实例上的方法和属性是非静态的。静态方法:function ClassA(){ //定义构造函数};ClassA.func = function(){ //在构造函数上添加一个属性(因为函数也是...

2018-08-14 14:20:23 224

转载 [转载] Java各种称呼类详解

博客出处:https://blog.csdn.net/a327369238/article/details/52780442  Java有各种各样类,内部类、嵌套类、成员类、局部类(本地类)、静态类、匿名类、文件类以及这些组合起来的称呼类,成员内部类,成员匿名类,成员嵌套类,本地匿名类等,真是多的不行,但有些其实是一个意思,在这里好好理一理。声明  1.注意,这些称呼都是翻译过来的,但...

2018-08-08 12:31:23 894

转载 [转载] Android 存储路径浅析

博客出处:https://www.jianshu.com/p/80e10b3dbba5Android 文件系统在 Android Studio 可以在 DDMS 的 File Exploer 窗口中查看文件系统,下图就是一个 Android 文件系统目录。Android 文件系统Android 存储分类 (/data 目录和 /sdcard 目录)An...

2018-07-27 00:53:57 572

转载 [转载] Android应用程序资源文件的编译和打包原理

博客出处:https://blog.csdn.net/beyond702/article/details/49228115Android查找资源的流程在Android系统中,每一个应用程序一般都会配置很多资源,用来适配不同密度、大小和方向的屏幕,以及适配不同的国家、地区和语言等等。这些资源是在应用程序运行时自动根据设备的当前配置信息进行适配的。这也就是说,给定一个相同的资源ID,在不同...

2018-07-24 20:27:05 982 1

转载 [转载] Android A/B System OTA分析(一)概览

博客出处:https://blog.csdn.net/guyongqiangx/article/details/71334889 Android从7.0开始引入新的OTA升级方式,A/B System Updates,这里将其叫做A/B系统。 版权声明: 本文为guyongqiangx原创,欢迎转载,请注明出处:

2018-04-11 16:16:19 367

原创 IDA 6.8 python / idc.py

#!/usr/bin/env python#---------------------------------------------------------------------# IDAPython - Python plugin for Interactive Disassembler## Original IDC.IDC:# Copyright (c) 1990-2010 Ilf

2018-04-11 15:21:27 2499

原创 IDA 7.0 python / idc.py

#!/usr/bin/env python#---------------------------------------------------------------------# IDAPython - Python plugin for Interactive Disassembler## Original IDC.IDC:# Copyright (c) 1990-2010 Ilf

2018-04-11 15:20:35 5217

转载 [转载] 如何选择开源许可证?

博客出处:http://www.ruanyifeng.com/blog/2011/05/how_to_choose_free_software_licenses.html 如何为代码选择开源许可证,这是一个问题。

2018-04-09 13:16:48 129

转载 [转载] Rooting with a Locked Boot Loader

博客出处:http://technotif.com/rooting-locked-boot-loader/When the boot loader is locked, and the manufacturer doesn’t provide a legitimate method to unlock it, you usually need to find a flaw in the dev...

2018-03-31 18:59:34 1298

转载 [转载] How to update the recovery.img in android

博客出处:https://community.nxp.com/docs/DOC-102674In recovery mode, recovery may update /boot or /system, but it never overwrite itself. The update of /recovery is in the normal bootup. When system boot up

2018-03-31 16:52:16 212

转载 [转载] Linux Namespaces机制

博客出处:https://www.cnblogs.com/lisperl/archive/2012/05/03/2480316.htmlLinux Namespaces机制提供一种资源隔离方案。PID,IPC,Network等系统资源不再是全局性的,而是属于特定的Namespace。每个Namespace里面的资源对其他Namespace都是透明的。要创建新的Namespace,只需要在调用clon

2018-03-31 16:22:04 167

转载 [转载] Android root 原理

博客出处:http://www.cnblogs.com/lanrenxinxin/p/5572640.html0x00 关于root linux和类Unix系统的最初设计都是针对多用户的操作系统,对于用户权限的管理很非常严格的,而root用户(超级用户)就是整个系统的唯一管理员,拥有等同于操作系统的所有权限。所以一旦获取到root权限,就可以对整个系统进行访问和修改。而在Android下获取root

2018-03-30 14:25:19 150

原创 android / platform / system / core / master / fastboot / README.md

FastbootThe fastboot protocol is a mechanism for communicating with bootloaders over USB or ethernet. It is designed to be very straightforward to implement, to allow it to be used across a wide ...

2018-03-28 11:17:54 320

转载 [转载] Java利器之UML类图详解

博客出处:https://blog.csdn.net/garfielder007/article/details/54427742前言UML(Unified Modeling Language)中文统一建模语言,是一种开放的方法,用于说明、可视化、构建和编写一个正在开发的、面向对象的、软件密集系统的制品的开放方法。UML展现了一系列最佳工程实践,这些最佳实践在对大规模,复杂系统进行建模方面,特别是

2018-03-25 11:38:03 217

转载 [转载] ARM64的启动过程之(六):异常向量表的设定

博客出处:http://www.wowotech.net/armv8a_arch/238.html一、前言本文主要描述了4.1.10内核初始化过程中如何初始化异常向量表。当然,首先需要准备一些异常的基础知识,这主要在第二章,如果你非常熟悉ARM64的异常,那么可以忽略这个章节。 第三章描述了ARM64上各种形形色色的异常,第四章描述了ARM64上硬件提供的协助,最后一章描述了代码过程。...

2018-03-14 19:44:08 410

转载 [转载] ARM概念梳理:Architecture, Core, CPU, SOC

博客出处:http://www.wowotech.net/armv8a_arch/arm_concept.html1. 前言本文简单梳理一下ARM有关的概念,包括ARM architecture、ARM core、ARM CPU(或MCU)以及ARM Soc。我们这些以ARM平台为主的嵌入式工程师,几乎每天都会和这些概念打交道,也似乎非常理解它们。但仔细想想,却有些说不清道不明的感觉,因而有必要整理

2018-03-14 15:54:03 501

转载 [转载] ARMv8-a架构简介

博客出处:http://www.wowotech.net/armv8a_arch/armv8-a_overview.html1. 前言ARMv8(当前只有A系列,即ARMv8-A)架构,是ARM公司为满足新需求而重新设计的一个架构,是近20年来,ARM架构变动最大的一次。它引入的Execution State、Exception Level、Security State等新特性,已经和我们对旧的AR

2018-03-14 15:34:13 247

原创 IDA Pro: def.h

/* This file contains definitions used by the Hex-Rays decompiler output. It has type definitions and convenience macros to make the output more readable. Copyright (c) 2007-2015 Hex-Ray

2018-02-06 09:54:29 1441

原创 IDA Pro插件Command Palette安装过程:编译安装PyQt5(Python2.7+Win10)

1 插件介绍Hex-Rays Plugin Contest: https://www.hex-rays.com/contests/index.shtmlHex-Rays Plugin Contest Results 2016: https://www.hex-rays.com/contests/2016/index.shtmlCommand Palette by M...

2018-02-03 20:52:14 1321

转载 [转载] UEFI boot: how does that actually work, then?

It’s AdamW Essay Time again! If you’re looking for something short and snappy, look elsewhere.Kamil Paral kindly informs me I’m a chronic sufferer of Graphomania. Always nice to know what’s wrong with

2018-01-24 19:02:47 1336

转载 [转载] 使用Windows API进行串口编程

博客出处:https://www.cnblogs.com/milanleon/p/4244267.html串口通信一般分为四大步:打开串口->配置串口->读写串口->关闭串口,还可以在串口上监听读写等事件。 1、打开和关闭串口 Windows中串口是作为文件来处理的,调用CreateFile()函数可以打开串口,函数执行成功返回串口句柄,出错返回INVALID_HANDLE_VALUE。 HA

2018-01-22 19:28:13 179

转载 [转载] USBPcap Capture format specification

博客出处:http://desowin.org/usbpcap/captureformat.htmlFollowing document describes the LINKTYPE_USBPCAP used in USBPcap. This merely describes the packet data mentioned in pcap file format.General notesThe

2018-01-21 11:26:03 745

转载 [转载] How Computers Boot Up

博客出处:https://manybutfinite.com/post/how-computers-boot-up/ The previous post described motherboards and the memory map inIntel computers to set the scene for the initial phases of boot

2018-01-17 13:45:46 185

转载 [转载] Android Boot Sequence

博客出处:http://learnlinuxconcepts.blogspot.de/2014/02/android-boot-sequence.htmlIn this post we will discuss about the boot process of Android operating system. As the Android is based on Linux Kernel ,

2018-01-15 14:36:59 623

转载 [转载] The BIOS/MBR Boot Process

博客出处:https://neosmart.net/wiki/mbr-boot-process/Regardless of the computer or operating system, standard (“IBM-compatible”) desktop PCs and laptops all power on and start up using one of two ways: the

2018-01-15 13:48:36 1181

转载 [转载] UEFI+GPT引导基础篇:什么是GPT,什么是UEFI?

博客出处:https://www.iruanmi.com/what-is-gpt-and-what-is-uefi/其实关于UEFI的几篇文章很早就写下了,只是自己读了一遍感觉很不满意,就决定重写。目的是想用最简单直白的语言把内容写出来,让每个人都能轻松读懂。当然,如果你已经对这些内容有了很深的理解的话,这篇文章除了浪费你的时间外恐怕是别无益处了,建议去UEFI官方网站下载UEFI规范文档,那

2018-01-14 21:09:08 613

转载 [转载] Android Partitions Explained: boot, system, recovery, data, cache & misc

Unless you have been using your Android phone just for calls, SMS, browsing and basic apps, you should know that Android uses several partitions to organize files and folders on the device. Each of th

2018-01-10 13:10:04 181

转载 [转载] Android bootloader/fastboot mode and recovery mode explained/Android boot process

博客出处:https://tektab.com/2015/10/31/android-bootloaderfastboot-mode-and-recovery-mode-explained/Besides normal booting of an android device, there are two more systems maintenance mode. The bootloader o

2018-01-10 10:41:59 843

转载 [转载] UEFI+GPT双硬盘安装Win10+Ubuntu16.04双系统

博客出处:http://www.cnblogs.com/willnote/p/6725594.html安装环境 SSD+HDD双盘,Win10安装在SSD里,HDD分出来60G安装Ubuntu。 自行百度你的主板是否支持UEFI启动方式。 Win10 下载Win10安装镜像、烧盘等步骤就不说了,重启后选择U盘启动进入Win10安装界面后,一直到如下步骤按Shift+F10或者Shift+Fn

2018-01-09 14:25:35 591

转载 [转载] 编译型语言、解释型语言、静态类型语言、动态类型语言概念与区别

博客出处:http://www.cnblogs.com/zy1987/p/3784753.html?utm_source=tuicool&utm_medium=referral最近在研究Python和Erlang。反复提到动态类型语言、动态语言、解释型语言这些概念。这些概念很生涩,在这里做一个总结。 编译型语言和解释型语言1、编译型语言需通过编译器(compiler)将

2017-11-02 14:20:17 146

转载 [转载] Android JNI编程—JNI基础

博客出处:http://www.jianshu.com/p/aba734d5b5cd 最近看到了很多关于热补的开源项目——Depoxed(阿里)、AnFix(阿里)、DynamicAPK(携程)等,它们都用到了JNI编程,并且JNI编程也贯穿了Android系统,学会JNI编程对于我们学习研究Android源码、Android安全以及Android安全加固等都是有所帮助的。但是

2017-08-13 20:28:50 244

原创 RetroScope工具:执行流程分析

RetroScope工具:下载,编译,启动: http://blog.csdn.net/rzwinters/article/details/77003230RetroScope工具:Android设备内存取证: http://blog.csdn.net/rzwinters/article/details/769993981. 概述RetroScope工具运行在一个修改过的And

2017-08-13 16:01:24 459

转载 [转载] JAVA虚拟机、Dalvik虚拟机和ART虚拟机简要对比

博客出处:http://blog.csdn.net/jason0539/article/details/504406691、什么是JVM?JVM本质上就是一个软件,是计算机硬件的一层软件抽象,在这之上才能够运行Java程序,JAVA在编译后会生成类似于汇编语言的JVM字节码,与C语言编译后产生的汇编语言不同的是,C编译成的汇编语言会直接在硬件上跑,但JAVA编译后生成的

2017-08-11 16:50:26 197

转载 [转载] Java虚拟机和Dalvik虚拟机的区别

博客出处:http://blog.csdn.net/aeolus1019/article/details/8123671#commentsGoogle于2007年底正式发布了Android SDK, 作为Android系统的重要特性,Dalvik虚拟机也第一次进入了人们的视野。它对内存的高效使用,和在低速CPU上表现出的高性能,确实令人刮目相看。 依赖于底层Posix兼容的

2017-08-11 15:27:46 872

转载 [转载] Java中 package 分析

博客出处:http://blog.chinaunix.net/uid-25756163-id-276244.html由于大家对package的使用存在太多困惑,我在这里将自己对于package的使用的领悟进行一点总结:  package中所存放的文件  所有文件,不过一般分一下就分这三种  1,java程序源文件,扩展名为.java。

2017-08-11 10:54:06 618

转载 [转载] Android(线程一) 线程

博客出处:http://blog.csdn.net/zxw136511485/article/details/51541114    在Android开发中,我们总是会遇到线程!最近有时间整理了有关android线程的东西,和大家分享!一.线程描述。    在Android中,有两种性质的线程,主线程和子线程。    1.主线程。主线程是指进程所拥有的线程,一个进程

2017-08-10 17:06:03 211

转载 [转载] CSDN-markdown基本语法说明

目录概述 简单介绍MarkdownCSDN Markdown的功能支持标题 Setext形式atx形式区块引用分隔线强调列表 无序列表有序列表注意事项链接 自动链接普通文本链接 行内式链接参考式链接代码 行内代码代码区块反斜杠的用处常见问题参考资料概述简单介绍MarkdownMarkdown 是一种轻量

2017-08-10 17:00:45 1920

转载 [转载] linux proc maps文件分析

博客出处:http://blog.csdn.net/lijzheng/article/details/23618365      Proc/pid/maps显示进程映射了的内存区域和访问权限。对应内核中的操作集为proc_pid_maps_op,具体的导出函数为show_map。内核中进程的一段地址空间用一个vm_area_struct结构体表示,所有地址空间存储在task->

2017-08-10 16:57:20 568

转载 [转载] genymotion运行ARM架构程序

博客出处:http://blog.csdn.net/qq_30707799/article/details/68927892原生的Genymotion模拟器只支持x86架构,很多使用了.so文件的应用不支持x86架构,因此无法运行。如果想要运行,必须安装ARM转换包。下载地址http://pan.baidu.com/s/1sl1vhzJ下载地址:http://p

2017-08-10 16:51:34 325

原创 RetroScope工具:下载,编译,启动 (MD)

0 关于RetroScope工具(Paper + DEMO)(1)DSCRETE: Automatic Rendering of Forensic Information from Memory Images via Application Logic Reuse https://www.usenix.org/system/files/conference/usenixsecurity14/

2017-08-09 16:57:43 764 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除