zoukankan      html  css  js  c++  java
  • Philtron: a PHP Proxy for HTTP

    Philtron: a PHP Proxy for HTTP

     

    Philtron or Morgan's Love potion

    Philtron is a filtering HTTP proxy, meaning it rewrites the HTML of the
    web pages that pass through it in order to remove dangerous or annoying
    javascript-s, popups and improve the anonymity of the user. It will be
    different from the existing filtering solutions (most famous example -
    Proxomitron, now discontinued) by avoiding hard-to-understand regular
    expressions as a way to filter HTML and will also be extremely user
    friendly - it is configured directly from the browser, on the fly as
    you browse. It is intended for the large audience, one wouldn't need
    programming background inorder to use the software.

    Philtron is written in PHP, which means it's cross-platform and it's
    safe from buffer overflows and similar bugs, which can appear in
    low-level languages (c/c++). On the other hand the built-in regular
    expressions make implementing HTTP and parsing incoming and outgoing
    traffic very easy.

    The proxy will fully implement HTTP/1.1 protocol, which means it can
    download web pages and their requisites (images, flash movies etc)
    fast and intelligent, even superior than some of the existing browsers
    (for example Internet Exlorer doesn't use pipelining - one of the
    advanced features of http/1.1 which greatly improves speed on
    image-heavy pages) and will help http/1.0 clients communicate faster
    with the http/1.1 servers (for example wget works faster through Philtron).



  • 相关阅读:
    poj3468(A Simple Problem with Integers)线段树+树状数组
    关于JVM——JVM内存模型
    关于JVM——类加载机制
    关于JVM(二)
    关于JVM(一)
    关于LongAdder
    关于Future
    关于Fork/Join
    关于Atomic
    关于LockSupport
  • 原文地址:https://www.cnblogs.com/lexus/p/2476025.html
Copyright © 2011-2022 走看看