All Projects → DingProg → Networkcaptureself

DingProg / Networkcaptureself

Licence: apache-2.0
基于OKHttp的实用抓包小工具,你值得拥有

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Networkcaptureself

Polymorph
Polymorph is a real-time network packet manipulation framework with support for almost all existing protocols
Stars: ✭ 364 (+42.75%)
Mutual labels:  network, tools
Nexer
Content based network multiplexer or redirector made with love and Go
Stars: ✭ 7 (-97.25%)
Mutual labels:  network, tools
Pentestkit
Useful tools and scripts during Penetration Testing engagements
Stars: ✭ 463 (+81.57%)
Mutual labels:  network, tools
Tina
a powerful android network library base on okhttp
Stars: ✭ 32 (-87.45%)
Mutual labels:  network, okhttp
Fast Android Networking
🚀 A Complete Fast Android Networking Library that also supports HTTP/2 🚀
Stars: ✭ 5,346 (+1996.47%)
Mutual labels:  network, okhttp
Easygo
基于Kotlin、OkHttp的声明式网络框架,像写HTML界面一样写网络调用代码
Stars: ✭ 40 (-84.31%)
Mutual labels:  network, okhttp
tools-install
Setup scripts for various dev tools, utilities, SDKs and CLI stuff
Stars: ✭ 13 (-94.9%)
Mutual labels:  tools
minetorch
Build deep learning applications in a new and easy way.
Stars: ✭ 157 (-38.43%)
Mutual labels:  tools
vistir
Setup / utilities which most projects eventually need
Stars: ✭ 30 (-88.24%)
Mutual labels:  tools
okhttp-spring-boot
Spring Boot starters for OkHttp
Stars: ✭ 49 (-80.78%)
Mutual labels:  okhttp
HOUDINI
Hundreds of Offensive and Useful Docker Images for Network Intrusion. The name says it all.
Stars: ✭ 791 (+210.2%)
Mutual labels:  tools
encryptlab
🔑 Comprehensive (and free) list of encryption and decryption in Node.js.
Stars: ✭ 80 (-68.63%)
Mutual labels:  tools
DaMaiProject
大麦界面,实现多种方式网络访问、数据缓存
Stars: ✭ 24 (-90.59%)
Mutual labels:  okhttp
solidus dev support
A collection of tools for developing Solidus extensions.
Stars: ✭ 14 (-94.51%)
Mutual labels:  tools
ants
Awesome Networking Tools Sandbox
Stars: ✭ 21 (-91.76%)
Mutual labels:  tools
remarkable-uuuflash
uuu scripts for recovery console and flashing
Stars: ✭ 31 (-87.84%)
Mutual labels:  tools
propel
⛵ Keep your favorite starter kits just a command away
Stars: ✭ 22 (-91.37%)
Mutual labels:  tools
lobe
Lobe is the world's first AI paralegal.
Stars: ✭ 22 (-91.37%)
Mutual labels:  tools
awesome
my personal collection of awesome projects, links, books.
Stars: ✭ 16 (-93.73%)
Mutual labels:  tools
InfosecHouse
Infosec resource center for offensive and defensive security operations.
Stars: ✭ 61 (-76.08%)
Mutual labels:  tools

概览

一个基于OKHttp的实用抓包小工具

工具界面截图

支持功能

  • 自带分类接口
  • 抓包数据以时间为纬度,默认存储到手机缓存下 /Android/Data/包名/Cache/capture/ 下
  • 支持Http/Https协议的抓包,分类请求方式/请求URL/请求Header/请求体/响应状态/响应Header/响应体
  • 支持一键复制对应的状态
  • 响应体如果是JSON,支持自动格式化
  • 抓包数据,默认缓存一天

快速接入

allprojects {
	repositories {
	   maven { url 'https://jitpack.io' }
	}
}

dependencies {
    debugImplementation 'com.github.DingProg.NetworkCaptureSelf:library:v1.0.1'
    releaseImplementation 'com.github.DingProg.NetworkCaptureSelf:library_no_op:v1.0.1'
}

在你的全局OkHttp中添加 Interceptor

new OkHttpClient.Builder()
        .addInterceptor(new CaptureInfoInterceptor())
        .build();

注意事项

注意接入时 debugImplementation 和 releaseImplementation区别,releaseImplementation中不包含任何其他代码

如果您的项目中还有buildType 是develop,那么developImplementation 请依赖 'com.github.DingProg.NetworkCaptureSelf:library:v1.0.1'

More

关于更多,请查看 Blog

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].