Code Newbie
News     Forums     Search     Members     Sign Up    

My Code Newbie
Username

Password

Articles/Snippets
ASP Classic
ASP.NET
C
C#
C++
HTML / CSS
Java
Javascript
Linux / BSD
Perl
PHP
Python
Ruby
SQL
VB 6
VB.NET

C.N. Friends
  Planet Rome

Link to Us!
Code Newbie
  Code Newbie
    forums

Go Back   Code Forums > Code Newbie > Lounge

Reply
 
LinkBack Thread Tools Display Modes
Old 01-26-2005, 07:03 PM   #1 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,505
sde is on a distinguished road
back to Online Banking again

I posted this before and since they seemed like they were truely interested in fixing it, i dropped it, but they have not.

http://firstregional.com

Notice this personal and business banking login page is not secure. Any other bank I go to has their online banking login on a secure page.

Diana Jenkins, the so called Network Administrator doesn't return my emails anymore. She must truely have no clue as to the possibility of someone on the network of their clients 'sniffing' out someone's login information. Hopfully none of their customers login on a school or work network with a nosey admin.

First Regional bank is located in southern california. Is there any internet banking laws that regulate the privacy of online banking? Is there an authority who you can report this to? Anyone have any ideas on how to fix this?

I'm thinking the best way may just be to post on every forum I know and then send them an email so they know how many people know the security holes that they knowingly ignore and fail to fix.

What should I do?
__________________
Mike
sde is offline   Reply With Quote
Old 01-27-2005, 07:47 AM   #2 (permalink)
Admin
$_['Your_Mom'];
 
Admin's Avatar
 
Join Date: May 2002
Location: Santee
Posts: 627
Admin is on a distinguished road
The request goes to a secure page, what is the problem?
__________________


Urban Clothing
Admin is offline   Reply With Quote
Old 01-27-2005, 08:13 AM   #3 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,505
sde is on a distinguished road
u sound like them

ok, well your username and password are sent BEFORE you are on a secure page, .. so sure, all my bank info are secure once i'm logged in, .. but if someone sniffs out my username and password, then they can get into my account anyway.
__________________
Mike
sde is offline   Reply With Quote
Old 01-27-2005, 11:25 AM   #4 (permalink)
Admin
$_['Your_Mom'];
 
Admin's Avatar
 
Join Date: May 2002
Location: Santee
Posts: 627
Admin is on a distinguished road
but it is sent to the secure page, perhaps i am missing something or i am confused?
__________________


Urban Clothing
Admin is offline   Reply With Quote
Old 01-27-2005, 11:34 AM   #5 (permalink)
technobard
Centurion Nova Prime
 
technobard's Avatar
 
Join Date: May 2002
Location: Oak Park, IL (USA)
Posts: 287
technobard is on a distinguished road
I think I get it. BankOne does the same thing. There is a way to go straight to an HTTPS form, before entering the user/pass, but I agree I don't think there's a problem. When you type your user/pass, the info isn't sent until you POST. The form action (<form name="loginForm" method="POST" action="https://global1.onlinebank.com/cgi-forte/forteisapi.dll?ServiceName=WebTeller&TemplateName= WebTeller.htm&BankTag=firstreg0101" target="_top">) is to a secure URL. So when you actually transmit the info, you're fine. Right?

Having said that, I'm still more comfortable being in an HTTPS page to start with. On the link you provided, go to "Home Banking" on the menu, and select "Access Your Account". It will take you to an HTTPS form. I do the same thing with my bank.
__________________
It takes 2 points to draw a straight line, but at least 3 points to draw a conclusion.
technobard is offline   Reply With Quote
Old 01-27-2005, 11:56 AM   #6 (permalink)
Belisarius
Java fanboy
 
Belisarius's Avatar
 
Join Date: Aug 2003
Posts: 1,166
Belisarius is on a distinguished road
Fire up Ethereal and see if you can sniff your password as you login.
__________________
GitS
Belisarius is offline   Reply With Quote
Old 01-27-2005, 12:29 PM   #7 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,505
sde is on a distinguished road
err .. so your saying that post data does not get sent until the secure connection is already made?
__________________
Mike
sde is offline   Reply With Quote
Old 01-27-2005, 01:11 PM   #8 (permalink)
Belisarius
Java fanboy
 
Belisarius's Avatar
 
Join Date: Aug 2003
Posts: 1,166
Belisarius is on a distinguished road
It sorta makes sense that when making a request to an HTTPS page, the encryption process will be done first, then the data will be sent.
__________________
GitS
Belisarius is offline   Reply With Quote
Old 01-27-2005, 01:59 PM   #9 (permalink)
Admin
$_['Your_Mom'];
 
Admin's Avatar
 
Join Date: May 2002
Location: Santee
Posts: 627
Admin is on a distinguished road
Quote:
Originally Posted by Belisarius
It sorta makes sense that when making a request to an HTTPS page, the encryption process will be done first, then the data will be sent.
That is my understanding of the process.

The only reason to put someone on a secure page as they fill out information is to make them feel good.
__________________


Urban Clothing
Admin is offline   Reply With Quote
Old 01-27-2005, 03:58 PM   #10 (permalink)
idx
Senior Grasshopper
 
idx's Avatar
 
Join Date: Jun 2003
Location: FL
Posts: 317
idx is on a distinguished road
For general paranoia I would put the entire thing in HTTPS (maybe with a user-friendly note stating that the site is secure and to look for the look before proceeding/etc..), but a HTTPS post should be ok.

Although I can't get the local newspaper to return my emails either. They have a section where you can submit your classified ads, but they aren't securing your CC info..

-r
idx is offline   Reply With Quote
Old 01-28-2005, 06:41 PM   #11 (permalink)
technobard
Centurion Nova Prime
 
technobard's Avatar
 
Join Date: May 2002
Location: Oak Park, IL (USA)
Posts: 287
technobard is on a distinguished road
For those wanting a more technical explanation of the whole HTTPS (SSL) thing, check out the following link: SSL Encryption Introduction . The best part is just over half way down the page. It basically talks about the handshake that takes place between the browser and the server when initiating an HTTPS connection.

As I think about it, I guess the other thing to remember is that HTTP and HTTPS are stateless. You can store a session id to fudge your way around it, but it's still stateless. So, even if the page you're on is encrypted, the page you're POSTING to is an independent action that makes (or re-establishes by reusing a session id) a connection.
__________________
It takes 2 points to draw a straight line, but at least 3 points to draw a conclusion.
technobard is offline   Reply With Quote
Reply

Bookmarks

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
online bank login not secure sde Lounge 2 12-06-2004 03:08 PM
A request from Ali regarding Back OS processes redhead Platform/API C++ 0 08-11-2004 01:48 AM
Creative Player Actions in FPS Online Video Games sde Lounge 2 03-20-2003 07:20 AM
Linux Newbie Online Ilya020 Linux / BSD / OS X 2 01-07-2003 09:49 AM
php/mySQL online booking calender source. redhead PHP 3 07-25-2002 03:44 PM


All times are GMT -8. The time now is 03:24 PM.


Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.0.0 RC8





Copyright © 2000-2008, Milano Interactive
Web Hosting provided by Portal 360 Web Hosting