Перейти из форума на сайт.

НовостиФайловые архивы
ПоискАктивные темыТоп лист
ПравилаКто в on-line?
Вход Забыли пароль? Первый раз на этом сайте? Регистрация
Компьютерный форум Ru.Board » Компьютеры » Программы » Настройка Proxomitron

Модерирует : gyra, Maz

 Версия для печати • ПодписатьсяДобавить в закладки
Страницы: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

Открыть новую тему     Написать ответ в эту тему

Corewin



Lazy
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
Proxomitron


Proxomitron -- веб-фильтр страниц, запрашиваемых и отображаемых браузером. Работает под Windows с любым браузером, т.к. устанавливается как локальный прокси-сервер.

Proxomitron Russian page
 
// nb основной сервер proxomitron.org (aka proxomitron.cjb.net) закрыт 29 мая 2003 - см архив за конец мая @prox-list или отдельно письмо Скотта Леммона @computercops.biz.
Scott Lemmon, Proxomitron Author, Deceased May 1st 2004

 
download mirrors:
http://www.proxomitron.info/files/
http://proxomitron.ru/download.htm
 
web-форумы:
Англоязычные:
asp.flaaten.dk/proxo -- The 'Official' Proxomitron Forum by Arne Flaaten (Арне всех кинул и закрыл форум вместе с контентом)
CastleCops Proxomitron Forums
Русскоязычные:
Форум Proxomitron Russian page -- Помощь в настройке; новые фильтры; удаление рекламы с конкретных сайтов
ixbt » Смерть баннерам aka FAQ по Proxomitron
 
mail-форумы:
англоязычный:  http://groups.yahoo.com/group/prox-list  (~200 msg. в месяц)
русскоязычный: http://groups.yahoo.com/group/prox-ru (~30 msg. в месяц)
 
faq на русском:
proxomitron.ru - (by Dmitry "Storm" Yudin)
 
Вопросы по сертификатам:
Создать свои by WRFan
Новая, более обширная инструкция по созданию сертификатов для Прокса, Apache и MS IIS сёрверов by WRFan
Скачать готовые
 
Альтернативные конфиги:
jd5000
Grypen's Filter Set - 11 Dec 04
Proxomitron Russian Edition
Proxomitron-RE v0.9 beta от 04.10.2006
 
Остальное:
ProxoPatcher (patched Proxomitron Interface)
Proxomitron Configuration Manager V2.1
Игнор-лист для Ru-Board'а через Proxomitron
Смежная тема: Блокировка рекламы в браузере

Всего записей: 2598 | Зарегистр. 03-08-2001 | Отправлено: 21:56 09-09-2001 | Исправлено: shrmn, 20:03 03-04-2024
albel



Moderator
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
Proxomitron 4.5 beta    
http://proxomitron.org/Prx45B.2003-04-12.zip
wassup:

* Try http://local.ptron/.pinfo/ - lots of stuff there ^_^  (views can be customized via the Info.css in the html folder)
* Added ability to import/export filter to and from the windows  clipboard. Right-click over either the web or header filter  lists - the import/export options are available in the context
  menu.
  Export will write any selected filters to the clipboard while   import will insert filters from the clipboard's text. The format   is the same as is used in Proxomitron's config files.
  There's also an option in the merge dialog to accept input from   the clipboard rather than a file. It can be used to import any   config file settings - just be sure to include the filter section
  headers with the text.
  * Log window clipboard should be better behaved under NT/W2k/XP
  * Proxomitron now has support for pre-request variables. These   can be set anywhere (even in the headers) and checked later   (say in the actual HTML).  Each request has it's own set, and
  is isolated from all other pages.
    - To set a variable use...  
      $SET(variable=something)
  - To clear a variable use...
      $SET(variable=)
  - To get a variable's value use...
      $GET(variable)
  - To test a variable's value use...
      $TST(variable=match expression)
    or also just...
      $TST(variable)
    can be used in a match to see if the variable's contents match the current text. For example..
      src="http://$TST(myhost)/"
    note that this must be a literal match (except for case) - the variable's value isn't treated as a matching expression with wildcards and such.
     
  Unlike positional "\1 \2 \# ..." style variables, $SET expands a named variable's value as soon as it's called (positional are expanded in the replace). That means named variables can be set to themselves and expanded - for instance...
  $SET(foo=$GET(foo) more stuff)   - adds to the end of "foo"
  $SET(foo=more stuff $GET(foo))   - adds to the start of "foo"
  $SET(foo=$GET(foo) \1)   - adds value of "\1" to the end of "foo"
  $SET(foo=$GET(foo)$GET(bar))     - adds value of "bar" to the end of "foo"
 
  $TST can also be used on good-old positional type variables \0 ... \9
  which allows you to do neat things like...
   
  <\1\s * </$TST(\1)>  
    which matches...
  <any-tag> stuff </any-tag>
    but not...
  <any-tag> stuff </a-different-tag>
 
  Note that to get this to work I had to make some big changes to the way  Proxomitron normally sets these variables.  In this beta please watch out  for unexpected side-effects. Especially in cases where you use the same  variable more than once in a match.  Proxomitron used to wait till the very  end to set variables which guaranteed that once matched it wouldn't change  till matched again.  Now it may be possible for some failed match later on  to erase the previous value of a variable. Still I can't really find many  cases where this would actually be a problem and the trade off is probably worth it.
     Speed notes:
    Like calling a list, testing a variable is a bit costly It involves a lookup of it's name each time it's called so it's better to not have it as the very first thing in a match...
      SLOW:   $TST(name=ayumu|osaka)<a href="chiyo">
      BETTER: <a href="chiyo">$TST(name=ayumu|osaka)
    Also more variables makes the lookup take longer, so if you know your done with one, it's best to clear it: $SET(foo=)
