• Unicorn使用笔记(一):安装

     · Grape

    Unicorn 是一个模拟执行库,支持多个平台,在逆向工程中动态分析指令流程非常有用。

    笔者某些IDA脚本需要依赖unicorn,今天在安装后,发现不能使用 …

  • 如何安装cocoapods

     · Grape

    Cocoapods 是iOS开发的包管理工具。在Mac 14.6.1 上的安装过程如下:

    • 安装brew
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
    
    • 安装ruby
    brew install ruby
    

    一定要用brew安装ruby,系统自带的ruby安装不会成功 …

  • 禁止Spotlight对外部磁盘建立索引

     · Grape

    使用 System Preferences

    1. 打开 系统设置(System Preferences)或 系统偏好设置。
    2. 选择 Spotlight。
    3. 切换到 Privacy(隐私)标签。
    4. 点击 ”+” 按钮,将外部磁盘添加到列表中。
    5. 确认后,Spotlight 将 …
  • The system has been destroyed

     · Grape

    今天将自己的一个旧手机Redmi Note 8找出来,想刷一个最新版本的全球版ROM : ginkgo_global_images_V12.5.2.0.RCOMIXM_20220216.0000.00_11.0_global_da0a599e0c.tgz。下载解压完成,直接运行flash_all.sh脚本完成刷机,但系 …

  • How to jailbreak iOS 16 using palera1n

     · 7 min read  · Grape

    Building iOS environment for reverse engineering. How to jailbreak iOS 15~18 using palera1n. Install Sileo and frida .

  • SOCKS5

     · Grape

    socks是一种互联网协议,它通过一个代理服务器在客户端和服务端之间交换网络数据。

    简单来说,它就是一种代理协议,扮演一个中间人的角色 …

  • Using IDAPython to Make Your Life Easier: Part 1 - Setup Environment

     · 3 min read  · Grape

    Background

    As a reverse engineer, I often use IDA Pro in my daily work. This is not surprising, as IDA Pro is the industry standard (although alternatives such as radare2 and Hopper are becoming increasingly popular). One of the most powerful features of IDA that I recommended all reverse engineers …

  • Markdown 在 Pelican上的的支持情况

     · 5 min read  · Grape

    Pelican is a static site generator, written in Python. Highlights include: - Write your content directly with your editor of choice in reStructuredText or Markdown formats - Includes a simple CLI tool to (re)generate your site - Easy to interface with distributed version control systems and web hooks - Completely static output is …

  • Android Logcat Usage

     · Grape

    zsh:no matches found

    因为zsh缺省情况下始终自己解释这个firefox*,而不会传递给adb logcat来解释。 在~/.zshrc中加入: setopt no_nomatch, 然后进行source .zshrc命令

  • [Android]追书神器:章节内容解密分析

     · Grape

    章节内容解密

    package com.ushaqi.zhuishushenqi.reader.txtreader.activity;
    public class ReaderNewActivity{
        private void a(FineBookConfigBean bean){
    
        }
    }
    

    示例数据

    // 章节解密密码
    auth.zhuishushenqi.com
    productLine=1&
    startSeqId=2669&
    cp=567b60b6ea95f6ea479a177e&token=tyU2QCjdYHCNyeF8e6476ef1f13b652d13d25d2310eeca5f69e15570325cbac7fd0286494441df9829eb2de8a8b333a98f328b4ba39c4b5475118db133d1742945d11d88087f117c8a4227dce946dd92f13f914076840c97&
    bookId=516531015a29ee6a5e0000e1&
    chapterNum=1
    
  1. 1
  2. 2
  3. 3
  4. 4