Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add proxychains-ng recipe #28639

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions recipes/proxychains-ng/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
./configure --prefix=${PREFIX} --sysconfdir=${PREFIX}/etc
make
make install
make install-config
42 changes: 42 additions & 0 deletions recipes/proxychains-ng/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{% set name = "proxychains-ng" %}
{% set version = "4.17" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://github.com/rofl0r/proxychains-ng/releases/download/v{{ version }}/proxychains-ng-{{ version }}.tar.xz
sha256: 36ddc7f64cb3df2ca4170627c6e0f0dea33d1a6d0730629dff6f5c633f2006f9

build:
PragmaTwice marked this conversation as resolved.
Show resolved Hide resolved
skip: true # [win or osx]
number: 0
run_exports:
- libproxychains4

requirements:
build:
- make
- {{ compiler('c') }}
- {{ stdlib('c') }}

test:
commands:
- proxychains4 --help | grep Usage

about:
home: https://github.com/rofl0r/proxychains-ng
summary: 'a preloader which hooks calls to sockets in dynamically linked programs and redirects it through one or more socks/http proxies'
description: |
ProxyChains is a UNIX program, that hooks network-related libc functions
in DYNAMICALLY LINKED programs via a preloaded DLL (dlsym(), LD_PRELOAD)
and redirects the connections through SOCKS4a/5 or HTTP proxies.
It supports TCP only (no UDP/ICMP etc).
license: GPL-2.0-only
license_family: GPL
license_file: COPYING

extra:
recipe-maintainers:
- PragmaTwice
Loading