Passwords trade..how can I stop it?
I run a website who allows reading/posting only to registrated users but I know many ppl trade passwords in NGs and enter using other people's accounts.
How can I avoid it? I'm thinking about allowing each member only two pageviews a day but I wonder how could I do it? any idea? ThaNks ))
fairhousing posted this at 18:51 — 16th March 2000.
They have: 1,587 posts
Joined: Mar 1999
one way to stop it is to set a cookie on them. then if the cookie changes password or user name, both accounts r deleted.
it still want stop someone from doing it, but it will just make it a little harder for them.
good luck
------------------
Thumbs up or down ratings of the best and worst ways to make $$$ on the net. CLICK 4 CASH! from Affiliate Programs and Ad Networks
Traffic-Website.com free traffic, affiliate programs, hosting, & domain names.
My Site got hacked, but i'm coming back?
Orpheus posted this at 01:09 — 17th March 2000.
They have: 568 posts
Joined: Nov 1999
Restricting page views isn't the best idea. If I was only allowed 2 views a day on slashdot i'd die
I think you should do something with their IP addresses. Maybe put them in a small database that would record all the actions on their IP.
That way if you suspected someone of trading acounts you could just look at the database.
Rob Pengelly posted this at 04:16 — 17th March 2000.
They have: 850 posts
Joined: Jul 1999
I agree with Orpheus, try to add some code into the login script.
Try somthing like this in your login script:
http://www.thehungersite.com - http://www.therainforestsite.com
http://www.ratemymullet.com - Beauty is only mullet deep.
Mark444 posted this at 11:31 — 17th March 2000.
They have: 26 posts
Joined: May 1999
Thanks guys for your replies

Robp's solution would be great but...most of our users have dynamic IPs and if they connect to our site 3 times a day they will show 3 different IPs. European providers use to assign dynamic IPs: every modem connection with ur ISP gives you a different one.
The cookie idea could work even if it's not the best security solution.
A cookie for every page visited who allows the same account only 3-4 pageviews a day for any article page would work...but anyone knows how to implement it?
The site runs on a Discus board (discusware.com) and that sw is pretty hard to customize...
Hope you can help...thanks
Rob Pengelly posted this at 15:14 — 17th March 2000.
They have: 850 posts
Joined: Jul 1999
I understand the IP problem. You could break down the IP , because usually the first 3 numbers are the same, so you could just look for those 3 numbers in the persons IP (If I am wrong, you could chang it to the first 2 numbers)
So just replace some of the code above to this:
http://www.thehungersite.com - http://www.therainforestsite.com
http://www.ratemymullet.com - Beauty is only mullet deep.
Mark444 posted this at 20:10 — 17th March 2000.
They have: 26 posts
Joined: May 1999
Thanks!!! I'm going to test it right now
I'll let you know...
-----------------------
robp is my hero.
Orpheus posted this at 21:37 — 17th March 2000.
They have: 568 posts
Joined: Nov 1999
actually that wouldn't work
($num1,$num2,$num3,$num4)=split(/:/,$input);
would split the IP at a :. which they don't have
so just replace
($num1,$num2,$num3,$num4)=split(/:/,$input);
with
($num1,$num2,$num3,$num4)=split(/\./,$input);
the \ is required because the . is a pattern matching symbol.
Rob Pengelly posted this at 21:51 — 17th March 2000.
They have: 850 posts
Joined: Jul 1999
Whoops
Honest mistake
Thanks for pointing that out
------------------
Patrick is my hero.
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.