This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From: retornam | |
| Bug 945857 Remove security.fresh_revocation_info.require preference | |
| diff --git a/security/manager/ssl/src/CertVerifier.cpp b/security/manager/ssl/src/CertVerifier.cpp | |
| index 39b54c4..7387011 100644 | |
| --- a/security/manager/ssl/src/CertVerifier.cpp | |
| +++ b/security/manager/ssl/src/CertVerifier.cpp | |
| @@ -19,23 +19,21 @@ extern SECStatus getFirstEVPolicy(CERTCertificate *cert, SECOidTag &outOidTag); | |
| extern CERTCertList* getRootsForOid(SECOidTag oid_tag); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From: retornam | |
| Bug 945857 Remove security.fresh_revocation_info.require preference | |
| diff --git a/security/manager/ssl/src/CertVerifier.cpp b/security/manager/ssl/src/CertVerifier.cpp | |
| index 39b54c4..7387011 100644 | |
| --- a/security/manager/ssl/src/CertVerifier.cpp | |
| +++ b/security/manager/ssl/src/CertVerifier.cpp | |
| @@ -19,23 +19,21 @@ extern SECStatus getFirstEVPolicy(CERTCertificate *cert, SECOidTag &outOidTag); | |
| extern CERTCertList* getRootsForOid(SECOidTag oid_tag); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| iptables -A FORWARD -m state --state RELATED,ESTABLISHED - j ACCEPT | |
| iptables -A FORWARD -s 192.168.1.0/24 -j ACCEPT | |
| iptables -A FORWARD -j REJECT | |
| iptables -t nat -A POSTROUTING -s 192.168.1.0/24 -o eth0 -j MASQUERADE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require-mschap-v2 | |
| ms-dns 8.8.8.8 | |
| ms-dns 8.8.4.4 | |
| asyncmap 0 | |
| auth | |
| crtscts | |
| lock | |
| hide-password | |
| modem | |
| debug |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [global] | |
| ipsec saref = yes | |
| [lns default] | |
| ip range = 192.168.1.221 - 192.168.1.229 | |
| local ip = 192.168.1.230 | |
| refuse chap = yes | |
| refuse pap = yes | |
| require authentication = yes | |
| pop debug = yes | |
| pppoptfile = /etc/ppp/options.xl2tpd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo 1 > /proc/sys/net/ipv4/ip_forward | |
| for each in /proc/sys/net/ipv4/conf/* | |
| do | |
| echo 0 > $each/accept_redirects | |
| echo 0 > $each/send_redirects | |
| done | |
| /etc/init.d/ipsec restart |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version 2.0 | |
| config setup | |
| nat_traversal=yes | |
| virtual_private=%v4:10.0.0/8,%v4:192.168.0.0/16,%v4:172.16.0.0/12 | |
| oe=off | |
| protostack=netkey | |
| conn L2TP-PSK-NAT | |
| rightsubnet=vhost:%priv | |
| also=L2TP-PSK-noNAT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| locales=(en-US ach af ak ar as ast be bg bn-BD bn-IN br bs ca cs csb cy da de el en-GB en-ZA eo es-AR es-CL es-ES es-MX et eu fa ff fi fr fy-NL ga-IE gd gl gu-IN he hi-IN hr hu hy-AM id is it ja kk km kn ko ku lg lij lt lv mai mk ml mn mr nb-NO nl nn-NO nso or pa-IN pl pt-BR pt-PT rm ro ru si sk sl son sq sr sv-SE sw ta ta-LK te th tr uk vi zh-CN zh-TW zu) | |
| #products=(firefox-beta-stub firefox-aurora-latest firefox-beta-latest firefox-nightly-latest) | |
| products=(firefox-16.0.2 firefox-16.0.2-TESTING) | |
| #locales=(en-US fr de lg) | |
| platforms=(win linux linux64 osx) | |
| for product in "${products[@]}" | |
| do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| #chkconfig: 35 90 12 | |
| #description: start,stop or restart selenium-grid | |
| # | |
| # Get function from functions library | |
| . /etc/init.d/functions | |
| #start the service | |
| start() { | |
| echo $"Starting ant-launch" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import mechanize | |
| import cookielib | |
| browser = mechanize.Browser() | |
| cookiejar = cookielib.LWPCookieJar() | |
| browser.set_cookiejar(cookiejar) | |
| browser.set_handle_equiv(True) | |
| browser.set_handle_gzip(True) | |
| browser.set_handle_redirect(True) |