Name exploit
Turn any name that contains one of the following letters: a c e o in the same looking name.
Example:
Works with the latest teamspeak version and some online forums.
Download:
http://ge.tt/3lshWFH2/v/0
Password: r4p3
Virustotal: https://www.virustotal.com/nl/file/...5896397add33506c46fc2c39/analysis/1432815170/
Source code:
Turn any name that contains one of the following letters: a c e o in the same looking name.
Example:
Works with the latest teamspeak version and some online forums.
Download:
http://ge.tt/3lshWFH2/v/0
Password: r4p3
Virustotal: https://www.virustotal.com/nl/file/...5896397add33506c46fc2c39/analysis/1432815170/
Source code:
Code:
Dim name = TextBox1.Text
If InStr(name, "a") > 0 Then
Dim exploited_name As String = Replace(name, "a", "а")
TextBox2.Text = exploited_name
ElseIf InStr(name, "c") Then
Dim exploited_name As String = Replace(name, "c", "с")
TextBox2.Text = exploited_name
ElseIf InStr(name, "e") Then
Dim exploited_name As String = Replace(name, "e", "е")
TextBox2.Text = exploited_name
ElseIf InStr(name, "o") Then
Dim exploited_name As String = Replace(name, "o", "о")
TextBox2.Text = exploited_name
Else
MessageBox.Show("Name can't be exploited")
End If
Last edited: