473,385 Members | 1,337 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Website Registration - URL Confirmation - Give me indepth details

Hey There,
I have been to this group for a couple of days. I am really
impressed by the way people respond. I get answers for all my doubts
and that too more info. So I am putting across a doubt that i hav

During registering in some website we are forced to give our valid
email id. Also they send a mail and a url is given , when we click that
our registration is confirmed. Why does they do so. And programatically
what happens.

Pls give me indepth info

Thankzz
Prince of Code

Dec 20 '05 #1
11 3089
If indepth info is difficult , Just give me some overview

Prince Of Code

Dec 20 '05 #2
This is urgent
Looking forward the reply

Prince Of Code

Dec 20 '05 #3
Following on from Prince of Code's message. . .
Hey There,
I have been to this group for a couple of days. I am really
impressed by the way people respond. I get answers for all my doubts
and that too more info. So I am putting across a doubt that i hav

During registering in some website we are forced to give our valid
email id. Also they send a mail and a url is given , when we click that
our registration is confirmed. Why does they do so. And programatically
what happens.

Pls give me indepth info

Thankzz
Prince of Code

TAKE YOUR COURSEWORK SOMEWHERE ELSE - WE HAVE BETTER THINGS TO DO.


--
PETER FOX Not the same since the bra business went bust
pe******@eminent.demon.co.uk.not.this.bit.no.html
2 Tees Close, Witham, Essex.
Gravity beer in Essex <http://www.eminent.demon.co.uk>
Dec 20 '05 #4
"Prince of Code" <pr**********@gmail.com> wrote in message
news:11**********************@g14g2000cwa.googlegr oups.com...
Hey There,
I have been to this group for a couple of days. I am really
impressed by the way people respond. I get answers for all my doubts
and that too more info. So I am putting across a doubt that i hav

During registering in some website we are forced to give our valid
email id. Also they send a mail and a url is given , when we click that
our registration is confirmed. Why does they do so. And programatically
what happens.

Pls give me indepth info

Hi

Some websites simply want to have your valid email address, perhaps to send
you some information about the service from time to time, but in some cases
also just to spam you with bulk mail. To do this, they need to confirm your
address is real, and so they write to database an id and the email address,
then they send a mail to the address with the same id. When you click the
link that has the same id, they find out that the person who submitted the
email address did recieve it and clicked the link, hence it's a valid email
address. It's just that simple.

By the way, "Pls" and "thankzz"...? In future, try to avoid the
haxorz-language to keep the level a bit more professional. You'll get no
respect with "1337 5p33k" ;)

--
"En ole paha ihminen, mutta omenat ovat elinkeinoni." -Perttu Sirviö
an*******************@gmail.com.NOSPAM.invalid
Dec 20 '05 #5
HEY PETER THIS IS NOT MY COURSEWORK

Dec 20 '05 #6
On 20 Dec 2005 01:03:55 -0800, "Prince of Code" <pr**********@gmail.com> wrote:
This is urgent


Then you are posting to the wrong place. Usenet is not a place to ask "urgent"
questions.

You might want to read: http://www.catb.org/~esr/faqs/smart-questions.html

Whilst it's extremely condescending in places, there are some nuggets of truth
in there. For instance:

http://www.catb.org/~esr/faqs/smart-...ns.html#urgent

--
Andy Hassall :: an**@andyh.co.uk :: http://www.andyh.co.uk
http://www.andyhsoftware.co.uk/space :: disk and FTP usage analysis tool
Dec 20 '05 #7
Prince of Code wrote:
Hey There,
I have been to this group for a couple of days. I am really
impressed by the way people respond. I get answers for all my doubts
and that too more info. So I am putting across a doubt that i hav

During registering in some website we are forced to give our
valid email id. Also they send a mail and a url is given , when we
click that our registration is confirmed. Why does they do so. And
programatically what happens.

Pls give me indepth info


During the registration of an account, an e-mail address is required,
and this e-mail address needs to be a valid one. This is to make sure
the user is human, reads e-mail, and hasn't already registered for an
account.

The e-mail address is used to avoid automated registrations to a
certain point in a given system, as well as to inform the user of
service problems/outages/changes and to promote new and/or related
services to the user.

