1、动态IP设置 vim编辑: vim /etc/sysconfig/network-scripts/ifcfg-ens33 TYPE=Ethernet PROXY_METHOD=none BROWSER_ONLY=no BOOTPROTO=dhcp //动态IP DEFROUTE=yes IPV4 ...
分类:
其他好文 时间:
2020-02-14 10:46:59
阅读次数:
4207
工具 + NetShare Pro 有资料说这个软件是付费的,但是我们已经准备好了专业版 它可以实现在WiFi开启的同时,给其他设备开热点。IP指向本机(可代理本机IP)。类似于IP_other = IP_MyPhone = IP_Proxy 我们知道普通情况下Android设备给mac开热点的话, ...
分类:
移动开发 时间:
2020-02-13 20:54:15
阅读次数:
88
基本类图 静态代理 Client.java文件 package com.waibizi.static_proxy; public class Client { public static void main(String[] args) { //创建目标对象,也就是被代理的对象 Dao dao = ...
分类:
其他好文 时间:
2020-02-13 17:22:39
阅读次数:
59
实验环境:centos7 注:因为本次实验在同一台服务器上,Apache与Nginx同为80端口,所以改Apache端口为60 1 配置Nginx服务器: 编辑Nginx配置文件,写入以下内容 location ~ \.php$ { 所有以.php结尾的文件 proxy_pass http://本机 ...
分类:
Web程序 时间:
2020-02-13 16:32:10
阅读次数:
93
1.服务器规划 跟踪服务器1:192.168.33.3 跟踪服务器2:192.168.33.4 存储服务器1:192.168.33.5 存储服务器2:192.168.33.6 存储服务器3:192.168.33.7 存储服务器4:192.168.33.8 2.下载相关软件包 git clone ht ...
分类:
其他好文 时间:
2020-02-12 18:16:40
阅读次数:
63
临时代理 永久代理 这种方法相当于在.gitconfig文件中写入: ...
分类:
Web程序 时间:
2020-02-12 16:55:35
阅读次数:
105
1.配置Http代理 Port为监听端口号,默认为8888,勾选Enable transparent HTTP proxying,接着勾选SOCKS proxy,可以监听Socks请求 2.安装Charles Root Certificate,路径为Help->SSL Proxying ->Inst ...
分类:
移动开发 时间:
2020-02-12 16:08:20
阅读次数:
176
https://cuiqingcai.com/5445.html 安装 nginx 找到配置文件 find / -name nginx.conf 修改 http { server { listen 6801; location / { proxy_pass http://127.0.0.1:6800 ...
分类:
其他好文 时间:
2020-02-12 11:08:58
阅读次数:
210
对于https网站,使用sqlmap可能会出现如下错误。使用–force-ssl无效。 https证书有问题 方法 本地建立proxy.php,内容为 <?php $url = "https://xxxxx.com/id=2"; $sql = $_GET[s]; $s = urlencode($sq ...
分类:
数据库 时间:
2020-02-12 01:01:05
阅读次数:
187
jar包 <!-- https://mvnrepository.com/artifact/cglib/cglib --><dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> <version>3.1</version ...
分类:
其他好文 时间:
2020-02-12 00:54:18
阅读次数:
83