fiddler的使用 在使用火狐浏览器进行抓包,需要手动代理配置HTTP代理:172.0.0.1,端口号为8888 fiddler远程操作手机,手机需要更改WLAN→代理→手动→主机名(ip地址)→端口(8888),电脑需要修改tools→connections→选中allow remote com ...
分类:
其他好文 时间:
2020-01-14 12:53:41
阅读次数:
72
前言不管对于哪种服务,对于其优化,无非是从两个方面着手,第一个是对于硬件方面的优化,第二个是对系统以及服务本身的优化。1、查询连接MySQL服务器的次数mysql>showstatuslike‘connections‘;+---------------+-------+|Variable_name|Value+---------------+-------+|Connections|3+--
分类:
数据库 时间:
2020-01-04 16:19:15
阅读次数:
82
CLIENT SIDE ATTACKS - Listening for connections 1. Run Metasploit Move the backdoor file to the webserver folder. And download it on the target machin ...
分类:
数据库 时间:
2020-01-01 09:34:15
阅读次数:
76
1. 公司网络安全不让用vsftpd的匿名网络访问了, 没办法 只能够使用 nginx 通过http协议来处理. 2. 最简单的办法就是另外开一个nginx进程简单设置一下nginx的配置文件 worker_processes 1; events { worker_connections 1024; ...
分类:
其他好文 时间:
2019-12-31 12:27:01
阅读次数:
77
worker_processes 1; events { worker_connections 1024; } http { upstream demo{ server localhost:55328; } include mime.types; default_type application/o ...
分类:
Web程序 时间:
2019-12-27 15:24:13
阅读次数:
105
Description Given a list of Connections, which is the Connection class (the city name at both ends of the edge and a cost between them), find edges th ...
分类:
其他好文 时间:
2019-12-21 12:00:30
阅读次数:
76
B - Networking POJ - 1287 You are assigned to design network connections between certain points in a wide area. You are given a set of points in the a ...
分类:
其他好文 时间:
2019-12-18 23:24:52
阅读次数:
107
nginx配置文件 配置文件结构 全局配置(user、worker_processes、error_log、pid) events(网络连接相关,worker_connections) http(最重要的部分,大部分功能放这里) server(虚拟主机相关) location(server里面) 全 ...
分类:
其他好文 时间:
2019-12-17 22:39:44
阅读次数:
108
此篇文章简单介绍MySQL配置优化修改back_logback_log值表示MySQL的连接数据达到max_connections时,有多少请求能够被放在堆栈之中以等待其他连接释放.如果等待连接的数量超过back_log时,就不被授予连接资源.show variables like ‘back_lo... ...
分类:
数据库 时间:
2019-12-14 09:59:01
阅读次数:
86
通过Fiddler进行手机抓包 通过Fiddler抓包工具,可以抓取手机的网络通信,但前提是手机和电脑处于同一局域网内(WI-FI或热点),然后进行以下设置: 用Fiddler对Android应用进行抓包 打开Fiddler设置 在Connections里设置允许连接远程计算机,确认后重新启动Fid ...
分类:
移动开发 时间:
2019-12-13 21:22:40
阅读次数:
140