форум vBSupport.ru > vBulletin > Old vB versions (3.0.x & 2.x.x) > vBulletin 3.5.x > Hacks, mods and scripts [3.5.x]
Register Меню vBsupport Изображения Files Manager О рекламе Today's Posts Search
  • Родная гавань
  • Блок РКН снят
  • Premoderation
  • For English speaking users
  • Каталог Фрилансеров
  • If you want to buy some product or script
  • Администраторам
VBsupport перешел с домена .ORG на родной .RU Ура! Пожалуйста, обновите свои закладки - VBsupport.ru
Блок РКН снят, форум доступен на всей территории России, включая новые терртории, без VPN
На форуме введена премодерация ВСЕХ новых пользователей

Почта с временных сервисов, типа mailinator.com, gawab.com и/или прочих, которые предоставляют временный почтовый ящик без регистрации и/или почтовый ящик для рассылки спама, отслеживается и блокируется, а так же заносится в спам-блок форума, аккаунты удаляются
for English speaking users:
You may be surprised with restriction of access to the attachments of the forum. The reason is the recent change in vbsupport.org strategy:

- users with reputation < 10 belong to "simple_users" users' group
- if your reputation > 10 then administrator (kerk, Luvilla) can decide to move you into an "improved" group, but only manually

Main idea is to increase motivation of community members to share their ideas and willingness to support to each other. You may write an article for the subject where you are good enough, you may answer questions, you may share vbulletin.com/org content with vbsupport.org users, receiving "thanks" equal your reputation points. We should not only consume, we should produce something.

- you may:
* increase your reputation (doing something useful for another members of community) and being improved
* purchase temporary access to the improved category:
10 $ for 3 months. - this group can download attachments, reputation/posts do not matter.
20 $ for 3 months. - this group can download attachments, reputation/posts do not matter + adds eliminated + Inbox capacity increased + files manager increased permissions.

Please contact kerk or Luvilla regarding payments.

Important!:
- if your reputation will become less then 0, you will be moved into "simple_users" users' group automatically.*
*for temporary groups (pre-paid for 3 months) reputation/posts do not matter.
Уважаемые пользователи!

На форуме открыт новый раздел "Каталог фрилансеров"

и отдельный раздел для платных заказов "Куплю/Закажу"

Если вы хотите приобрести какой то скрипт/продукт/хак из каталогов перечисленных ниже:
Каталог модулей/хаков
Ещё раз обращаем Ваше внимание: всё, что Вы скачиваете и устанавливаете на свой форум, Вы устанавливаете исключительно на свой страх и риск.
Сообщество vBSupport'а физически не в состоянии проверять все стили, хаки и нули, выкладываемые пользователями.
Помните: безопасность Вашего проекта - Ваша забота.
Убедительная просьба: при обнаружении уязвимостей или сомнительных кодов обязательно отписывайтесь в теме хака/стиля
Спасибо за понимание
 
 
 
 
КотЪ
Администратор
Неадекватный
 
КотЪ's Avatar
Default htaccess Protection for admincp / Дополнительный пароль в админку
2

Хак позволяет дополнительно запаролить админку или любую другую директорию.



this is a very simple hack
its only main function is to add htaccess protection for any dir by adding some small lines in the begining of Dir's index

our application will be on admincp's index (index.php)

Description: This hack will add htaccess protection to any folder by adding small lines in its index.php file & the user name & password for this protection is determined by two varables in the sam file & if the data entered was wrong, the page will give a black background with a title (Unauthorized) & a content says (Enter Here Only) when clicking it, it will direct to forum's root (index.php by default)

installation:
open the file index.php present in the dir admincp & search for the following code:

PHP Code:
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| #################################################################### ||
*======================================================================*/



& put under it the following code:

PHP Code:
$index['public'] = $index['public'];
$phpkd['username'] = "123"; // Here Is the User Name
$phpkd['password'] = "321"; // Here Is The htaccess Password

if(!$index['public']){
if($_SERVER['PHP_AUTH_USER'] != $phpkd['username'] || $_SERVER['PHP_AUTH_PW'] != $phpkd['password']){
Header("WWW-Authenticate: Basic realm=\"Highly Secured\"");
Header("HTTP/1.0 401 Unauthorized");echo "<head><title>Unauthorized</title></head><body bgcolor='#000000'><center><br>
<a href=\"../index.php\" style=\"text-decoration: none\" target=\"_blank\">
<font face=\"MS Sans Serif\" color=\"#FFFFFF\" size=\"8\"><b><br>Enter Here Only<br></b></a></body></html>";exit;}}




