ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!

Jump to content



Photo

Asking for help, new tool (simple one)


  • This topic is locked This topic is locked
Asking for help, new tool (simple one)

#1

CHAO
CHAO
    Offline
    408
    Rep
    4486
    Likes

    Veteran

Posts: 2168
Threads: 563
Joined: May 22, 2017
Credits: 0

Six years registered
#1

Hi guys, i'm asking help from little coders, I mean it's not sothing pro at all. 

It's about Wordlist generator. 

It's good with the lists, but I want to make %user% etc and I don't know how to, can you please guys, gimme some advices? 

 

Many thanks 


  • 0

22.gif
22.gif
22.gif


#2

Bix3
Bix3
    Offline
    19
    Rep
    21
    Likes

    Junkie

Posts: 329
Threads: 19
Joined: Jan 28, 2018
Credits: 0

Six years registered
#2

can you explain further?


  • 0

Bix3


#3

CHAO
CHAO
    Offline
    408
    Rep
    4486
    Likes

    Veteran

Posts: 2168
Threads: 563
Joined: May 22, 2017
Credits: 0

Six years registered
#3

can you explain further?

TheCaliphate WordList CREATOR v1

Check sign there is the lin of the program. 

currently it only do userlist + passlist but it's impossible to set passwords as %user% it's not recognized by the tool. 

 

eg 1 (happens now): 

 

name :

thecaliphate 

pass : 

nulledisop

 

Results : 

 

thecaliphate:nulledisop

 

e.g 2 (the problem) : 

 

name: 

thecaliphate

pass :

%user% for example to give the username back

 

Results : 

thecaliphate:%user% and not thecal:thecal

 

Yousse bra ? 


  • 0

22.gif
22.gif
22.gif


#4

Bix3
Bix3
    Offline
    19
    Rep
    21
    Likes

    Junkie

Posts: 329
Threads: 19
Joined: Jan 28, 2018
Credits: 0

Six years registered
#4

TheCaliphate WordList CREATOR v1

Check sign there is the lin of the program. 

currently it only do userlist + passlist but it's impossible to set passwords as %user% it's not recognized by the tool. 

 

eg 1 (happens now): 

 

name :

thecaliphate 

pass : 

nulledisop

 

Results : 

 

thecaliphate:nulledisop

 

e.g 2 (the problem) : 

 

name: 

thecaliphate

pass :

%user% for example to give the username back

 

Results : 

thecaliphate:%user% and not thecal:thecal

 

Yousse bra ? 

i wiill create an simple test for that in one hour, you can see then


  • 0

Bix3


#5

Bix3
Bix3
    Offline
    19
    Rep
    21
    Likes

    Junkie

Posts: 329
Threads: 19
Joined: Jan 28, 2018
Credits: 0

Six years registered
#5
       Dim list1 As List(Of String)
        Dim num1 As Integer = 1
        Dim list2 As List(Of String)
        Dim num2 As Integer = 1

        Console.WriteLine("Load list 1")


        Dim openfiledialog1 As New OpenFileDialog
        openfiledialog1.Filter = ".txt | *txt"
        openfiledialog1.ShowDialog()
        If openfiledialog1.ShowDialog = DialogResult.OK Then

            list1.AddRange(File.ReadAllLines(openfiledialog1.FileName.ToString))

        End If


        Console.WriteLine("Load list 2")

        openfiledialog1.ShowDialog()
        If openfiledialog1.ShowDialog = DialogResult.OK Then

            list2.AddRange(File.ReadAllLines(openfiledialog1.FileName.ToString))

        End If






        Dim started As Boolean = True


        Do While started = True

            Try

                Dim str1 As String = list1(num1).ToString

                Dim str2 As String = list2(num2).ToString


                num1 += 1

                num2 += 1


                Dim output As String = str1 & ":" & str2

                Console.WriteLine(output)

            Catch ex As IndexOutOfRangeException
                Console.WriteLine("Finished!")
                started = False
            End Try

        Loop

  • 0

Bix3



 Users browsing this thread: