diff --git a/ProxySU/MainWindow.xaml b/ProxySU/MainWindow.xaml index 1cbe228..cfcf223 100644 --- a/ProxySU/MainWindow.xaml +++ b/ProxySU/MainWindow.xaml @@ -5,7 +5,7 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:ProxySU" mc:Ignorable="d" - Title="ProxySU - v2.1.0" Height="625" Width="530"> + Title="ProxySU - v2.2.0" Height="675" Width="620"> @@ -49,352 +49,443 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + - - - + + - - - - - - - - + + + - - - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - + + - - - + + - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - + + - - - + + - - - - - - - - + + + - - + + + + + + - + + + + + + + + + + + + + - - - - + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ProxySU/SSpluginWindow.xaml.cs b/ProxySU/SSpluginWindow.xaml.cs new file mode 100644 index 0000000..a7d52fe --- /dev/null +++ b/ProxySU/SSpluginWindow.xaml.cs @@ -0,0 +1,426 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Shapes; + +namespace ProxySU +{ + /// + /// SSpluginWindow.xaml 的交互逻辑 + /// + public partial class SSpluginWindow : Window + { + + public class EncryptionMethodInfo + { + public string Name { get; set; } + public string Value { get; set; } + } + public SSpluginWindow() + { + InitializeComponent(); + + #region 加密方法选择 初始设置为chacha20-ietf-poly1305 + List methodList = new List(); + + methodList.Add(new EncryptionMethodInfo { Name = "chacha20-ietf-poly1305", Value = "chacha20-ietf-poly1305" }); + methodList.Add(new EncryptionMethodInfo { Name = "xchacha20-ietf-poly1305", Value = "xchacha20-ietf-poly1305" }); + methodList.Add(new EncryptionMethodInfo { Name = "aes-256-gcm", Value = "aes-256-gcm" }); + methodList.Add(new EncryptionMethodInfo { Name = "aes-192-gcm", Value = "aes-192-gcm" }); + methodList.Add(new EncryptionMethodInfo { Name = "aes-128-gcm", Value = "aes-128-gcm" }); + + ComboBoxEncryptionMethodInfo.ItemsSource = methodList; + + ComboBoxEncryptionMethodInfo.DisplayMemberPath = "Name";//显示出来的值 + ComboBoxEncryptionMethodInfo.SelectedValuePath = "Value";//实际选中后获取的结果的值 + ComboBoxEncryptionMethodInfo.SelectedIndex = 0; + + DataContext = this; + #endregion + } + + + + //取消不在当前活动选项卡中的其他所有选项卡中的所有RadioBuuton的选中状态 + //代码参考网址:https://blog.csdn.net/weixin_42583999/article/details/103468857 + //调用:UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + private void UncheckLayouts(TabItem activePage) + { + foreach (TabItem tabPage in TabControlTemplate.Items) + { + if (tabPage == activePage) continue; + Grid grid = (Grid)tabPage.Content; + foreach (UIElement element in grid.Children) + { + if (element is RadioButton) + { + RadioButton radiobutton = (element as RadioButton); + radiobutton.IsChecked = false; + } + + } + } + } + + + //伪装网站处理 + private void DisguiseURLprocessing() + { + //处理伪装网站域名中的前缀 + if (TextBoxMaskSites.Text.ToString().Length >= 7) + { + string testDomain = TextBoxMaskSites.Text.Substring(0, 7); + if (String.Equals(testDomain, "https:/") || String.Equals(testDomain, "http://")) + { + MainWindow.ReceiveConfigurationParameters[7] = TextBoxMaskSites.Text.Replace("/", "\\/"); + } + else + { + MainWindow.ReceiveConfigurationParameters[7] = "http:\\/\\/" + TextBoxMaskSites.Text; + } + } + } + + private void ButtondDecide_Click(object sender, RoutedEventArgs e) + { + bool testDomain = true; + //UncheckLayouts(TabControlTemplate); + //SS 经典模式被选中 + if (RadioButtonNonePluginSS.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "NonePluginSS"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonNonePluginSS.Content.ToString(); + + } + //SS+obfs+http+web伪装模式被选中 + else if (RadioButtonObfsPluginHttpWebSS.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "ObfsPluginHttpWebSS"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonObfsPluginHttpWebSS.Content.ToString(); + + } + //SS+obfs+TLS+web模式被选中 + else if (RadioButtonObfsPluginHttpsWebSS.IsChecked == true) + { + //if (string.IsNullOrEmpty(TextBoxDomainSS.Text.ToString()) == true) + //{ + // //****** "域名不能为空,请检查相关参数设置!" ****** + // MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString()); + // return; + //} + testDomain = TestDomainIsEmpty(); + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "ObfsPluginHttpsWebSS"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonObfsPluginHttpsWebSS.Content.ToString(); + //传递域名 + MainWindow.ReceiveConfigurationParameters[4] = TextBoxDomainSS.Text.ToString(); + + } + + //V2Ray-Plugin SS+WebSocket 无TLS模式被选中 + else if (RadioButtonWebSocketSS.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "WebSocketSS"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonWebSocketSS.Content.ToString(); + //传递路径 + MainWindow.ReceiveConfigurationParameters[3] = TextBoxWebSocketPathSS.Text.ToString(); + } + + //V2Ray-Plugin SS+WebSocket+TLS+Web模式被选中 + else if (RadioButtonWebSocketTLSWebFrontSS.IsChecked == true || RadioButtonWebSocketTLSWebFrontSSHot.IsChecked == true) + { + //if (string.IsNullOrEmpty(TextBoxDomain.Text.ToString()) == true) + //{ + // //****** "域名不能为空,请检查相关参数设置!" ****** + // MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString()); + // return; + //} + testDomain = TestDomainIsEmpty(); + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "WebSocketTLSWebFrontSS"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonWebSocketTLSWebFrontSS.Content.ToString(); + + //传递路径 + MainWindow.ReceiveConfigurationParameters[3] = TextBoxWebSocketPathSS.Text.ToString(); + //传递域名 + MainWindow.ReceiveConfigurationParameters[4] = TextBoxDomainSS.Text.ToString(); + //传递伪装网站 + //MainWindow.ReceiveConfigurationParameters[7] = TextBoxMaskSites.Text.ToString(); + //处理伪装网站域名中的前缀 + //DisguiseURLprocessing(); + //if (TextBoxMaskSites.Text.ToString().Length >= 7) + //{ + // string testDomain = TextBoxMaskSites.Text.Substring(0, 7); + // if (String.Equals(testDomain, "https:/") || String.Equals(testDomain, "http://")) + // { + // //MessageBox.Show(testDomain); + // MainWindow.ReceiveConfigurationParameters[7] = TextBoxMaskSites.Text.Replace("/", "\\/"); + // } + // else + // { + // MainWindow.ReceiveConfigurationParameters[7] = "http:\\/\\/" + TextBoxMaskSites.Text; + // } + //} + } + //V2Ray-Plugin SS+QUIC模式被选中 + else if (RadioButtonQuicSS.IsChecked == true) + { + testDomain = TestDomainIsEmpty(); + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "QuicSS"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonQuicSS.Content.ToString(); + + //传递域名 + MainWindow.ReceiveConfigurationParameters[4] = TextBoxDomainSS.Text.ToString(); + + } + //SS+kcptun-plugin模式被选中 + else if (RadioButtonKcptunPluginSS.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "KcptunPluginSS"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonKcptunPluginSS.Content.ToString(); + + } + //SS+GoQuiet-Plugin模式被选中 + else if (RadioButtonGoQuietPluginSS.IsChecked == true) + { + //if (string.IsNullOrEmpty(TextBoxDomainSS.Text.ToString()) == true) + //{ + // //****** "域名不能为空,请检查相关参数设置!" ****** + // MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString()); + // return; + //} + testDomain = TestDomainIsEmpty(); + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "GoQuietPluginSS"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonGoQuietPluginSS.Content.ToString(); + //传递域名 + MainWindow.ReceiveConfigurationParameters[4] = TextBoxDomainSS.Text.ToString(); + + } + //SS+Cloak-Plugin模式被选中 + else if (RadioButtonCloakPluginSS.IsChecked == true) + { + //if (string.IsNullOrEmpty(TextBoxDomainSS.Text.ToString()) == true) + //{ + // //****** "域名不能为空,请检查相关参数设置!" ****** + // MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString()); + // return; + //} + testDomain = TestDomainIsEmpty(); + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "CloakPluginSS"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonCloakPluginSS.Content.ToString(); + //传递域名 + MainWindow.ReceiveConfigurationParameters[4] = TextBoxDomainSS.Text.ToString(); + + } + + //传递服务端口 + MainWindow.ReceiveConfigurationParameters[1] = TextBoxServerListenPortSS.Text.ToString(); + //传递uuid密码 + MainWindow.ReceiveConfigurationParameters[2] = TextBoxNewUUIDSS.Text.ToString(); + //传递加密方式 + MainWindow.ReceiveConfigurationParameters[6] = GetEncryptionMethodSS(); + + if (testDomain) + { + this.Close(); + } + + } + + private void ButtondCancel_Click(object sender, RoutedEventArgs e) => Close(); + + + #region 其他设置中的界面控制 + + //无插件的界面 + private void RadioButtonNonePluginSS_Checked(object sender, RoutedEventArgs e) + { + //TextBlockServerListenPort.Visibility = Visibility.Visible; + //TextBoxServerListenPort.Visibility = Visibility.Visible; + //ButtonServerListenPort.Visibility = Visibility.Visible; + + //隐藏Websocket Path + TextBlockWebSocketPathSS.Visibility = Visibility.Collapsed; + TextBoxWebSocketPathSS.Visibility = Visibility.Collapsed; + ButtonWebSocketPathSS.Visibility = Visibility.Collapsed; + + //隐藏域名 + TextBlockDomainSS.Visibility = Visibility.Collapsed; + TextBoxDomainSS.Visibility = Visibility.Collapsed; + //检测域名按钮 + ButtonDomain.Visibility = Visibility.Collapsed; + //隐藏伪装网站 + TextBlockMaskSites.Visibility = Visibility.Collapsed; + TextBoxMaskSites.Visibility = Visibility.Collapsed; + + //初始化密码 + TextBoxNewUUIDSS.Text = GenerateRandomUUID(); + //初始化端口 + + TextBoxServerListenPortSS.Text = GenerateRandomPort().ToString(); + //清除其他选项卡中的选项 + UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + } + //使用域名,启用TLS 无Websocket的界面 + private void RadioButtonUseDomainTls_Checked(object sender, RoutedEventArgs e) + { + + TextBoxServerListenPortSS.Text = "443"; + //隐藏Websocket Path + TextBlockWebSocketPathSS.Visibility = Visibility.Collapsed; + TextBoxWebSocketPathSS.Visibility = Visibility.Collapsed; + ButtonWebSocketPathSS.Visibility = Visibility.Collapsed; + + //显示域名 + TextBlockDomainSS.Visibility = Visibility.Visible; + TextBoxDomainSS.Visibility = Visibility.Visible; + //检测域名按钮 + ButtonDomain.Visibility = Visibility.Collapsed; + //隐藏伪装网站 + TextBlockMaskSites.Visibility = Visibility.Collapsed; + TextBoxMaskSites.Visibility = Visibility.Collapsed; + + //初始化密码 + TextBoxNewUUIDSS.Text = GenerateRandomUUID(); + //初始化端口 + //TextBoxServerListenPortSS.Text = GenerateRandomPort().ToString(); + //清除其他选项卡中的选项 + UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + } + + + //使用V2ray-plugin 的Websocket over https (TLS) + private void RadioButtonUseDomainWebsocketTls_Checked(object sender, RoutedEventArgs e) + { + + TextBoxServerListenPortSS.Text = "443"; + //显示Websocket Path + TextBlockWebSocketPathSS.Visibility = Visibility.Visible; + TextBoxWebSocketPathSS.Visibility = Visibility.Visible; + ButtonWebSocketPathSS.Visibility = Visibility.Visible; + + //显示域名 + TextBlockDomainSS.Visibility = Visibility.Visible; + TextBoxDomainSS.Visibility = Visibility.Visible; + //检测域名按钮 + ButtonDomain.Visibility = Visibility.Collapsed; + //隐藏伪装网站 + TextBlockMaskSites.Visibility = Visibility.Collapsed; + TextBoxMaskSites.Visibility = Visibility.Collapsed; + + //初始化密码 + TextBoxNewUUIDSS.Text = GenerateRandomUUID(); + + //初始化端口 + + //TextBoxServerListenPortSS.Text = GenerateRandomPort().ToString(); + + //初始化Websocket Path + TextBoxWebSocketPathSS.Text = GenerateRandomPath(); + //清除其他选项卡中的选项 + UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + } + + #endregion + + //加密方法更改后的动作 + private void ComboBoxEncryptionMethodInfo_SelectionChanged(object sender, SelectionChangedEventArgs e) + { + //传递加密方式 + MainWindow.ReceiveConfigurationParameters[6] = GetEncryptionMethodSS(); + + } + + //产生随机的uuid + private void ButtonNewUUID_Click(object sender, RoutedEventArgs e) + { + TextBoxNewUUIDSS.Text = GenerateRandomUUID(); + } + + //产生随机服务端口 + private void ButtonServerListenPort_Click(object sender, RoutedEventArgs e) + { + TextBoxServerListenPortSS.Text = GenerateRandomPort().ToString(); + } + //产生随机的Path + private void ButtonPath_Click(object sender, RoutedEventArgs e) + { + TextBoxWebSocketPathSS.Text = GenerateRandomPath(); + } + + #region 相关参数生成函数 + //产生随机的UUID + private string GenerateRandomUUID() + { + Guid uuid = Guid.NewGuid(); + return uuid.ToString(); + } + //产生随机端口 + private int GenerateRandomPort() + { + Random random = new Random(); + return random.Next(30001, 50000); + } + //读取加密方式 + private string GetEncryptionMethodSS() + { + //string methodName; + //object methodSelected; + //methodSelected = ComboBoxEncryptionMethodInfo.SelectedValue; + //methodName = methodSelected.ToString(); + //return methodName; + return ComboBoxEncryptionMethodInfo.SelectedValue.ToString(); + } + //产生随机的Path + private string GenerateRandomPath() + { + Random random = new Random(); + int randomSerialNum = random.Next(0, 4); + Guid uuid = Guid.NewGuid(); + string[] pathArray = uuid.ToString().Split('-'); + string path = pathArray[randomSerialNum]; + return $"/{path}"; + } + + #endregion + + //域名检测是否为空 + private bool TestDomainIsEmpty() + { + if (string.IsNullOrEmpty(TextBoxDomainSS.Text.ToString()) == true) + { + //****** "域名不能为空,请检查相关参数设置!" ****** + MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString()); + return false; + } + else + { + return true; + } + } + } +} diff --git a/ProxySU/Translations/ProxySU.en-US.xaml b/ProxySU/Translations/ProxySU.en-US.xaml index 13d620b..4da5c47 100644 --- a/ProxySU/Translations/ProxySU.en-US.xaml +++ b/ProxySU/Translations/ProxySU.en-US.xaml @@ -14,8 +14,17 @@ Host: IP or Domain (Not empty) Port: - User name: + User: Password: + Key: + Key file Path (Not Empty) + Open... + Password Login + Key Login + No Proxy + Not Login + Requires Login + Proxy Addr: Waiting for installation and deployment System Tools V2Ray Templates @@ -47,6 +56,35 @@ Mode: SSR+TLS+Caddy SSR install + + SS one-click installation + SS plug-in library + Classic mode + Tip: This mode, long time, large traffic use, easy to be blocked and interfered, is not recommended! + SS Classic + SS classic use mode, no domain name is required, data is encrypted with high strength, and the data is recognized as unknown data. At present, the traffic is easy to be identified, and it is easy to be interfered and blocked. Use it with caution! Putting here is just a feeling and tribute! + Simple-obfs plug-in + Tip: This is a traffic obfuscation scheme used in the early days of SS. The plug-in has not been updated for a long time and is not recommended! + SS+obfs+http+Web + Does not require a domain name, the data is highly encrypted, the traffic is confused as http (not the real http), and the use of Web site camouflage can enhance the anti-recognition to a certain extent! CDN is not supported. + SS+obfs+TLS(https)+Web + requires a domain name, the use of a domain name will greatly enhance the anti-identification, high-strength data encryption, traffic confusion as https (not real https), the use of Web site camouflage, further enhance the anti-identification! CDN is not supported. + V2Ray plug-in + Reminder: ShadowRocket(ios) does not support SS+Quic mode + SS+WebSocket+TLS+Caddy (Web post) + SS+WebSocket+TLS+Caddy (Web front) + Tip: In the above scheme, there is no difference in the use effect between Web front and Web post. In the Web post scheme, the TLS certificate is applied for by acme.sh. After the certificate expires, acme.sh will automatically renew, but you need to manually restart SS to load the new certificate. The certificate in the web front-end solution is automatically applied for and loaded by Caddy without restarting SS. + SS+QUIC + V2Ray-Plugin uses QUIC protocol for transmission, and TLS encryption is mandatory. Encrypted data transmission, identified as udp traffic, was originally initiated by Google, advantages: reduced delay, multiplexing, connection migration, domain name is required, + + kcptun Plugin + Reminder: Shadowrocket(ios) does not support GoQuiet-plugin. shadowsocks (Android) does not support GoQuiet-plugin and Cloak-plugin plug-ins + KCP is a fast and reliable protocol. It can waste 10%-20% of bandwidth than TCP in exchange for a 30%-40% reduction in average latency and a three-fold reduction in maximum latency The transmission effect. Use UDP protocol for transmission, high-strength data encryption, transmission of the same content, kcp generally consumes more traffic than TCP, and will greatly increase the network speed under lines with high packet loss rates, and may be restricted by QOS at individual operators . + The basic principle is to simulate TLS traffic while disguising the server as a normal web server. This confusion is not the first: simple-obfs and ShadowsocksR’s tls1.2_ticket_auth mode proves this. It works. This plug-in improves the existing methods, and its goal is to make large-scale blockade of HTTPS servers (even IP segments) the only effective way to block SS + Use encryption to confuse proxy traffic into legitimate HTTPS traffic, and disguise the proxy server as a normal Web server to avoid Internet censorship. It can be seen as an upgraded version of GoQuiet above, optimizing the network connection speed, and not confusing https but real https traffic. + Plugin program: + Plugin options: + Use the compilation method, it will take a little longer, please be patient... Proofreading Time Release 80/443 @@ -82,7 +120,7 @@ If TLS encryption is used, please keep the default port 443 Use the existing UUID and paste it directly into the box mKCP Seed/QUIC key - Enable the mKCP Seed key to enhance anti-recognition, leave it blank to disable it. Version 4.24.2 or above is required. V2rayN does not currently support + Enable the mKCP Seed key to enhance anti-recognition, leave it blank to disable it. Version 4.24.2+ Path: Domain name: Mask a website: @@ -98,7 +136,7 @@ Shadowrocket (ios) needs to manually open the "Allow Unsafe" option Lightweight protocol VLESS, occupies less host resources, data TLS encrypted transmission, and Caddy2 is used as a disguised website on the node. Suitable for low-profile VPS, or shared nodes by multiple people, the server client version requires 4.27+ (domain name required) Data encrypted transmission, the transmission protocol uses WebSocket, if TLS is not enabled, it will be recognized as WebSocket traffic. - Data encrypted transmission, the transmission protocol uses WebSocket, and TLS is enabled, it will be recognized as TLS traffic. (Domain name required) + Data encrypted transmission, the transmission protocol uses WebSocket, and TLS is enabled, it will be recognized as TLS traffic. (Domain name required),Support CDN. WebSocket+TLS (self-signed certificate) Data encrypted transmission, the transmission protocol uses WebSocket, and TLS is enabled, and it will be recognized as TLS traffic. (No domain name required) The transmission method based on HTTP/2. It is fully implemented in accordance with the HTTP/2 standard and requires a domain name @@ -113,7 +151,7 @@ Same as mKCP (without camouflage), with the addition of disguised as WireGuard packets. (Not the real WireGuard protocol) Reminder: Shadowrocket currently does not support QUIC transmission mode. QUIC (no camouflage) - Data encrypted transmission, no disguise will be recognized as udp traffic, produced by Google, advantages: reduced delay, multiplexing, connection migration + Encrypted data transmission, no pretense will be recognized as udp traffic, originally created by Google, advantages: reduced delay, multiplexing, connection migration Same as QUIC (no camouflage), adding a packet disguised as SRTP, it will be recognized as video call data (such as FaceTime) Same as QUIC (without camouflage), add disguised as uTP data packet, it will be recognized as BT download data Same as QUIC (no camouflage), adding data packets disguised as WeChat video calls @@ -194,7 +232,8 @@ The system environment has been tested and the installation requirements are met, and the deployment begins... Open the corresponding port of the firewall... Installing - The installation failed, the official script runs incorrectly! + Compiling, please wait patiently............. + The installation failed, the script runs incorrectly! The installation is successful! After installation, upload the configuration file...... Installing acme.sh...... @@ -268,6 +307,7 @@ The server is being upgraded for NaiveProxy The upgrade is complete, OK! Optimizing network parameters... + Optimize network parameters, OK! This file is the client configuration file used by the official V2Ray program. It is configured in global mode, socks5 address: 127.0.0.1:1080, http proxy address: 127.0.0.1:1081 v2ray official website: https://www.v2ray.com/ @@ -318,7 +358,32 @@ Shadowrocket(ios) download, you need to use the AppleID of the foreign region. Please Google method yourself. This file is ShadowsocksR (windows), SSRR (Android), Shadowrocket (ios) copy and paste the URL of the imported node Server general connection configuration parameters - + + This file is a Shadowsocks (windows) scan code import node + This file is Shadowsocks (windows) copy and paste the URL of the imported node + This file is for shadowsocks (Android), Shadowrocket (ios) scan code to import nodes + Shadowsocks (windows) download URL: https://github.com/shadowsocks/shadowsocks-windows/releases + shadowsocks (Android) download URL: https://github.com/shadowsocks/shadowsocks-android/releases + Shadowrocket(ios) download, you need to use the AppleID of the foreign region. Please Google method yourself. + This file is shadowsocks (Android), Shadowrocket (ios) copy and paste the URL of the imported node + Server general connection configuration parameters + plug-in instructions + ProxySU defaults all plug-ins, under the subfolder plugins of the folder where the Shadowsocks (windows) run file is located. + Instructions for manually installing the plug-in on the computer + First download the plug-in, the download address of each plug-in Windows client is: + Simple-obfs: https://github.com/shadowsocks/simple-obfs/releases only download obfs-local.zip + V2ray-plugin: https://github.com/shadowsocks/v2ray-plugin/releases 64-bit system selection: v2ray-plugin-windows-amd64-vx.xxtar.gz , 32-bit system selection: v2ray-plugin-windows-386-vx.xxtar.gz (x is a number, is the version number) + Kcptun-plugin: https://github.com/shadowsocks/kcptun/releases 64-bit system selection: kcptun-windows-amd64-xxxxxx.tar.gz, 32-bit system selection :Kcptun-plugin-windows-386-xxxxxx.tar.gz (x is a number, is the version number) + GoQuiet-plugin: https://github.com/cbeuw/GoQuiet/releases 64-bit system selection: gq-client-windows-amd64-xxxexe, 32-bit system selection: gq-client-windows-386-xxxexe (x is a number, is the version number) + Cloak-plugin: https://github.com/cbeuw/Cloak/releases 64-bit system selection: ck-client-windows-amd64-xxxexe, 32-bit system selection: ck-client-windows-386-xxxexe (x is a number, is the version number) + In the folder where the Shadowsocks (windows) run file is located, create a new folder plugins, and copy all the files (two) extracted from obfs-local.zip to plugins, v2ray -plugin download the file, unzip the file, copy it to plugins, and rename it to: v2ray-plugin.exe. Kcptun-plugin downloads the file, unzip the two files, copy the file starting with client_windows into the plugins, and rename it to: kcptun-client.exe. The file downloaded by GoQuiet-plugin is directly copied to the plugin and renamed to: goquiet-client.exe. The file downloaded by Cloak-plugin is directly copied to the plugin and renamed to: cloak-client.exe + installation completed + Mobile Android client plug-in installation instructions + first download the plug-in, the download address of each plug-in Android client is: + Simple-obfs: https://github.com/shadowsocks/simple-obfs-android/releases only download obfs-local-nightly-xxxapk (x is a number, is the version Number) + V2ray-plugin: https://github.com/shadowsocks/v2ray-plugin-android/releases Generally choose v2ray--universal-xxxapk (x is a number, is the version number ) + Kcptun-plugin: https://github.com/shadowsocks/kcptun-android/releases Generally choose kcptun--universal-xxxapk (x is a number, is the version number) + Transfer the above apk file to the phone and install it! 模式:SSR+TLS+Caddy SSR一键安装 + + + SS 一键安装 + SS 插件库 + 经典模式 + 提示:这种模式,长时间,大流量使用,容易被阻断和干扰,不推荐使用! + SS 经典 + SS经典使用模式,无需域名,数据高强度加密,数据被识别为未知数据。目前流量容易被识别,极易被干扰与阻断,慎重使用!放在这里仅仅只是一种情怀与致敬! + Simple-obfs 插件 + 提示:这是SS早期使用的流量混淆方案,插件已经长时间不再更新,不推荐使用! + SS+obfs+http+Web + 无需域名,数据高强度加密,流量混淆为http(并非真正的http),使用Web网站伪装,可在一定程度上增强抗识别!不支持CDN。 + SS+obfs+TLS(https)+Web + 需要域名,使用域名将很大增强抗识别,数据高强度加密,流量混淆为https(并非真正的https),使用Web网站伪装,进一步增强抗识别!不支持CDN。 + V2Ray 插件 + 提醒:ShadowRocket(ios)不支持SS+Quic模式 + SS+WebSocket+TLS+Caddy(Web后置) + SS+WebSocket+TLS+Caddy(Web前置) + 提示:上面方案中的Web前置与Web后置,使用效果上没有差别,Web后置方案,TLS证书由acme.sh申请,证书到期后,acme.sh会自动续期,但是需要手动重启SS加载新证书。而Web前置方案中的证书由Caddy自动申请并加载,不需要重启SS。 + SS+QUIC + 通过V2Ray-Plugin使用QUIC协议传输,强制使用TLS加密。数据加密传输,被识别为udp流量,最初由谷歌创始,优点:减少延迟、多路复用、连接迁移,需要域名, + + kcptun 插件 + 提醒:Shadowrocket(ios)不支持GoQuiet-plugin插件。shadowsocks(Android)不支持GoQuiet-plugin与Cloak-plugin插件 + KCP是一个快速可靠协议,能以比 TCP浪费10%-20%的带宽的代价,换取平均延迟降低 30%-40%,且最大延迟降低三倍的传输效果。使用UDP协议传输,数据高强度加密,传输同样的内容,kcp 一般比 TCP 消耗更多的流量,在丢包率高的线路下将极大提高网速,在个别运营商处可能会被QOS限制。 + 基本原理为模拟TLS的流量同时将服务器伪装成一个正常的网站服务器,这个混淆思路并非首创:simple-obfs和ShadowsocksR的tls1.2_ticket_auth模式证明这条道是行得通的。此插件对现有的方法进行了改善,其目标为让大规模封锁HTTPS服务器(甚至IP段)成为封锁SS的唯一有效手段 + 通过加密方式将代理流量混淆为合法的HTTPS流量,并将代理服务器伪装成普通的Web服务器以规避互联网审查。可以看成是上面GoQuiet升级版,优化网络连接速度,并且不是混淆https而是真正的https流量。 + 插件程序: + 插件选项: + 使用编译方式,时间稍长,请耐心等待...... 校对时间 @@ -71,7 +110,7 @@ 取消 V2Ray 模板库 - 热门方案 + 推荐方案 TCP传输协议 WebSocket传输协议 Http/2传输协议 @@ -83,7 +122,7 @@ 若使用TLS加密,请保持默认的443端口 使用已有UUID,直接粘贴到框中 mKCP Seed/QUIC密钥 - 启用mKCP Seed密钥,可增强抗识别,留空则禁用,要求版本4.24.2以上,V2rayN暂不支持 + 启用mKCP Seed密钥,可增强抗识别,留空则禁用,要求版本4.24.2+ 路径: 域名: 伪装网站: @@ -99,7 +138,7 @@ Shadowrocket (ios)需要手动打开“允许不安全”选项 轻量协议VLESS,占用更少主机资源,数据TLS加密传输,用Caddy2在节点上做伪装网站。适合配置低的VPS,或多人共用节点,服务端客户端版本要求4.27+ (需域名) 数据加密传输,传输协议使用WebSocket,未启用TLS,将被识别为WebSocket流量。 - 数据加密传输,传输协议使用WebSocket,启用TLS,将被识别为TLS流量。(需要域名) + 数据加密传输,传输协议使用WebSocket,启用TLS,将被识别为TLS流量。(需要域名)支持CDN。 WebSocket+TLS(自签证书) 数据加密传输,传输协议使用WebSocket,启用TLS,将被识别为TLS流量。(无需域名) 基于 HTTP/2 的传输方式。它完整按照 HTTP/2 标准实现,需要域名 @@ -114,7 +153,7 @@ 同mKCP(无伪装),增加伪装成 WireGuard 数据包。(并不是真正的 WireGuard 协议) 提醒:Shadowrocket目前暂不支持QUIC的传输模式。 QUIC(无伪装) - 数据加密传输,无伪装会被识别为udp流量,谷歌出品,优点:减少延迟、多路复用、连接迁移 + 数据加密传输,无伪装会被识别为udp流量,最初由谷歌创始,优点:减少延迟、多路复用、连接迁移 同QUIC(无伪装),增加伪装成 SRTP 数据包,会被识别为视频通话数据(如 FaceTime) 同QUIC(无伪装),增加伪装成 uTP 数据包,会被识别为 BT 下载数据 同QUIC(无伪装),增加伪装成微信视频通话的数据包 @@ -149,8 +188,15 @@ "可用于ShadowRocket (ios)、igniter(Android)、Trojan-QT5 (windows) 扫码和导入url。注意:有的客户端可能不支持WebSocket模式。" "可用于ShadowRocket (ios)、igniter(Android)、Trojan-QT5 (windows) 扫码和导入url。注意:有的客户端可能不支持WebSocket模式。" 用于NaiveGUI(windows)的URL导入链接 - 用于ShadowsocksR(windows)、SSRR(android)、Shadowrocket(ios)的扫码和导入URL导入链接 - + 用于ShadowsocksR(windows)、SSRR(android)、Shadowrocket(ios)的扫码和URL导入链接 + 用于手机客户端shadowsocks(android)、Shadowrocket(ios)的扫码和URL导入链接 + 用于电脑客户端Shadowsocks (windows)的扫码和URL导入链接 + 用于Shadowsocks (windows)、shadowsocks(android)、Shadowrocket(ios)的扫码和URL导入链接 + 提醒: 电脑客户端Shadowsocks (windows)与手机客户端shadowsocks(android)、Shadowrocket(ios)的导入格式不兼容,请选择相应格式。 + 手机端 + 电脑端 + + 主机地址、主机端口、用户名为必填项,不能为空!! 登录密码为必填项,不能为空!! 密钥文件为必填项,不能为空!! @@ -195,7 +241,8 @@ 系统环境检测完毕,符合安装要求,开始布署...... 开启防火墙相应端口...... 正在安装 - 安装失败,官方脚本运行出错! + 编译中,请耐心等待............. + 安装失败,脚本运行出错! 安装成功! 安装完毕,上传配置文件...... 正在安装acme.sh...... @@ -269,6 +316,7 @@ 正在为NaiveProxy升级服务端 升级完毕,OK! 正在优化网络参数...... + 优化网络参数,OK! 此文件为V2Ray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081 v2ray官方网站:https://www.v2ray.com/ @@ -319,6 +367,34 @@ Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。 此文件为ShadowsocksR (windows)、SSRR(Android)、Shadowrocket(ios)复制粘贴导入节点的网址 服务器通用连接配置参数 + + 此文件为Shadowsocks (windows)扫码导入节点 + 此文件为Shadowsocks (windows)复制粘贴导入节点的网址 + 此文件为shadowsocks(Android)、Shadowrocket(ios)扫码导入节点 + Shadowsocks (windows)下载网址:https://github.com/shadowsocks/shadowsocks-windows/releases + shadowsocks(Android)下载网址:https://github.com/shadowsocks/shadowsocks-android/releases + Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。 + 此文件为shadowsocks(Android)、Shadowrocket(ios)复制粘贴导入节点的网址 + 服务器通用连接配置参数 + 插件使用说明 + ProxySU默认所有插件,在Shadowsocks (windows)运行文件所在文件夹的子文件夹plugins下。 + 电脑端手动安装插件说明 + 先下载插件,各个插件Windows客户端下载地址为: + Simple-obfs: https://github.com/shadowsocks/simple-obfs/releases 只下载 obfs-local.zip + V2ray-plugin: https://github.com/shadowsocks/v2ray-plugin/releases 64位系统选择:v2ray-plugin-windows-amd64-vx.x.x.tar.gz,32位系统选择:v2ray-plugin-windows-386-vx.x.x.tar.gz (x为数字,是版本号) + Kcptun-plugin: https://github.com/shadowsocks/kcptun/releases 64位系统选择:kcptun-windows-amd64-xxxxxx.tar.gz,32位系统选择:kcptun-plugin-windows-386-xxxxxx.tar.gz (x为数字,是版本号) + GoQuiet-plugin: https://github.com/cbeuw/GoQuiet/releases 64位系统选择:gq-client-windows-amd64-x.x.x.exe,32位系统选择:gq-client-windows-386-x.x.x.exe(x为数字,是版本号) + Cloak-plugin: https://github.com/cbeuw/Cloak/releases 64位系统选择:ck-client-windows-amd64-x.x.x.exe,32位系统选择:ck-client-windows-386-x.x.x.exe(x为数字,是版本号) + 在Shadowsocks (windows)运行文件所在文件夹中,新建文件夹plugins,将obfs-local.zip解压出的文件(两个)全部复制到plugins中,v2ray -plugin下载得到的文件,解压出的文件,复制到plugins中,并重命名为:v2ray-plugin.exe。Kcptun -plugin下载得到的文件,解压出两个文件,将其中的client_windows开头的文件,复制到plugins中,并重命名为:kcptun-client.exe。GoQuiet-plugin下载得到的文件,直接复制到plugin中,并重命名为:goquiet-client.exe。Cloak-plugin下载得到的文件,直接复制到plugin中,并重命名为:cloak-client.exe + 安装完毕 + 手机安卓客户端插件安装说明 + 先下载插件,各个插件安卓客户端下载地址为: + Simple-obfs: https://github.com/shadowsocks/simple-obfs-android/releases 只下载 obfs-local-nightly-x.x.x.apk(x为数字,是版本号) + V2ray-plugin: https://github.com/shadowsocks/v2ray-plugin-android/releases 一般选择v2ray--universal-x.x.x.apk(x为数字,是版本号) + Kcptun-plugin: https://github.com/shadowsocks/kcptun-android/releases 一般选择kcptun--universal-x.x.x.apk(x为数字,是版本号) + 将上述apk文件传到手机,安装即可! + + 模式:SSR+TLS+Caddy SSR一鍵安裝 + + + SS 一鍵安裝 + SS 插件庫 + 經典模式 + 提示:這種模式,長時間,大流量使用,容易被阻斷和乾擾,不推薦使用! + SS 經典 + SS經典使用模式,無需域名,數據高強度加密,數據被識別為未知數據。目前流量容易被識別,極易被干擾與阻斷,慎重使用!放在這裡僅僅只是一種情懷與致敬! + Simple-obfs 插件 + 提示:這是SS早期使用的流量混淆方案,插件已經長時間不再更新,不推薦使用! + SS+obfs+http+Web + 無需域名,數據高強度加密,流量混淆為http(並非真正的http),使用Web網站偽裝,可在一定程度上增強抗識別!不支持CDN。 + SS+obfs+TLS(https)+Web + 需要域名,使用域名將很大增強抗識別,數據高強度加密,流量混淆為https(並非真正的https),​​使用Web網站偽裝,進一步增強抗識別!不支持CDN。 + V2Ray 插件 + 提醒:ShadowRocket(ios)不支持SS+Quic模式 + SS+WebSocket+TLS+Caddy(Web後置) + SS+WebSocket+TLS+Caddy(Web前置) + 提示:上面方案中的Web前置與Web後置,使用效果上沒有差別,Web後置方案,TLS證書由acme.sh申請,證書到期後, acme.sh會自動續期,但是需要手動重啟SS加載新證書。而Web前置方案中的證書由Caddy自動申請並加載,不需要重啟SS。 + SS+QUIC + 通過V2Ray-Plugin使用QUIC協議傳輸,強制使用TLS加密。數據加密傳輸,被識別為udp流量,最初由谷歌創始,優點:減少延遲、多路復用、連接遷移,需要域名, + + kcptun 插件 + 提醒:Shadowrocket(ios)不支持GoQuiet-plugin插件。 shadowsocks(Android)不支持GoQuiet-plugin與Cloak-plugin插件 + KCP是一個快速可靠協議,能以比TCP浪費10%-20%的帶寬的代價,換取平均延遲降低30%-40%,且最大延遲降低三倍的傳輸效果。使用UDP協議傳輸,數據高強度加密,傳輸同樣的內容,kcp 一般比TCP 消耗更多的流量,在丟包率高的線路下將極大提高網速,在個別運營商處可能會被QOS限制。 + 基本原理為模擬TLS的流量同時將服務器偽裝成一個正常的網站服務器,這個混淆思路並非首創:simple-obfs和ShadowsocksR的tls1.2_ticket_auth模式證明這條道是行得通的。此插件對現有的方法進行了改善,其目標為讓大規模封鎖HTTPS服務器(甚至IP段)成為封鎖SS的唯一有效手段 + 通過加密方式將代理流量混淆為合法的HTTPS流量,並將代理服務器偽裝成普通的Web服務器以規避互聯網審查。可以看成是上面GoQuiet升級版,優化網絡連接速度,並且不是混淆https而是真正的https流量。 + 插件程序: + 插件選項: + 使用編譯方式,時間稍長,請耐心等待...... + 校對時間 釋放80/443端口 @@ -70,7 +110,7 @@ 取消 V2Ray 模板庫 - 熱門方案 + 推薦方案 TCP傳輸協議 WebSocket傳輸協議 Http/2傳輸協議 @@ -82,7 +122,7 @@ 若使用TLS加密,請保持默認的443端口 使用已有UUID,直接粘貼到框中 mKCP Seed/QUIC密鑰 - 啟用mKCP Seed密鑰,可增強抗識別,留空則禁用,要求版本4.24.2以上,V2rayN暫不支持 + 啟用mKCP Seed密鑰,可增強抗識別,留空則禁用,要求版本4.24.2+ 路徑: 域名: 偽裝網站: @@ -98,7 +138,7 @@ Shadowrocket (ios)需要手動打開“允許不安全”選項 輕量協議VLESS,佔用更少主機資源,數據TLS加密傳輸,用Caddy2在節點上做偽裝網站。適合配置低的VPS,或多人共用節點,服務端客戶端版本要求4.27+ (需域名) 數據加密傳輸,傳輸協議使用WebSocket,未啟用TLS,將被識別為WebSocket流量。 - 數據加密傳輸,傳輸協議使用WebSocket,啟用TLS,將被識別為TLS流量。 (需要域名) + 數據加密傳輸,傳輸協議使用WebSocket,啟用TLS,將被識別為TLS流量。 (需要域名)支持CDN。 WebSocket+TLS(自簽證書) 數據加密傳輸,傳輸協議使用WebSocket,啟用TLS,將被識別為TLS流量。 (無需域名) 基於 HTTP/2 的傳輸方式。它完整​​按照 HTTP/2 標準實現,需要域名 @@ -113,7 +153,7 @@ 同mKCP(無偽裝),增加偽裝成 WireGuard 數據包。 (並不是真正的 WireGuard 協議) 提醒:Shadowrocket目前暫不支持QUIC的傳輸模式。 QUIC(無偽裝) - 數據加密傳輸,無偽裝會被識別為udp流量,谷歌出品,優點:減少延遲、多路復用、連接遷移 + 數據加密傳輸,無偽裝會被識別為udp流量,最初由谷歌創始,優點:減少延遲、多路復用、連接遷移 同QUIC(無偽裝),增加偽裝成 SRTP 數據包,會被識別為視頻通話數據(如 FaceTime) 同QUIC(無偽裝),增加偽裝成 uTP 數據包,會被識別為 BT 下載數據 同QUIC(無偽裝),增加偽裝成微信視頻通話的數據包 @@ -194,7 +234,8 @@ 系統環境檢測完畢,符合安裝要求,開始佈署...... 開啟防火牆相應端口...... 正在安裝 - 安裝失敗,官方腳本運行出錯! + 編譯中,請耐心等待............. + 安裝失敗,腳本運行出錯! 安裝成功! 安裝完畢,上傳配置文件...... 正在安裝acme.sh...... @@ -268,6 +309,7 @@ 正在為NaiveProxy升級服務端 升級完畢,OK! 正在優化網絡參數...... + 優化網絡參數,OK! 此文件為V2Ray官方程序所使用的客戶端配置文件,配置為全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081 @@ -319,5 +361,30 @@ Shadowrocket(ios)下載,需要使用國外區的AppleID。請自行谷歌方法。 此文件為ShadowsocksR (windows)、SSRR(Android)、Shadowrocket(ios)複製粘貼導入節點的網址 服務器通用連接配置參數 - + + 此文件為Shadowsocks (windows)掃碼導入節點 + 此文件為Shadowsocks (windows)複製粘貼導入節點的網址 + 此文件為shadowsocks(Android)、Shadowrocket(ios)掃碼導入節點 + Shadowsocks (windows)下載網址:https://github.com/shadowsocks/shadowsocks-windows/releases + shadowsocks(Android)下載網址:https://github.com/shadowsocks/shadowsocks-android/releases + Shadowrocket(ios)下載,需要使用國外區的AppleID。請自行谷歌方法。 + 此文件為shadowsocks(Android)、Shadowrocket(ios)複製粘貼導入節點的網址 + 服務器通用連接配置參數 + 插件使用說明 + ProxySU默認所有插件,在Shadowsocks (windows)運行文件所在文件夾的子文件夾plugins下。 + 電腦端手動安裝插件說明 + 先下載插件,各個插件Windows客戶端下載地址為: + Simple-obfs: https://github.com/shadowsocks/simple-obfs/releases 只下載 obfs-local.zip + V2ray-plugin: https://github.com/shadowsocks/v2ray-plugin/releases 64位系統選擇:v2ray-plugin-windows-amd64-vx.xxtar.gz ,32位系統選擇:v2ray-plugin-windows-386-vx.xxtar.gz (x為數字,是版本號) + Kcptun-plugin: https://github.com/shadowsocks/kcptun/releases 64位系統選擇:kcptun-windows-amd64-xxxxxx.tar.gz,32位系統選擇:kcptun-plugin-windows-386-xxxxxx.tar.gz (x為數字,是版本號) + GoQuiet-plugin: https://github.com/cbeuw/GoQuiet/releases 64位系統選擇:gq-client-windows-amd64-xxxexe,32位系統選擇: gq-client-windows-386-xxxexe(x為數字,是版本號) + Cloak-plugin: https://github.com/cbeuw/Cloak/releases 64位系統選擇:ck-client-windows-amd64-xxxexe,32位系統選擇: ck-client-windows-386-xxxexe(x為數字,是版本號) + 在Shadowsocks (windows)運行文件所在文件夾中,新建文件夾plugins,將obfs-local.zip解壓出的文件(兩個)全部複製到plugins中,v2ray -plugin下載得到的文件,解壓出的文件,複製到plugins中,並重命名為:v2ray-plugin.exe。 Kcptun -plugin下載得到的文件,解壓出兩個文件,將其中的client_windows開頭的文件,複製到plugins中,並重命名為:kcptun-client.exe。 GoQuiet-plugin下載得到的文件,直接複製到plugin中,並重命名為:goquiet-client.exe。 Cloak-plugin下載得到的文件,直接複製到plugin中,並重命名為:cloak-client.exe + 安裝完畢 + 手機安卓客戶端插件安裝說明 + 先下載插件,各個插件安卓客戶端下載地址為: + Simple-obfs: https://github.com/shadowsocks/simple-obfs-android/releases 只下載obfs-local-nightly-xxxapk(x為數字,是版本號) + V2ray-plugin: https://github.com/shadowsocks/v2ray-plugin-android/releases 一般選擇v2ray--universal-xxxapk(x為數字,是版本號) + Kcptun-plugin: https://github.com/shadowsocks/kcptun-android/releases 一般選擇kcptun--universal-xxxapk(x為數字,是版本號) + 將上述apk文件傳到手機,安裝即可! \ No newline at end of file diff --git a/ProxySU/V2RayTemplateWindow.xaml.cs b/ProxySU/V2RayTemplateWindow.xaml.cs index b6be90b..d56f7bd 100644 --- a/ProxySU/V2RayTemplateWindow.xaml.cs +++ b/ProxySU/V2RayTemplateWindow.xaml.cs @@ -501,8 +501,8 @@ namespace ProxySU Guid uuid = Guid.NewGuid(); TextBoxNewUUID.Text = uuid.ToString(); - Random random = new Random(); - int randomServerPort = random.Next(30001, 50000); + //Random random = new Random(); + int randomServerPort = GetRandomPort(); TextBoxServerListenPort.Text = randomServerPort.ToString(); //清除其他选项卡中的选项 UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); @@ -704,8 +704,8 @@ namespace ProxySU uuid = Guid.NewGuid(); TextBoxQuicUUID.Text = uuid.ToString(); - Random random = new Random(); - int randomServerPort = random.Next(30001, 50000); + //Random random = new Random(); + int randomServerPort = GetRandomPort(); TextBoxServerListenPort.Text = randomServerPort.ToString(); //清除其他选项卡中的选项 UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); @@ -727,8 +727,8 @@ namespace ProxySU //产生随机服务端口 private void ButtonServerListenPort_Click(object sender, RoutedEventArgs e) { - Random random = new Random(); - int randomServerPort = random.Next(30001, 50000); + //Random random = new Random(); + int randomServerPort = GetRandomPort(); TextBoxServerListenPort.Text = randomServerPort.ToString(); } //产生随机的Path @@ -742,7 +742,12 @@ namespace ProxySU TextBoxPath.Text = $"/{path}"; //MessageBox.Show(path); } - + //产生随机端口 + private int GetRandomPort() + { + Random random = new Random(); + return random.Next(10001, 60000); + } private void ButtonDomain_Click(object sender, RoutedEventArgs e) { diff --git a/ProxySU/bin/Beta/Beta.zip b/ProxySU/bin/Beta/Beta.zip index b374ba1..65bad2f 100644 Binary files a/ProxySU/bin/Beta/Beta.zip and b/ProxySU/bin/Beta/Beta.zip differ diff --git a/TemplateConfg/ss_obfs_http_web_config.caddyfile b/TemplateConfg/ss_obfs_http_web_config.caddyfile new file mode 100644 index 0000000..b34a1c9 --- /dev/null +++ b/TemplateConfg/ss_obfs_http_web_config.caddyfile @@ -0,0 +1,5 @@ +:8800 { + root * /usr/share/caddy + file_server + ##sites## +} diff --git a/TemplateConfg/ss_server_config.json b/TemplateConfg/ss_server_config.json new file mode 100644 index 0000000..6042112 --- /dev/null +++ b/TemplateConfg/ss_server_config.json @@ -0,0 +1,13 @@ +{ + "server":"", + "server_port":null, + "password":"", + "timeout":300, + "user":"nobody", + "method":"", + "fast_open":false, + "nameserver":"1.0.0.1", + "mode":"tcp_and_udp", + "plugin":"", + "plugin_opts":"" +} \ No newline at end of file