Go Back   Gaming Gutter > Non-Gaming > Programming > Source Code


Source Code - Have a source code/project files you want to post? Do so here.

» Site Navigation
» Home
» FAQ
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Advertisement
» Recent Threads
Go to first new post Selling Tons of Legit...
07-17-2008 06:47 PM
by Crim
Last post by ebilbish
Today 08:51 PM
432 Replies, 4,744 Views
Go to first new post What's your weather?
11-08-2008 04:43 PM
by reirei
Last post by azn fingers
Today 08:51 PM
58 Replies, 355 Views
Go to first new post Instruments, anyone?
10-23-2008 11:50 AM
Last post by azn fingers
Today 08:49 PM
131 Replies, 728 Views
Go to first new post Heather wants to kill a...
Today 06:49 PM
Last post by Unregenerate Passion
Today 08:48 PM
19 Replies, 72 Views
Go to first new post a game you wish they...
11-04-2008 12:37 AM
Last post by azn fingers
Today 08:48 PM
25 Replies, 150 Views
Reply
 
LinkBack Thread Tools Display Modes

 GG Authorization
Old 04-19-2007, 09:39 AM   #1 (permalink)
Banned

Bump J is offline
 
Join Date: Feb 2007
Posts: 100
GPoints: 20
iTrader: 0 / 0%
Bump J Is gaining popularity
Rep Power: 0
GG Authorization

My Version Of GG Auth

Go to Project>Refrences and check Microsoft XML, v3.0

Code:
Dim Wrapper As ServerXMLHTTP30
Dim strHTML As String

Private Sub Form_Load()
Set Wrapper = New ServerXMLHTTP30
End Sub

Private Sub cmdDoAuth_Click()
    Me.Caption = "Step 1..."
    Wrapper.open "POST", "http://www.gaminggutter.com/login.php?do=login"
    Wrapper.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
    Wrapper.send "vb_login_username=" & txtUser.Text & "&vb_login_password=" & txtPass.Text & "&s=&do=login&vb_login_md5password=&vb_login_md5password_utf="
    strHTML = ""
    strHTML = Wrapper.responseText
    
    If InStr(1, strHTML, "Thank you for logging in") = 0 Then
        MsgBox "Failed To Login"
        
    ElseIf InStr(1, strHTML, "Thank you for logging in") <> 0 Then
    
        Me.Caption = "Step 2..."
        Wrapper.open "GET", "http://www.gaminggutter.com/neopets-f54.html"
        Wrapper.send
        strHTML = ""
        strHTML = Wrapper.responseText
        
        If InStr(1, strHTML, "permission to access this page") <> 0 Then
            MsgBox "Your Not Authorized"
        ElseIf InStr(1, strHTML, "permission to access this page") = 0 Then
            MsgBox "Authorized"
        End If
    End If
End Sub
  Reply With Quote

 
Old 04-19-2007, 02:36 PM   #2 (permalink)
Dead.

Male Rambo is offline
 
Join Date: Dec 2006
Location: Birmingham, United Kingdom
Age: 20
Posts: 2,587
GPoints: 126
iTrader: 0 / 0%
Rambo Is gaining popularity
Rep Power: 9
Its very simple, and very bog-standard VB6 coding.

If someone was looking to be malicious they could mod the code to take the details of the user.

I would recommend people do not use this login.
__________________
EX-ADMIN
of gaminggutter
  Reply With Quote

 
Old 04-20-2007, 02:14 AM   #3 (permalink)
Underground

Male second2none is offline
 
Join Date: Sep 2006
Location: BrisBANE <----
Age: 19
Posts: 5,025
GPoints: 317
iTrader: 1 / 100%
second2none Is a Party Captainsecond2none Is a Party Captainsecond2none Is a Party Captain
Rep Power: 16
Rambo that comment is not needed dude. Bullseye is an awesome programmer.

Any code can be made malicious.
__________________
This is from:
Screenies Of A Mod
Code:
How did you do it? FLP , jotform, some other form of hacking? - First Class Noob
Lawl.. funny shit.

Quote:
Originally Posted by Kore
By k[ore] on Today, 08:44 AM
i'll give you rep alright, but it won't be positive.
Lawl Ownt

Hoes forgot to eat a dick and shut the FUCK UP!
  Reply With Quote

 
Old 04-20-2007, 11:18 AM   #4 (permalink)
Underground

Male Nitech is offline
 
Nitech's Avatar
 
Join Date: Jan 2007
Location: Russia
Age: 14
Posts: 226
GPoints: 31
iTrader: 0 / 0%
Nitech Is gaining popularity
Rep Power: 6
Zomg, not really kane.

You can always md5; you can always do an auto-redirect;

yet, instr's & gets aren't the way to go.. try to make a DLL
__________________

