This commit is contained in:
DAProgs
2026-02-19 17:33:28 -05:00
parent e1a90ee628
commit 5c61311b93

View File

@@ -139,9 +139,9 @@ namespace SHA1Hash
private void btnCreateReport_Click(object sender, EventArgs e) private void btnCreateReport_Click(object sender, EventArgs e)
{ {
using (StreamWriter SW = new StreamWriter("userReport.txt", false)) using (StreamWriter SW = new StreamWriter("userReport-tci.txt", false))
{ {
using (StreamReader SR = new StreamReader("passList.csv")) using (StreamReader SR = new StreamReader("passList-tci.csv"))
{ {
string passThing = SR.ReadToEnd(); string passThing = SR.ReadToEnd();
string[] passList = passThing.Split("\r\n"); string[] passList = passThing.Split("\r\n");
@@ -161,7 +161,8 @@ namespace SHA1Hash
txtResult.Text = $"{cCount}/{tCount}"; txtResult.Text = $"{cCount}/{tCount}";
lblStatus.Text = "web request..."; lblStatus.Text = "web request...";
Application.DoEvents(); Application.DoEvents();
string returnString = Task.Run(async () => await SendGetRequestWithShaAsync("https://www.daprogs.com/pwn/indexapi.php", hash)).GetAwaiter().GetResult(); string returnString = Task.Run(async () => await SendGetRequestWithShaAsync("https://www.home.daprogs.net/pwn/indexapi.php", hash)).GetAwaiter().GetResult();
//string returnString = Task.Run(async () => await SendGetRequestWithShaAsync("https://www.daprogs.com/pwn/indexapi.php", hash)).GetAwaiter().GetResult();
lblStatus.Text = "response..."; lblStatus.Text = "response...";
Application.DoEvents(); Application.DoEvents();
if (returnString.Contains("BAD")) if (returnString.Contains("BAD"))