📄 dunpwd.frm
字号:
VERSION 5.00
Begin VB.Form Form1
BorderStyle = 3 'Fixed Dialog
Caption = "DUN Password Cracker Beta 1.0"
ClientHeight = 2820
ClientLeft = 45
ClientTop = 330
ClientWidth = 4350
Icon = "DunPwd.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2820
ScaleWidth = 4350
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
Caption = "DUN Info"
BeginProperty Font
Name = "Fixedsys"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1815
Left = 120
TabIndex = 3
Top = 480
Width = 4095
Begin VB.ListBox List1
Appearance = 0 'Flat
Height = 1290
Left = 120
TabIndex = 7
Top = 360
Width = 1215
End
Begin VB.TextBox TxtUserName
Appearance = 0 'Flat
Height = 270
Left = 2640
Locked = -1 'True
TabIndex = 6
Top = 840
Width = 1335
End
Begin VB.TextBox TxtPassWord
Appearance = 0 'Flat
Height = 270
Left = 2640
Locked = -1 'True
TabIndex = 5
Top = 1320
Width = 1335
End
Begin VB.TextBox TxtDialUp
Appearance = 0 'Flat
Height = 270
Left = 2640
Locked = -1 'True
TabIndex = 4
Top = 360
Width = 1335
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "UserName:"
BeginProperty Font
Name = "Fixedsys"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 1560
TabIndex = 10
Top = 840
Width = 1080
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "PassWord:"
BeginProperty Font
Name = "Fixedsys"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 1560
TabIndex = 9
Top = 1320
Width = 1080
End
Begin VB.Label Label3
AutoSize = -1 'True
Caption = " Dial-up:"
BeginProperty Font
Name = "Fixedsys"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 1560
TabIndex = 8
Top = 360
Width = 1080
End
End
Begin VB.Label Label8
AutoSize = -1 'True
Caption = "ScentLily@263.net"
Height = 180
Left = 2640
TabIndex = 12
ToolTipText = "Pls Email me!"
Top = 2520
Width = 1530
End
Begin VB.Label Label6
AutoSize = -1 'True
Caption = "Copyright by Scent Lily"
Height = 180
Left = 240
TabIndex = 11
ToolTipText = "I wish you like it!"
Top = 2520
Width = 2070
End
Begin VB.Label Label4
AutoSize = -1 'True
Caption = "V1.0"
BeginProperty Font
Name = "Arial Rounded MT Bold"
Size = 10.5
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 3360
TabIndex = 2
Top = 195
Width = 450
End
Begin VB.Label Label5
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "DUN Password Cracker"
BeginProperty Font
Name = "Arial"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 285
Left = 480
TabIndex = 0
Top = 120
Width = 2715
End
Begin VB.Label Label7
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "DUN Password Cracker"
BeginProperty Font
Name = "Arial"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 285
Left = 540
TabIndex = 1
Top = 165
Width = 2715
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
Dim s As Long, l As Long, ln As Long, a As String
ReDim r(255) As RASENTRYNAME95
r(0).dwSize = 264
s = 256 * r(0).dwSize
l = RasEnumEntries(vbNullString, vbNullString, r(0), s, ln)
For l = 0 To ln - 1
a = StrConv(r(l).szEntryName(), vbUnicode)
List1.AddItem Left(a, InStr(a, Chr(0)) - 1)
Next
List1.ListIndex = -1
If List1.ListCount = 0 Then
TxtDialUp.Text = "No Cache PWD!"
TxtUserName.Text = "N/A"
TxtPassWord.Text = "N/A"
End If
End Sub
Private Sub List1_Click()
TxtDialUp.Text = List1.Text
GetPasswords
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -