Skip to main content

Simple brute force in c#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Brute_force
{
    class Program
    {
        static void Main(string[] args)
        {
            String s;
            int i, j = 1, c = 1, asc;
            Console.WriteLine("ENTER A STRING");
                s=Console.ReadLine();
                s = s.ToUpper();
                Console.WriteLine("brute force attacking ");
            for(j=1;j<26;j++)
            {
                for (i = 0; i < s.Length; i++)
                {
                    asc = (int)s[i];
                    if (asc != 32)
                    {
                        asc = (asc + j);
                        if (asc > 90)
                            asc -= 26;
                    }
                     Console.Write("{0}", (char)asc);
               
                }
                Console.WriteLine();
            }
        Console.ReadKey();
        }
       


    }
}

Comments

Popular posts from this blog

unix commands