diff --git a/Makefile.FreeBSD b/Makefile.FreeBSD index 99037bb..cff6579 100644 --- a/Makefile.FreeBSD +++ b/Makefile.FreeBSD @@ -49,7 +49,7 @@ include Makefile.inc install: all if [ ! -d "/usr/local/3proxy/bin" ]; then mkdir -p /usr/local/3proxy/bin/; fi install bin/3proxy /usr/local/3proxy/bin/3proxy - install bin/mycrypt /usr/local/3proxy/bin/mycrypt + install bin/3proxy_crypt /usr/local/3proxy/bin/3proxy_crypt install scripts/rc.d/3proxy /usr/local/etc/rc.d/3proxy install scripts/add3proxyuser.sh /usr/local/3proxy/bin/ if [ -s /usr/local/etc/3proxy/3proxy.cfg ]; then /usr/local/3proxy/3proxy.cfg already exists ; else install scripts/3proxy.cfg /usr/local/etc/3proxy/; fi diff --git a/Makefile.Linux b/Makefile.Linux index 0e381af..92a37d6 100644 --- a/Makefile.Linux +++ b/Makefile.Linux @@ -62,7 +62,7 @@ INSTALL_BIN = $(INSTALL) -m 755 INSTALL_DATA = $(INSTALL) -m 644 INSTALL_OBJS = bin/3proxy \ bin/ftppr \ - bin/mycrypt \ + bin/3proxy_crypt \ bin/pop3p \ bin/proxy \ bin/socks \ diff --git a/Makefile.openwrt-mips b/Makefile.openwrt-mips index 707752f..7031ed3 100644 --- a/Makefile.openwrt-mips +++ b/Makefile.openwrt-mips @@ -63,7 +63,7 @@ INSTALL_BIN = $(INSTALL) -m 755 INSTALL_DATA = $(INSTALL) -m 644 INSTALL_OBJS = src/3proxy \ src/ftppr \ - src/mycrypt \ + src/3proxy_crypt \ src/pop3p \ src/proxy \ src/socks \ diff --git a/Makefile.unix b/Makefile.unix index c849046..c0e2966 100644 --- a/Makefile.unix +++ b/Makefile.unix @@ -51,7 +51,7 @@ include Makefile.inc install: all if [ ! -d "/usr/local/3proxy/bin" ]; then mkdir -p /usr/local/3proxy/bin/; fi install bin/3proxy /usr/local/3proxy/bin/3proxy - install bin/mycrypt /usr/local/3proxy/bin/mycrypt + install bin/3proxy_crypt /usr/local/3proxy/bin/3proxy_crypt install scripts/rc.d/3proxy /usr/local/etc/rc.d/3proxy install scripts/add3proxyuser.sh /usr/local/3proxy/bin/ if [ -s /usr/local/etc/3proxy/3proxy.cfg ]; then /usr/local/3proxy/3proxy.cfg already exists ; else install scripts/3proxy.cfg /usr/local/etc/3proxy/; fi diff --git a/README.md b/README.md index a9b434c..55087a2 100644 --- a/README.md +++ b/README.md @@ -200,7 +200,7 @@ sudo launchctl unload /Library/LaunchDaemons/org.3proxy.3proxy.plist - User authentication by DNS hostname - Authentication cache with possibility to limit user to single IP address - Access control by username/password for SOCKSv5 and HTTP/HTTPS/FTP -- Cleartext or encrypted (crypt/MD5 or NT) passwords +- Cleartext or encrypted passwords - Connection redirection - Access control by requested action (CONNECT/BIND, HTTP GET/POST/PUT/HEAD/OTHER) - All access control entries now support weekday and time limitations @@ -286,12 +286,12 @@ TLS proxy (SNI proxy) - sniffs hostname from TLS handshake ### udppm UDP port mapping. Maps some UDP port on local machine to UDP port on remote machine. Only one user simultaneously can use UDP mapping, so it can't be used for public service in large networks. It's OK to use it to map to DNS server in small network or to map Counter-Strike server for single client (you can use few mappings on different ports for different clients in last case). -### mycrypt +### 3proxy_crypt Program to obtain crypted password for cleartext. Supports both MD5/crypt and NT password. ```bash -mycrypt password # produces NT password -mycrypt salt password # produces MD5/crypt password with salt "salt" +3proxy_crypt password # produces NT password +3proxy_crypt salt password # produces password hash with salt "salt" ``` --- diff --git a/doc/html/howtoe.html b/doc/html/howtoe.html index f16009c..de6d6c3 100644 --- a/doc/html/howtoe.html +++ b/doc/html/howtoe.html @@ -969,7 +969,7 @@ or
users $"c:\Program Files\3proxy\passwords"-It's possible to create NT and crypt passwords with the mycrypt utility included +It's possible to create NT and crypt passwords with the 3proxy_crypt utility included in the distribution.
users $"c:\Program Files\3proxy\passwords"- Шифрованные NT и crypt пароли можно создавать с помощью утилиты mycrypt. + Шифрованные NT и crypt пароли можно создавать с помощью утилиты 3proxy_crypt.