OP 30 April, 2023 - 10:37 PM
Hello guys i'm now try to learn c# when i try to do path brute force it don't work as i want :
![[Image: BGtPWQT]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fibb.co%2FBGtPWQT)
![[Image: r.jpg]](https://i.ibb.co/RN9SrsQ/r.jpg)
and this my code :
plz if anyone can told my where my issue is
![[Image: r.jpg]](https://i.ibb.co/RN9SrsQ/r.jpg)
and this my code :
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net;
using System.IO;
using System.Runtime.Remoting.Messaging;
namespace ConsoleApp2
{
internal class Program
{
static void Main(string[] args)
{
Console.Write("~#Enter wordlist here Plz >> ");
string wordlist = Console.ReadLine();
var data = File.ReadAllText(wordlist);
//Console.WriteLine(data);
for (int i = 0; i < data.Length; i++)
{
Console.Write($"www.google.com/{data[i]}\n");
}
}
}
}
plz if anyone can told my where my issue is