* size specifiers on runs ( like "[a]+{0,500}" ) can now range up to  65535 rather than being limited to 255.  
* Error messages now call "Errors.css" in the html folder so you can customize the colors and fonts used
* Config name now shows in system tray tool tip (as per request
* Can now filter the CONNECT method used to establish SSL pass-thru connections. That allows some minimal filtering (basic site blocking and bypass list host matching) even without using OpenSSL. CONNECT headers are now also visible in the log window (though keep in mind they're only used by the proxy and not passed to the remote site).
* Bug fixed with $WESC not escaping closing parenthesis
* Added new DOM banner/container killer filter
* multi-part (push) content types not filtered by default
* Updated SSLeay/OpenSSL libraries used. Also added some basic  remote site certificate validation.  See readme.txt for new details
* Fixed bug that could sometimes cause characters not to be  filtered in the tester window when the match was exactly 1 character long.
* $LOG() command can now open the log window if it's closed.  just include a "!" as the first character before the color  indicator...
  $LOG(!GLog Something green)
* Fixed "read overflow" bug (for real this time
* Fixed missing "&" in "Content-Type: Fix MIME types based on URL"   filter
* Altered Javascript filters to insert after the <!DOCTYPE ... > tag on webpages (works better for IE6)
* Pop-up filters are improved a bit and now use the external "WindowOpen.js" file in the html folder.
* $URL, $RESP, $IHDR, $OHDR, $TST all now work in the replacement  section too (where they can be useful to capture values).
* Latest DOM banner blaster and container killer included  this uses "DomConKiller.js" in the html folder
* Long command causing crash in NT/Win2k/XP fixed.
* Bug with long entries in log window fixed.
* SSL socket reuse bug fixed (hopefully)
* \h will now match hostnames that don't have a trailing slash like  "http://foo.com"
* Proxy advanced options now allow a username with no password.
* Reloading a config no longer clears the debug flag.



----------
Я никогда не спорю. Я никогда не противоречу. Я иногда забываю. / © Б.Дизраэли/

Всего записей: 11003 | Зарегистр. 30-08-2002 | Отправлено: 11:00 13-04-2003
albel



Moderator
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
The Proxomitron 4.5 beta update 2003-04-18  
http://www.proxomitron.org/Prx45B.2003-04-18.zip
 
And here's the changes...
 * Added HTML escaping to block files and URL list under .pinfo  to prevent any included tags from causing trouble.
 * Positional variables are now stored and reset if a match fails. With luck it should make them behave more as they did in previous versions while still allowing them to be read while matching.
* Web filters no longer import in reverse order.
* Ok I know I said no new features, but it's true all those local file requests flood the log window. There's now an option to show  them which is disabled by default.
* PriorityBoost = TRUE/FALSE flag has been added to the config. This is a bit experimental, but when true will boost the priority of filtering  threads while allowing the main program to run at a normal level. It might help especially when browsers up their own priority which may starve Proxomitron for CPU time. Because of this I'd not recommend also running Proxomitron itself at high priority at first or it make make the thread priority too high; if you do, you may want to disable the boost.
* Changed 302 redirect handling a bit so Mozilla can process them faster (the latest Mozilla seems to pause for some time if some HTML isn't included with the redirect).

 
P.S. Напоминаю, что это бета-версия, поэтому возможны глюки, о которых автор с радостью примет репорты.

----------
Я никогда не спорю. Я никогда не противоречу. Я иногда забываю. / © Б.Дизраэли/

Всего записей: 11003 | Зарегистр. 30-08-2002 | Отправлено: 10:52 20-04-2003
youri

Advanced Member
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору

Цитата:
The Proxomitron  

albel
где он счас живет? Все мертвое  Оффсайт совсем , p*.nm.ru  не обновляется  

Всего записей: 654 | Зарегистр. 05-05-2002 | Отправлено: 10:56 20-04-2003
albel



Moderator
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
youri
http://proxomitron.org живой, но пока тоже не обновлялся.
Живёт он, таким образом, только в рассылке на yahoo!

----------
Я никогда не спорю. Я никогда не противоречу. Я иногда забываю. / © Б.Дизраэли/

Всего записей: 11003 | Зарегистр. 30-08-2002 | Отправлено: 11:39 20-04-2003
Efimych

Silver Member
Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору
можно ли  в настройках полностью отключить JAVA-скрипты?

Всего записей: 2312 | Зарегистр. 12-07-2002 | Отправлено: 22:30 21-04-2003
albel



Moderator
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
Efimych
WebPage -> Disable JavaScript. Но, imho, проще в настройках браузера.

----------
Я никогда не спорю. Я никогда не противоречу. Я иногда забываю. / © Б.Дизраэли/

Всего записей: 11003 | Зарегистр. 30-08-2002 | Отправлено: 23:04 21-04-2003
Efimych

Silver Member
Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору
albel -  я знаю, что там есть такая опция, поэтому и спросил,  про @@@полностью@@@. ИМХО, в браузере совсем не проще
 

Всего записей: 2312 | Зарегистр. 12-07-2002 | Отправлено: 23:35 21-04-2003
DRON888

Newbie
Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору
А можно ли с помощью этой программы сделать следующее:
 
Например, есть штук 15-20 сайтов на которых должны загружаться картинки, скрипты, флэш и т.д. На всех остальных сайтах не должны загружаться картинки, скрипты, флэш и т.д.
 
Если такое можно, то как?

Всего записей: 15 | Зарегистр. 24-07-2002 | Отправлено: 19:28 10-05-2003
albel



Moderator
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
DRON888
Есть ByPass.list - в него прописываешь сайты, которые фильтроваться не должны.
На остальные натравливаешь фильтры по своему усмотрению.

Цитата:
##
## This is a list of URLs (web addresses) not to filter in Proxomitron  
##
## You can add any "problem" sites to this list or just any site you
## don't wish to filter here.
##
## As in other lists, you can use any matching expression wildcards.
## Also remember not to add "http://" in front of your URLs.
##
## NOTE: Since only the items that match the URL will be bypassed,
## images and banners on the page from other sites might still
## be filtered. If something is still being filtered that you don't
## want, look closely at the actual URL of the item and add it to
## the list too.
##
##
 
# Don't filter our own custom filter scripts
local.ptron
 
# Entry to allow Microsoft browser search to work  
# since some filters can interfere with it.
[^/]++search.msn.com/
 
# Entry to allow Windows Update to do it's stuff
[^/]++windowsupdate.(microsoft|).com[:/]
 
# Bypasses for Yahoo messenger (ok to remove if you don't use it)
[^/]++(edit|address|pager|cs[bc]).yahoo.com/


----------
Я никогда не спорю. Я никогда не противоречу. Я иногда забываю. / © Б.Дизраэли/

Всего записей: 11003 | Зарегистр. 30-08-2002 | Отправлено: 19:31 10-05-2003
Corewin



Lazy
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
youri
Объясни пожалуйста, какой синтаксис для Proxomitron надо использовать, чтобы добавлять в фильтры для баннеров новые баннерные сети, а то сейчас столько новых появилось, Proxomitron уже не справляется. Или скажи, где можно посмотреть этот синтаксис

Всего записей: 2598 | Зарегистр. 03-08-2001 | Отправлено: 22:58 10-05-2003
albel



Moderator
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
Corewin
Посмотри Url Killfile.txt, Keyword List.txt в директории \Lists
Кроме того, в справке расписан синтаксис фильтров. Русская версия есть на proxomitron.nm.ru

----------
Я никогда не спорю. Я никогда не противоречу. Я иногда забываю. / © Б.Дизраэли/

Всего записей: 11003 | Зарегистр. 30-08-2002 | Отправлено: 00:15 11-05-2003
Corewin



Lazy
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
albel
Я не догоняю как баннерные системы в URL Killfile добавлять Почитал Help, но для меня это сложно.  
К примеру обнаружил через CacheX что Proxo не фильтрует hotlog.ru (hit2.hotlog.ru) Но хочется, чтобы он мог индексировать не только hit2 но и любые другие символы перед hotlog.ru Как это записать?
Еще не режет
counter.rambler.ru
images.rambler.ru
top100-image.rambler.ru
topshop-counter.rambler.ru
Как мне все это в одно объединить учитывая другие возможные варианты?
Такая же проблема:
count.rbc.ru
pics.rbs.ru
u143.26.spylog.com
u1813.85.spylog.com
... и так далее до бесконечности
Но опять же, хочется чтобы коцал все возможные варианты с хостов rbs.ru и spylog.com
Мне надо просто понять, чтобы самому уметь создавать фильтры для различных баннерных систем  
 

Всего записей: 2598 | Зарегистр. 03-08-2001 | Отправлено: 09:48 11-05-2003 | Исправлено: Corewin, 14:26 11-05-2003
Bai_Hou



Advanced Member
Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору
Corewin
Прочитай файл "help\BlockList Using.html", там в конце примеры как раз для этих целей. Имхо там всё очевидно: хочешь забить весь домен, например, spylog.com, добавляешь в килфайл строчку "[^/]++spylog.com" (естественно, без кавычек).

Всего записей: 835 | Зарегистр. 28-02-2003 | Отправлено: 19:49 11-05-2003
Corewin



Lazy
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
Bai_Hou
Я его почитал, но не все понял. [^/]++ что значит? Всмысле значение отдельных мета-символов понятно, а вот конструкция...
И еще. Во многих toplist есть GIF файлы в названиях которых есть слово count. Как бы мне фильтр подредактировать или в какой-нибудь блок-лист добавить, чтобы Proxo эти count резал

Всего записей: 2598 | Зарегистр. 03-08-2001 | Отправлено: 02:12 12-05-2003 | Исправлено: Corewin, 02:12 12-05-2003
Bai_Hou



Advanced Member
Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору
Corewin

Цитата:
[^/]++ что значит? Всмысле значение отдельных мета-символов понятно, а вот конструкция...  

Это значит любая последовательность символов, в которой нет слэша, так что сюда попадают любые префиксы следующего за ней домена, и при этом она не реагирует на путь после имени хоста - там есть пример, почему это лучше конструкции "*adsite.com".

Цитата:
Как бы мне фильтр подредактировать или в какой-нибудь блок-лист добавить, чтобы Proxo эти count резал

Это я сам не делал, но думаю, что соответствующее выражение надо добавлять в файл "Keyword list.txt" отдельной строкой.

Всего записей: 835 | Зарегистр. 28-02-2003 | Отправлено: 02:57 12-05-2003
Corewin



Lazy
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
Bai_Hou
Спасибо. Кое-что уже получается

Всего записей: 2598 | Зарегистр. 03-08-2001 | Отправлено: 01:19 26-05-2003
Ilich Ramiras



террорист в запасе
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
Proxomitron Naoko 4.5 зарелизился наконец-то... хорошо бы русификатора дождаться:))
 
Добавлено
кстати. подскажите плз. как корректно перебраться на него c версии 4.4, не потеряв настроек и фильтров? :))

