All Projects → coderyi → Networkeye

coderyi / Networkeye

Licence: mit
a iOS network debug library, monitor HTTP requests

Projects that are alternatives of or similar to Networkeye

Dotzu
📱👀 In-App iOS Debugging Tool With Enhanced Logging, Networking Info, Crash reporting And More.
Stars: ✭ 1,802 (+35.9%)
Mutual labels:  network, network-monitoring
Marmot
Marmot workflow execution engine
Stars: ✭ 174 (-86.88%)
Mutual labels:  network, network-monitoring
React Native Network Logger
An HTTP network request monitor for React Native with in-app interface for iOS and Android with no native code
Stars: ✭ 161 (-87.86%)
Mutual labels:  network, network-monitoring
Nload
Real-time network traffic monitor
Stars: ✭ 121 (-90.87%)
Mutual labels:  network, network-monitoring
Cocoadebug
iOS Debugging Tool 🚀
Stars: ✭ 3,769 (+184.24%)
Mutual labels:  network, network-monitoring
Zxrequestblock
基于NSURLProtocol一句话实现iOS应用底层所有网络请求拦截(含网页ajax请求拦截【不支持WKWebView】)、一句话实现防抓包(使Thor,Charles,Burp等代理抓包方式全部失效,且即使开启了代理,也不影响App内部的正常请求)。包含http-dns解决方法,有效防止DNS劫持。用于分析http,https请求等
Stars: ✭ 160 (-87.93%)
Mutual labels:  network, network-monitoring
Cyberprobe
Capturing, analysing and responding to cyber attacks
Stars: ✭ 162 (-87.78%)
Mutual labels:  network, network-monitoring
Ivre
Network recon framework, published by @cea-sec & @ANSSI-FR. Build your own, self-hosted and fully-controlled alternatives to Shodan / ZoomEye / Censys and GreyNoise, run your Passive DNS service, collect and analyse network intelligence from your sensors, and much more!
Stars: ✭ 2,331 (+75.79%)
Mutual labels:  network, network-monitoring
Graphpath
Graphpath generates an ASCII network diagram from the route table of a Unix/Linux
Stars: ✭ 321 (-75.79%)
Mutual labels:  network, network-monitoring
Reactivenetwork
Android library listening network connection state and Internet connectivity with RxJava Observables
Stars: ✭ 2,484 (+87.33%)
Mutual labels:  network, network-monitoring
Bmon
bandwidth monitor and rate estimator
Stars: ✭ 787 (-40.65%)
Mutual labels:  network, network-monitoring
Wfn
Windows Firewall Notifier extends the default Windows embedded firewall by allowing to handle and notify about outgoing connections, offers real time connections monitoring, connections map, bandwidth usage monitoring and more...
Stars: ✭ 404 (-69.53%)
Mutual labels:  network, network-monitoring
Sensu Plugins Network Checks
This plugin provides native network instrumentation for monitoring and metrics collection, including: hardware, TCP response, RBLs, whois, port status, and more.
Stars: ✭ 28 (-97.89%)
Mutual labels:  network, network-monitoring
Dotnet Netrace
Collects network traces of .NET applications.
Stars: ✭ 88 (-93.36%)
Mutual labels:  network
Gns3 Gui
GNS3 Graphical Network Simulator
Stars: ✭ 1,307 (-1.43%)
Mutual labels:  network
Rest Hooks
Delightful data fetching for React.
Stars: ✭ 1,276 (-3.77%)
Mutual labels:  network
Pentesting toolkit
🏴‍☠️ Tools for pentesting, CTFs & wargames. 🏴‍☠️
Stars: ✭ 1,268 (-4.37%)
Mutual labels:  network
X
新生命X组件,数据中间件XCode、日志、网络、RPC、序列化、缓存、Windows服务
Stars: ✭ 1,322 (-0.3%)
Mutual labels:  network
Netshot
Network Configuration and Compliance Management
Stars: ✭ 91 (-93.14%)
Mutual labels:  network
Drc Sim
Wii U Gamepad Simulator Backend
Stars: ✭ 85 (-93.59%)
Mutual labels:  network

NetworkEye

Pod Version Pod Platform Pod License Twitter

README 中文

NetworkEye,a iOS network debug library,monitor HTTP requests.

It can be detected HTTP request include web pages, NSURLConnection, NSURLSession, AFNetworking, 3rd libraries, 3rd SDK ,and so on. very convenient and practical.

It can be map local json file.

I created a google group,this group is for general discussion NetworkEye ,welcome to join,https://groups.google.com/d/forum/networkeye

if you use NetworkEye, you can add it in here,Who-Uses-NetworkEye

welcome to new pull request,that fix bug,add new features,add support other platform.and welcome to new issues.

and thanks to kasketis write the swift version netfox

Podfile

	platform :ios, '7.0'
	pod 'NetworkEye', '~> 1.1.2'
	# pod 'NetworkEye/FMDB', '~> 1.1.2'   # NetworkEye with FMDB ,save your requests to database

Instruction

Note:Use Network Eye in DEBUG mode

add the code in AppDelegate.m

#import "NEHTTPEye.h"
#if defined(DEBUG)||defined(_DEBUG)
    [NEHTTPEye setEnabled:YES];
#endif

you can use use the shortcut (⌘ Command + n) , a double tap or shake device to call out the monitoring data interface

NEHTTPEyeViewController

You can also use the following code

#if defined(DEBUG)||defined(_DEBUG)
    NEHTTPEyeViewController *vc=[[NEHTTPEyeViewController alloc] init];
    [self presentViewController:vc animated:YES completion:nil];
#endif

In NEHTTPEye, the default password of database is "networkeye" ,and you can save 300 requests.

the database name is networkeye.sqlite,and stored in the cache directory.

#define kSQLitePassword @"networkeye"

#define kSaveRequestMaxCount 300

you can change it use NEHTTPModelManager

    [NEHTTPModelManager defaultManager].saveRequestMaxCount=300;
    [NEHTTPModelManager defaultManager][email protected]"networkeye";

NetworkEye use FMDB and SQLCipher。 FMDB is used to store data,SQLCipher is used to encrypt the database。

Monitoring data interface supports some search conditions ,it is URL,statusCode,HTTPMethod,MIMEType。

Preview

Licenses

MIT License.

Contributors

thanks!

Xi Lin

Zhu Lida

Jackrex

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].