Js逆向爬虫基础篇

这里写自定义目录标题

  • 逆向技巧
    • 断点
    • [一 、请求入口定位](#一 、请求入口定位)
      • [1. 关键字搜索](#1. 关键字搜索)
      • [2. 请求堆栈](#2. 请求堆栈)
      • [3. hook](#3. hook)
      • [4. JSON.stringify](#4. JSON.stringify)
    • 二、响应入口定位:
      • [1. 关键字搜索](#1. 关键字搜索)
      • [2. hook](#2. hook)
      • [3. JSON.parse](#3. JSON.parse)

逆向技巧

断点

  1. 普通断点

  2. 条件断点

  3. 日志断点

  4. XHR断点

一 、请求入口定位

1. 关键字搜索

	 key关键字
	 方法关键字: encrypt  decrypt
   . headers关键字
	 路径关键字
		 interceptors:
		      interceptors.request.use(fn1)
		      interceptors.request.use(fn2)
		      interceptors.response.use(fn3)
		      interceptors.response.use(fn3)
		      n = n.then(t.shift(), t.shift());

2. 请求堆栈

3. hook

4. JSON.stringify

二、响应入口定位:

1. 关键字搜索

2. hook

3. JSON.parse

相关推荐
IT数据小能手1 小时前
Python中爬虫编程的常见问题及解决方案
开发语言·爬虫·python
IT数据小能手5 小时前
天猫商品列表数据接口(Tmall.item_search)
大数据·爬虫·python
阿米诺s6 小时前
python本学期所有代码!
开发语言·爬虫·python
IT数据小能手9 小时前
Python中的爬虫实战:百度知道爬虫
爬虫·python·百度
IT数据小能手11 小时前
PHP和phpSpider:如何应对网站反爬虫的JS挑战?
javascript·爬虫·php
tbprice11 小时前
Python中的爬虫实战:猫眼电影爬虫
开发语言·爬虫·python
IT数据小能手14 小时前
创建一个快速、高效的网络爬虫:PHP和Selenium示例
爬虫·selenium·php
Python_trys15 小时前
【Python爬虫】Python爬取喜马拉雅,爬虫教程!
开发语言·爬虫·python·学习
努力学习各种软件16 小时前
简单爬虫案例——爬取快手视频
爬虫
IT数据小能手21 小时前
PHP 爬虫之使用 Curl库抓取淘宝商品列表数据网页的方法
开发语言·爬虫·php