Skip to content

Commit

Permalink
update20190903
Browse files Browse the repository at this point in the history
update20190903
  • Loading branch information
shack2 committed Sep 1, 2019
1 parent 3a19d6c commit 12aa921
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions SuperSQLInjection/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ public void HttpDownloadFile(string url, string path)
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 void checkUpdate()
Expand Down Expand Up @@ -10581,7 +10581,7 @@ private void tsmi_createPackByURL_Click(object sender, EventArgs e)
this.chk_useSSL.Checked = false;
}
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_port.Text = url.Port.ToString();

Expand Down Expand Up @@ -11204,7 +11204,6 @@ private void loadAddProxyList(Object path)
{
i++;
this.proxy_lvw_proxyList.Invoke(new DelegateAddItemToProxy(addItemsToProxy_lvw), cproxy);
this.proxy_List.Add(cproxy.host + cproxy.port, cproxy);
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions SuperSQLInjection/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
// 方法是按如下所示使用“*”:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2019.09.02")]
[assembly: AssemblyFileVersion("1.2019.09.02")]
[assembly: AssemblyVersion("1.2019.09.03")]
[assembly: AssemblyFileVersion("1.2019.09.03")]

0 comments on commit 12aa921

Please sign in to comment.