Contact
Sponsors
| ||||
|---|---|---|---|---|
| Day | Events | |||
| 05/21 Tuesday | 1930 - meetup 2000 Valná hromada | |||
| 05/22 Wednesday | 2200 Elektřina jinak @ Styx smart club = skoro přes řeku od brmlabu | |||
| 05/23 Thursday | 2000 Digital Signal Processing: Reloaded | |||
| 05/24 Friday | ||||
| Day | Events | |||
| BrmTor | |
|---|---|
|
|
| founder: | ruza |
| depends on: | |
| interested: | |
| software license: | Creative commons |
| hardware license: | n/a |
| status: | done |
Aim of this project is to run Tor_(anonymity_network) node and protect people from being persecuted for information they are receiving and share. Because anonymity matters.
TODO: What would be further steps for extending this project, does anything else need to be done?
iptables -A OUTPUT -m owner --uid-owner debian-tor -j ACCEPT
#!/bin/bash # Pavel Ruzicka <ruza@ruza.eu> # based on http://pivo.glogow.net.pl/linux/docs/lm-25032004.pdf RRDFILE="${PWD}/torstats/torstats.rrd" GRAPH="${RRDFILE/.rrd/.png}" TOR=$(/sbin/iptables -L -n -x -v |egrep 'owner UID match (118|debian-tor)'|\ head -n 1| cut -d ' ' -f 2 ) rrdtool update $RRDFILE N:$TOR rrdtool graph $GRAPH -a PNG --title="BrmTor - DAILY" --vertical-label "bytes" \ DEF:tor=$RRDFILE:tor:AVERAGE AREA:tor#0000ff:tor 1>/dev/null rrdtool graph ${GRAPH/.png/-weekly.png} -a PNG --start -1w --title="BrmTor - \ WEEKLY" --vertical-label "bytes" DEF:tor=$RRDFILE:tor:AVERAGE AREA:tor#0000ff:tor 1>/dev/null rrdtool graph ${GRAPH/.png/-monthly.png} -a PNG --start -1m --title="BrmTor - \ MONTHLY" --vertical-label "bytes" DEF:tor=$RRDFILE:tor:AVERAGE AREA:tor#0000ff:tor 1>/dev/null rrdtool graph ${GRAPH/.png/-yearly.png} -a PNG --start -1y --title="BrmTor - \ YEARLY" --vertical-label "bytes" DEF:tor=$RRDFILE:tor:AVERAGE AREA:tor#0000ff:tor 1>/dev/null
na portu tcp/17237.
ServerTransportPlugin obfs2 exec /usr/local/bin/obfsproxy obfs2 --dest=127.0.0.1:9001 server 0.0.0.0:17237