原文地址 linux.do 原文地址 linux.do

加入 linux.do 也有一段时间了,希望给大家带来一些有用的信息,谢谢大家!

揭露流氓 APP 是怎么围剿猎杀用户的

为吸引更多技术人员加入分析,揭开流氓软件行为,本人主动放弃本文全部版权。任何人可随意转载、修改、搬运本文,无需授权,不需要署我名

原本,我只想写一写,揭示某个 App 流氓且绕过商店审核的行为,但后来发现这并非个例。因此我停止了分析,转而自己写 App 去验证自己的想法,以便大家更好地了解这些现象。现在我作为一名业内人士,手机软件开发者,通过左右脑互博,梳理出了这些关键点及其解决方法。

阅读全文 »

最近遇到一个 ROM 包,需要获取其中的 APK,因此产生了解包的需求。

首先使用 file 命令查看文件格式:

1
2
$ file unkown.img
unkown.img: data

发现为 data 类型,即未知格式,接下来使用 010Editor 查看,发现文件头有 IMAGEWTY 标志:

阅读全文 »

Rust 环境搭建

安装

Windows 平台

  1. 首先需要安装 Visual C++ 生成工具
  2. 然后下载并运行 rustup‑init.exe ,一路默认即可。

所有工具都安装到 %USERPROFILE%\.cargo\bin 目录, 并且您能够在这里找到 Rust 工具链,包括 rustc、cargo 及 rustup。

阅读全文 »

本文内容来自:https://sysprog21.github.io/lkmpg/ ,使用 Immersive Translate 进行翻译。

简介

The Linux Kernel Module Programming Guide is a free book; you may reproduce and/or modify it under the terms of the Open Software License, version 3.0.
《Linux 内核模块编程指南》是一本免费书籍;您可以根据开放软件许可证 3.0 版的条款复制和/或修改它。

This book is distributed in the hope that it would be useful, but without any warranty, without even the implied warranty of merchantability or fitness for a particular purpose.
分发本书的目的是希望它有用,但没有任何保证,甚至没有对适销性或针对特定用途的适用性的默示保证。

The author encourages wide distribution of this book for personal or commercial use, provided the above copyright notice remains intact and the method adheres to the provisions of the Open Software License. In summary, you may copy and distribute this book free of charge or for a profit. No explicit permission is required from the author for reproduction of this book in any medium, physical or electronic.
作者鼓励将本书广泛分发用于个人或商业用途,前提是上述版权声明保持完整并且方法遵守开放软件许可证的规定。总之,您可以免费或以营利为目的复制和分发本书。以任何物理或电子媒介复制本书无需获得作者的明确许可。

阅读全文 »
0%