Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 690

Protect admincp with session

$
0
0
* Create one folder with any name

example: abc

* Create index.php file in that directory with the content:

Code:
<?php
$mybbvietnamdotcom_cookie_code="1234567890";
setcookie("mybbvietnamdotcom",$mybbvietnamdotcom_cookie_code,0,"/");
header("Location: /admin/index.php");
?>


* add to .htaccess


Code:
RewriteCond %{REQUEST_URI} ^/admin
RewriteCond %{HTTP_COOKIE} !mybbvietnamdotcom=1234567890
RewriteRule .* - [L,F]


* Replace 1234567890 with any sequence

Note:

* If direct access http://domain/admin will be 403

* Now they just want to run admincp link below to create session: http://domain/abc


sorry, my english is very bad

Viewing all articles
Browse latest Browse all 690

Trending Articles