update20190903

update20190903
This commit is contained in:
shack2
2019-09-02 00:14:21 +08:00
parent 3a19d6c8ca
commit 12aa92187d
2 changed files with 4 additions and 5 deletions

View File

@@ -286,7 +286,7 @@ namespace SuperSQLInjection
responseStream.Close(); responseStream.Close();
} }
public static int version = 20190902; public static int version = 20190903;
public static string versionURL = "http://www.shack2.org/soft/getNewVersion?ENNAME=SSuperSQLInjection&NO=" + URLEncode.UrlEncode(Tools.getSystemSid()) + "&VERSION=" + version; public static string versionURL = "http://www.shack2.org/soft/getNewVersion?ENNAME=SSuperSQLInjection&NO=" + URLEncode.UrlEncode(Tools.getSystemSid()) + "&VERSION=" + version;
//检查更新 //检查更新
public void checkUpdate() public void checkUpdate()
@@ -10581,7 +10581,7 @@ namespace SuperSQLInjection
this.chk_useSSL.Checked = false; this.chk_useSSL.Checked = false;
} }
Uri url = new Uri(config.request); Uri url = new Uri(config.request);
this.txt_inject_request.Text = Spider.reqestGetTemplate.Replace("{url}", url.PathAndQuery).Replace("{host}", url.Host + ":" + url.Port); this.txt_inject_request.Text = Spider.reqestGetTemplate.Replace("{url}", url.PathAndQuery).Replace("{host}", url.Host);
this.txt_basic_host.Text = url.Host; this.txt_basic_host.Text = url.Host;
this.txt_basic_port.Text = url.Port.ToString(); this.txt_basic_port.Text = url.Port.ToString();
@@ -11204,7 +11204,6 @@ namespace SuperSQLInjection
{ {
i++; i++;
this.proxy_lvw_proxyList.Invoke(new DelegateAddItemToProxy(addItemsToProxy_lvw), cproxy); this.proxy_lvw_proxyList.Invoke(new DelegateAddItemToProxy(addItemsToProxy_lvw), cproxy);
this.proxy_List.Add(cproxy.host + cproxy.port, cproxy);
} }
} }
} }

View File

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值, // 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
// 方法是按如下所示使用“*”: // 方法是按如下所示使用“*”:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2019.09.02")] [assembly: AssemblyVersion("1.2019.09.03")]
[assembly: AssemblyFileVersion("1.2019.09.02")] [assembly: AssemblyFileVersion("1.2019.09.03")]