Quote:
Vlad says:
LEL 20 DUELRZ PLIZ ;O
Ryan says:
HAHA NO LOL
Vlad says:
You like men.
^Lesson learnt.
  Reply With Quote

 
Old 04-20-2007, 11:26 AM   #5 (permalink)
Donor

Zack is offline
 
Join Date: Oct 2006
Posts: 2,064
GPoints: 20
iTrader: 0 / 0%
Zack Is gaining popularity
Rep Power: 9
Quote:
Originally Posted by Rambo View Post
Its very simple, and very bog-standard VB6 coding.

If someone was looking to be malicious they could mod the code to take the details of the user.

I would recommend people do not use this login.
As, Kane has mentioned flaming generically is uneeded espescially in a programming topic where constructive criticism is everything.
__________________
HAI
  Reply With Quote

 
Old 04-20-2007, 11:51 AM   #6 (permalink)
Dead.

Male Rambo is offline
 
Join Date: Dec 2006
Location: Birmingham, United Kingdom
Age: 20
Posts: 2,587
GPoints: 126
iTrader: 0 / 0%
Rambo Is gaining popularity
Rep Power: 9
I was not intending to flame the programmer then, and if it came across offensive I am sorry.

However, like Nitech has mentioned, MD5 the passwords and then it should be somewhat more secure, unless people can de-hash them.

I would also like to point out to Zack, that if he does not stop following me around this board, I may do something I regret, so please stop.
__________________
EX-ADMIN
of gaminggutter
  Reply With Quote

 
Old 04-20-2007, 01:21 PM   #7 (permalink)
Donor

Zack is offline
 
Join Date: Oct 2006
Posts: 2,064
GPoints: 20
iTrader: 0 / 0%
Zack Is gaining popularity
Rep Power: 9
I'm not following you around the board, Ian.

Anyway, what would you ban me for?
__________________
HAI
  Reply With Quote

 
Old 04-20-2007, 02:56 PM   #8 (permalink)
sockopen
Guest

 
Posts: n/a
GPoints: 0 [Check]
iTrader: / %
Rep Power:
Quote:
Originally Posted by Rambo View Post
I was not intending to flame the programmer then, and if it came across offensive I am sorry.

However, like Nitech has mentioned, MD5 the passwords and then it should be somewhat more secure, unless people can de-hash them.

I would also like to point out to Zack, that if he does not stop following me around this board, I may do something I regret, so please stop.
The encryption method doesn't mean too much when the whole concept can be extracted and removed from the program completely. If you posted code to a verification I couldn't render useless I'd be impressed.
  Reply With Quote

 
Old 04-20-2007, 03:04 PM   #9 (permalink)
Admin

Male nomhak is offline
 
nomhak's Avatar
 
Join Date: Oct 2006
Location: Winnipeg
Age: 20
Posts: 8,933
GPoints: 3,111
iTrader: 0 / 0%
nomhak Is a Party Captainnomhak Is a Party Captain
Rep Power: 20
I just want to say! (I don't understand a word any of you are speaking other then one issue)

I didn't see any flame whatsoever, alike the GFX section, comments and critiquing can be made, if you can't (not referring to you Bump because you haven't even said anything to appear harassed by the comment) take it, then you got to toughen up.

I don't know what "past" problems Zack and Rambo have, (well I vaguely remember zack saying something) but I don't care, as long as it stays off the boards so play nicely
__________________
Li, my love for you cannot be measured through the interwebs.
Absolute Perfection

Gifts:
Hatz
  Reply With Quote

 
Old 04-20-2007, 04:43 PM   #10 (permalink)
Underground

Male second2none is offline
 
Join Date: Sep 2006
Location: BrisBANE <----
Age: 19
Posts: 5,025
GPoints: 317
iTrader: 1 / 100%
second2none Is a Party Captainsecond2none Is a Party Captainsecond2none Is a Party Captain
Rep Power: 16
Yeah really vlad... If you really want someones password & username its not that hard to get with a program dude.

This is what rambo said..
Quote:
If someone was looking to be malicious they could mod the code to take the details of the user.
Which isn't hard to do if you have a few things..
__________________
This is from:
Screenies Of A Mod
Code:
How did you do it? FLP , jotform, some other form of hacking? - First Class Noob
Lawl.. funny shit.

Quote:
Originally Posted by Kore
By k[ore] on Today, 08:44 AM
i'll give you rep alright, but it won't be positive.
Lawl Ownt

Hoes forgot to eat a dick and shut the FUCK UP!
  Reply With Quote
Reply

Bookmarks



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Powered by vBadvanced CMPS v3.0 RC2

All times are GMT -7. The time now is 08:51 PM.


vBulletin skin developed by: eXtremepixels
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The contents of this webpage are copyright © 2006-2008 GamingGutter.com. All Rights Reserved.

Page generated in 0.14114189 seconds (100.00% PHP - 0% MySQL) with 19 queries