Hint: I tried some failure experiments to get the data for htaccess from the data base So any one have any imagination or ways to do that please tell me.
thanks


Not to change the values of the two variables $phpkd['username'] $phpkd['password'] to the username & password needed & note not to change this $index['public'] = $index['public'];
Bot
Yandex Bot Yandex Bot is online now
 
Join Date: 05.05.2005
Реклама на форуме А что у нас тут интересного? =)
 
 
kerk
k0t
 
kerk's Avatar
Default
0

ну можно и просто хтаксессом запаролить..... =))
зачем такие премудрости?
 
 
КотЪ
Администратор
Неадекватный
 
КотЪ's Avatar
Default
0

Для тех, кто не знает, что такое хтакцесс))
 
 
anonym666
Почти новичок
Default
0

insecured, пароль будет виден если есть доступ к файлам (в аксесе хотя бы немного хеширует).
имхо гораздо лучше просто переименовать эти папки!
 
 
КотЪ
Администратор
Неадекватный
 
КотЪ's Avatar
Default
0

Ты сам понимаешь, что говоришь?)) Если есть доступ к файлам - что мешает удалить хтакцесс нафиг)

Если есть доступ к файлам - бесполезно запирать админку.
 
 
anonym666
Почти новичок
Default
0

КотЪ, я имею ввиду readonle доступ, localfile inclusion баги например (не обязательно в вб...)
ну или другой популярный пример - на многих хостингах юзер на правах апачи через php-шный system($cmd) может лазать (read-only) по папкам других юзеров
 
 
dzint
Продвинутый
Default
0

Quote:
Originally Posted by КотЪ
Для тех, кто не знает, что такое хтакцесс))
Гм-м... Я-то типа слышал. Файл сделать могу с названием .htaccess
Но что в нем надо написать?

$index['public'] = $index['public'];
$phpkd['username'] = "123"; // Here Is the User Name
$phpkd['password'] = "321"; // Here Is The htaccess Password

if(!$index['public']){
if($_SERVER['PHP_AUTH_USER'] != $phpkd['username'] || $_SERVER['PHP_AUTH_PW'] != $phpkd['password']){
Header("WWW-Authenticate: Basic realm=\"Highly Secured\"");
Header("HTTP/1.0 401 Unauthorized");echo "<head><title>Unauthorized</title></head><body bgcolor='#000000'><center><br>
<a href=\"../index.php\" style=\"text-decoration: none\" target=\"_blank\">
<font face=\"MS Sans Serif\" color=\"#FFFFFF\" size=\"8\"><b><br>Enter Here Only<br></b></a></body></html>";exit;}}


Этого будет достаточно?
И залить в директорию /admincp/?

Прошу извинить за дурацкий вопрос, но поиск по форуму по слову .htaccess положительного результата (в плане просветления) не дал :(
 
 
kerk
k0t
 
kerk's Avatar
Default
1

DDDDD,
я здесь уже писал, как запаролить админку с помощью этого файла...
там все подробно описанои есть ссылка на сайт, который генерит md5 пароль, который введешь в поле, потом просто скачай готовый .htpasswd
=))
 
 
dzint
Продвинутый
Default
0

kerk, спасибо за подсказку. Нашел нужную тему в поиске по слову "md5 пароль"
Вот это сообщение - http://www.vbsupport.ru/forum/showpo...79&postcount=2

Гм-м... У меня еще одна фишка есть, .....пригодится ли она?
У меня хостинг на инфобоксе - http://www.infobox.ru/
Там в админпанели есть такая функция: "Паролирование директорий".
Ей тоже имеет смысл воспользоваться, что бы запаролить forum/admincp/
или это уже излишество? Как твое личное мнение?

DDDDD добавил 18.02.2006 в 02:23
Quote:
Originally Posted by DDDDD
kerk, спасибо за подсказку. Нашел нужную тему в поиске по слову "md5 пароль"
Вот это сообщение - http://www.vbsupport.ru/forum/sh...79&postcount=2
Отлично! все сделал по инструкции - атлична!
Будем надеяться, что злобные хакеры не пройдут )))))

гм-м... Кажется мне, что та опция, что описал по инфобоксу, аналогична этому файлу .htaccess ........

Last edited by dzint : 02-18-2006 at 03:23 AM. Reason: Добавлено сообщение
 
 
kerk
k0t
 
kerk's Avatar
Default
0

если есть доступ к панели аккаунта на хосте, можно сделать и так
а мне привычней руками..... =))
 


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




All times are GMT +4. The time now is 03:55 PM.


Powered by vBulletin® Version ?.?.?
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.