Home > Facebook & Instagram > Account Issues and Questions

Someone is trying to access my Prosper202 account (7)


11-21-2011 08:27 PM #1 rafael3000 (Member)
Someone is trying to access my Prosper202 account

Checked my prosper202 last login attempts, i see someone is tried to access it multiple times from different ip addresses. Did you have this happen to you also?


11-21-2011 08:38 PM #2 bbrock32 (Administrator)

Yeah , happened to me too.

Just rename the 202-login.php to smth else and they won't be able to see the login screen at all.


11-22-2011 01:12 AM #3 rileypool (Member)

Only allow access from your IP. Done deal.


11-22-2011 01:16 AM #4 mattias (Member)

it was me. JK what riley said. It is really easy to do. you can do it by editing the .htacces.


11-22-2011 01:27 AM #5 atherbys (Member)

Hey Mattias could you please show me how to successfully edit the .htaccess? Here is what I see in there (minus my domain name)

# -FrontPage-

IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>


Thanks

Gary


11-22-2011 12:09 PM #6 mattias (Member)

Add this to your .htaccess. Just edit to allow access from your home, office, or favorite coffee shop in the IP addresses section. You can ad as many as you want. It is a pain when your isp switches IPs but it really locks down your login page. Also you can redirect to any page on your site or off your site by editing the error document section.

<Files 202-login.php>
order deny,allow
deny from all
allow from 123.123.123.123
allow from 255.255.255.255
ErrorDocument 403 http://www.google.com
</Files>


11-23-2011 09:13 AM #7 rileypool (Member)

Or you can rename your login page and do it via PHP.

<?php
if ($_SERVER['REMOTE_ADDR'] = 'ipaddresshere') {
echo '<script type="text/javascript">
window.location = "/loginpage.php"
</script>';
} else {
echo '<script type="text/javascript">
window.location = "http://makemoniesonline.com"
</script>';
}

?>


Home > Facebook & Instagram > Account Issues and Questions