Skip to content

Commit 034ab94

Browse files
committed
Login Panel (BUG Exploit)
1 parent 7dba7e5 commit 034ab94

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

KeyLogger/KeyLogger.vbproj

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,20 @@
1212
<FileAlignment>512</FileAlignment>
1313
<MyType>WindowsForms</MyType>
1414
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
15-
<PublishUrl>https://github.com/PSNAppz/KeyLogger.git/</PublishUrl>
15+
<IsWebBootstrapper>false</IsWebBootstrapper>
16+
<PublishUrl>C:\Users\User\Desktop\SOurce\</PublishUrl>
1617
<Install>true</Install>
17-
<InstallFrom>Web</InstallFrom>
18+
<InstallFrom>Disk</InstallFrom>
1819
<UpdateEnabled>false</UpdateEnabled>
1920
<UpdateMode>Foreground</UpdateMode>
2021
<UpdateInterval>7</UpdateInterval>
2122
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
2223
<UpdatePeriodically>false</UpdatePeriodically>
2324
<UpdateRequired>false</UpdateRequired>
2425
<MapFileExtensions>true</MapFileExtensions>
25-
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
2626
<WebPage>publish.htm</WebPage>
27-
<ApplicationRevision>0</ApplicationRevision>
27+
<ApplicationRevision>1</ApplicationRevision>
2828
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
29-
<IsWebBootstrapper>true</IsWebBootstrapper>
3029
<UseApplicationTrust>false</UseApplicationTrust>
3130
<PublishWizardCompleted>true</PublishWizardCompleted>
3231
<BootstrapperEnabled>true</BootstrapperEnabled>

KeyLogger/Menu.vb

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,12 @@
4141
End Sub
4242

4343
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
44-
If TextBox1.Text = My.Settings.USER And TextBox2.Text = My.Settings.PASSWORD Then
45-
Errorlbl.Text = "Login Succesful!"
46-
controlpanel.Show()
47-
Me.Hide()
44+
If My.Settings.USER <> vbNullString Then
45+
If TextBox1.Text = My.Settings.USER And TextBox2.Text = My.Settings.PASSWORD Then
46+
Errorlbl.Text = "Login Succesful!"
47+
controlpanel.Show()
48+
Me.Hide()
49+
End If
4850
End If
4951
End Sub
5052

0 commit comments

Comments
 (0)