Skip to content

Commit

Permalink
Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
IceMoonHSV authored Apr 22, 2020
1 parent 616038e commit b76fb6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ public static Dictionary<string, object> ArgParser(string[] args)
}
else if (parts[1] == "web")
{
Console.WriteLine("[+] The following porst will be scanned: 21, 23, 25, 80, 443, 8080. \n");
Console.WriteLine("[+] The following ports will be scanned: 21, 23, 25, 80, 443, 8080. \n");
results["ports"] = new object[] { 21, 23, 25, 80, 443, 8080 };
}
else if (parts[1] == "top20")
{
Console.WriteLine("[+] The following porst will be scanned: 21, 22, 23, 25, 53, 80, 110, 111, 135, 139, 143, 443, 445, 993, 995, 1723, 3306, 3389, 5900, 8080. \n");
Console.WriteLine("[+] The following ports will be scanned: 21, 22, 23, 25, 53, 80, 110, 111, 135, 139, 143, 443, 445, 993, 995, 1723, 3306, 3389, 5900, 8080. \n");
results["ports"] = new object[] { 21, 22, 23, 25, 53, 80, 110, 111, 135, 139, 143, 443, 445, 993, 995, 1723, 3306, 3389, 5900, 8080 };
}
else
Expand Down

0 comments on commit b76fb6c

Please sign in to comment.