----------
-=El pueblo unido jamás será vencido!=-
Пух, террорист в запасе тебя не забудет. Вечная тебе память.

Всего записей: 1873 | Зарегистр. 03-10-2002 | Отправлено: 10:10 27-05-2003
WildCat



Advanced Member
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
Ilich Ramiras
Я перебираюсь методом ручного сравнения и правки конфигов и списков. По-другому -- никак

Всего записей: 883 | Зарегистр. 16-10-2001 | Отправлено: 12:47 27-05-2003
Efimych

Silver Member
Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору
WildCat - а если просто файлы *.cfg перекопировать, не получится так?  


----------
Экооборона Московской области

Всего записей: 2312 | Зарегистр. 12-07-2002 | Отправлено: 23:31 27-05-2003
Ilich Ramiras



террорист в запасе
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
Русификатор к Proxomitron 4.5 от 26.05.03
 
http://www.proxomitron.tk
http://proxomitron.da.ru

----------
-=El pueblo unido jamás será vencido!=-
Пух, террорист в запасе тебя не забудет. Вечная тебе память.

Всего записей: 1873 | Зарегистр. 03-10-2002 | Отправлено: 10:05 29-05-2003
Открыть новую тему     Написать ответ в эту тему

Страницы: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

Компьютерный форум Ru.Board » Компьютеры » Программы » Настройка Proxomitron


Реклама на форуме Ru.Board.

Powered by Ikonboard "v2.1.7b" © 2000 Ikonboard.com
Modified by Ru.B0ard
© Ru.B0ard 2000-2024

BitCoin: 1NGG1chHtUvrtEqjeerQCKDMUi6S6CG4iC

Рейтинг.ru