202602.1
This commit is contained in:
@@ -139,9 +139,9 @@ namespace SHA1Hash
|
||||
|
||||
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[] passList = passThing.Split("\r\n");
|
||||
@@ -161,7 +161,8 @@ namespace SHA1Hash
|
||||
txtResult.Text = $"{cCount}/{tCount}";
|
||||
lblStatus.Text = "web request...";
|
||||
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...";
|
||||
Application.DoEvents();
|
||||
if (returnString.Contains("BAD"))
|
||||
|
||||
Reference in New Issue
Block a user