frida arraybuffer 转hex

这篇博客介绍了一个JavaScript函数,该函数用于将ArrayBuffer转换为十六进制字符串。Memory.readByteArray()返回的数据是arrayBuffer格式,通过提供的buf2hex函数可以方便地解析并显示其内容。这个过程涉及到低级内存操作和数据格式转换,对于理解前端内存管理和数据处理有重要意义。
摘要由CSDN通过智能技术生成
function buf2hex(buffer) { // buffer is an ArrayBuffer
  // create a byte array (Uint8Array) that we can use to read the array buffer
  const byteArray = new Uint8Array(buffer);

  // for each element, we want to get its two-digit hexadecimal representation
  const hexParts = [];
  for(let i = 0; i < byteArray.length; i++) {
    // convert value to hexadecimal
    const hex = byteArray[i].toString(16);

    // pad with zeros to length 2
    const paddedHex = ('00' + hex).slice(-2);

    // push to array
    hexParts.push(paddedHex);
  }

  // join all the hex values of the elements into a single string
  return hexParts.join('');
}

Memory.readByteArray(retval,4) 返回的是 arrayBuffer 格式,使用上面的函数可以将

arrayBuffer 转成 hex

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值