Skip to content

Commit

Permalink
push v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
L-codes committed May 31, 2021
1 parent eba732c commit 3379157
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 12 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG-en.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

### v3.2.0:
Fix bugs that occurred when solving high-bandwidth, improve stability, and increase the transmission speed of high-bandwidth by more than 10 times
Client: Add the `--max-read-size` parameter to control the maximum length of the response packet of the `READ` request
Client: Fix the problem that python `socket.send()` cannot be written completely
Client: Fix the accuracy of debugging information requested by `FORWARD` in INFO print mode
Client: Release the `--read-buff` parameter limit and set the default value to 7kb
Server: aspx/ashx/jsp(x) Solve the problem that the socket IO cannot be updated immediately when the download traffic is too large (Special thanks to Godzilla author @BeichenDream for the solution)
Server: jsp(x) Fix the problem that base64 content is truncated when the download traffic is too large
Server: jsp(x) fixes the limitation of releasing POST body, greatly improving the request speed of `FORWARD`

### v3.1.0:
Server: jsp(x) fixes performance issues while maintaining compatibility, greatly improves the speed of `READ` requests (special thanks to @XinRoom for the PR solution)

Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

### v3.2.0:
修复解决高宽带时出现的 BUG 提高稳定性,并提升10倍以上高宽带的传输速度
Client: 添加 `--max-read-size` 参数控制 `READ` 请求的响应包最大长度
Client: 修复 python 的 `socket.send()` 不能完全写入的问题
Client: 修复 INFO 打印模式下,`FORWARD` 请求的调试信息打印信息的准确性
Client: 释放 `--read-buff` 参数限制,并设置默认值为 7kb
Server: aspx/ashx/jsp(x) 解决下载流量过大时,无法即时更新 socket IO 问题 (特别感谢 Godzilla 作者 @BeichenDream 的解决方案)
Server: jsp(x) 修复下载流量过大时,base64 内容被截断问题
Server: jsp(x) 修复释放 POST Body 的限制,大幅提升 `FORWARD` 请求速度

### v3.1.0:
Server: jsp(x) 在保持兼容性的前提下,修复性能问题,大幅提高 `READ` 请求速度 (特别感谢 @XinRoom 的 PR 解决方案)

Expand Down
12 changes: 7 additions & 5 deletions README-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
## Version

3.1.0 - [Change Log](CHANGELOG-en.md)
3.2.0 - [Change Log](CHANGELOG-en.md)


## Features
Expand Down Expand Up @@ -112,6 +112,7 @@ $ python neoreg.py -k <you_password> -u <url> -t <ip:port>
# Generate server-side scripts
$ python neoreg.py generate -h
usage: neoreg.py [-h] -k KEY [-o DIR] [-f FILE] [-c CODE] [--read-buff Bytes]
[--max-read-size KB]

Generate neoreg webshell

Expand All @@ -124,13 +125,14 @@ $ python neoreg.py generate -h
Specify HTTP response code. When using -r, it is
recommended to <400. (default: 200)
--read-buff Bytes Remote read buffer. (default: 513)
--max-read-size KB Remote max read size. (default: 512)

# Connection server
$ python neoreg.py -h
usage: neoreg.py [-h] -u URI [-r URL] [-t IP:PORT] -k KEY [-l IP] [-p PORT]
[-s] [-H LINE] [-c LINE] [-x LINE] [--local-dns]
[--read-buff Bytes] [--read-interval MS]
[--write-interval MS] [--max-threads N] [-v]
[--read-buff KB] [--read-interval MS] [--write-interval MS]
[--max-threads N] [-v]

Socks server for Neoreg HTTP(s) tunneller. DEBUG MODE: -k
(debug_all|debug_base64|debug_headers_key|debug_headers_values)
Expand All @@ -157,8 +159,8 @@ $ python neoreg.py -h
-x LINE, --proxy LINE
Proto://host[:port] Use proxy on given port
--local-dns Use local resolution DNS
--read-buff Bytes Local read buffer, max data to be sent per
POST.(default: 2048 max: 2600)
--read-buff KB Local read buffer, max data to be sent per
POST.(default: 7, max: 50)
--read-interval MS Read data interval in milliseconds.(default: 300)
--write-interval MS Write data interval in milliseconds.(default: 200)
--max-threads N Proxy max threads.(default: 1000)
Expand Down
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

## Version

3.1.0 - [版本修改日志](CHANGELOG.md)
3.2.0 - [版本修改日志](CHANGELOG.md)



Expand Down Expand Up @@ -114,6 +114,7 @@ $ python neoreg.py -k <you_password> -u <url> -t <ip:port>
# 生成服务端脚本
$ python neoreg.py generate -h
usage: neoreg.py [-h] -k KEY [-o DIR] [-f FILE] [-c CODE] [--read-buff Bytes]
[--max-read-size KB]

Generate neoreg webshell

Expand All @@ -123,15 +124,17 @@ $ python neoreg.py generate -h
-o DIR, --outdir DIR Output directory.
-f FILE, --file FILE Camouflage html page file
-c CODE, --httpcode CODE
Specify HTTP response code. (default: 200)
Specify HTTP response code. When using -r, it is
recommended to <400. (default: 200)
--read-buff Bytes Remote read buffer. (default: 513)
--max-read-size KB Remote max read size. (default: 512)

# 连接服务端
$ python neoreg.py -h
usage: neoreg.py [-h] -u URI [-r URL] [-t IP:PORT] -k KEY [-l IP] [-p PORT]
[-s] [-H LINE] [-c LINE] [-x LINE] [--local-dns]
[--read-buff Bytes] [--read-interval MS]
[--write-interval MS] [--max-threads N] [-v]
[--read-buff KB] [--read-interval MS] [--write-interval MS]
[--max-threads N] [-v]

Socks server for Neoreg HTTP(s) tunneller. DEBUG MODE: -k
(debug_all|debug_base64|debug_headers_key|debug_headers_values)
Expand All @@ -158,8 +161,8 @@ $ python neoreg.py -h
-x LINE, --proxy LINE
Proto://host[:port] Use proxy on given port
--local-dns Use local resolution DNS
--read-buff Bytes Local read buffer, max data to be sent per
POST.(default: 2048 max: 2600)
--read-buff KB Local read buffer, max data to be sent per
POST.(default: 7, max: 50)
--read-interval MS Read data interval in milliseconds.(default: 300)
--write-interval MS Write data interval in milliseconds.(default: 200)
--max-threads N Proxy max threads.(default: 1000)
Expand Down
2 changes: 1 addition & 1 deletion neoreg.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

__author__ = 'L'
__version__ = '3.1.0'
__version__ = '3.2.0'

import sys
import os
Expand Down

0 comments on commit 3379157

Please sign in to comment.