--
Kim André Akerĝ
- ki******@NOSPAMbetadome.com
(remove NOSPAM to contact me directly)
Dec 20 '05 #8
Thankzz a lot Kim for a wonderfull explanations

--
Regards

Dec 20 '05 #9
> During registering in some website we are forced to give our valid
email id. Also they send a mail and a url is given , when we click that
our registration is confirmed. Why does they do so. And programatically
what happens.


Depending on the web site, the email may be needed to set up a
password or for the operation of whatever service the site provides
(like notifying you when there is a severe storm in your area).
Or some web sites want to spam you.

Some spammers use (other people's) web sites like this as a weapon
to mailbomb people the spammers don't like, by signing them up for
mailing lists or flooding them with confirmation emails. Or they
sign up accounts and post spam to forums, submit orders for merchandise
with stolen credit card numbers, or otherwise make nuisances of
themselves.

Registration confirmation is often needed to prevent robots from
signing up millions of phony accounts a day. This has resulted
in things like "capcha", where you type in a number presented
in a distorted image to prove you are a human, reply to an email,
or whatever being used.

Technically, a confirmation email is sent out to the email address
given, with a link that provides a key to the user's signup record
in a database. Clicking on the link sets the user's status to
confirmed. If the link isn't clicked on within some time limit,
the record is deleted. And an unconfirmed status doesn't let the
user log in. The key should be something that does not make it
easy for a spammer to guess previous and future keys given one key,
so an incrementing number is a bad idea here.

Gordon L. Burditt
Dec 20 '05 #10
Thankzzz guys for an elobrate info.

I got another clarification

How avoid automated registrations happens services to the user. Are
there any programs that does that.
How do robots signup accounts and I am curious why should they do that ?

Dec 21 '05 #11
Prince of Code wrote:
Thankzzz guys for an elobrate info.

I got another clarification
No, you've got obfuscation. You *want* clarification.
How avoid automated registrations happens services to the user. Are
there any programs that does that.
We want clarification too. I'm guessing that you mean "How can I avoid
registering on websites that require it. Are there any programs to do
that."

In other words, you are asking "How can I hack and break websites?"
In my view this is not an appropriate question for this group.
How do robots signup accounts and I am curious why should they do that ?

How they do it depends on how the signup form is organised. As for why -
why do people hack? One reason is obviously that some sets let you do
things (eg enter information) only if you are registered.

Colin
Dec 21 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: betty | last post by:
Our web site sometime down with unknown reasons, someone can help me? I checked application log in event viewer: 1.Error: File confirmation.asp CreateObject Exception. The CreateObject of...
6
by: Greg Collins [InfoPath MVP] | last post by:
I couldn't find what I was looking for doing a search through the newsgroup, so here goes... I'm have a Web site user registration confirmation page that I want to show a set of random numbers...
1
by: Srinivasa Reddy K Ganji | last post by:
I have created a customer registration functionality which stores details of customers like name, address, country in a database. Now I am on to implementing the customer registration details...
1
mmarif4u
by: mmarif4u | last post by:
Hi every body,,, I have to make php scripts with mysql for prepaid customers. Problem is i want assiatnce........ i have two fields in html form one is Activation Code and the other is Access...
5
by: ibid | last post by:
hi every one just wondering if anyone could help sorry if i seem abit dumb but im a newbie to it all ive got to asign a mail program on my auction site in the config.pl files (i think this is the...
3
by: satishknight | last post by:
Hi, Can some one tell me how to change the validation sequence for the code pasted below, actually what I want it when any one enters the wrong login information (already registered users) then it...
3
by: Muddasir | last post by:
Hi everyone, Can any body please tell me how to integrate skype on my website. 1. Register with Skype while they register with mysite 2. Skype registration details like profile,...
2
by: Wayne Smith | last post by:
Applies to: Visual Studio 2008 Professional Hi everyone, I'm in the middle of creating a website with VS2008 and I'm trying to integrate a user registration/login section on the website but I've...
3
by: =?Utf-8?B?SGVyYg==?= | last post by:
I've developed an ASP.NET website that runs fine on my local WinXP IIS and on my server's IIS, both are IIS6.0 The site uses a master page that has the following declaration: <%@ Master...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.