TOR Exploring Tor with carml

Discussion in 'TOR | TAILS' started by survivalmonkey, Jan 11, 2017.


  1. survivalmonkey

    survivalmonkey Monkey+++

    carml is a command-line, pipe-friendly tool for exploring and controlling a running Tor daemon. Most of the sub-commands will be interesting to developers and tinkerers; a few of these will be interesting to end users. This post concentrates on the developers and tinkerers.

    carml is a Python program written using Twisted and my library txtorcon. If you're familiar with Python, create a new virtualenv and pip install carml. There are more verbose install instructions available. Once this works, you should be able to type carml and see the help output.

    Connecting to Tor


    carml works somewhat like git, in that a normal invocation is carml followed by some global options and then a sub-command with its own options. The most-useful global option is --connect <endpoint> which tells carml how to connect to the control-port. Technically this can be any Twisted client endpoint-string but for Tor will be one of tcp:<port> (or simply a port) or unix:/var/run/tor/control for a unix-socket.

    For Tor Browser Bundle, use carml --connect 9151. Typically a "system" Tor is reachable at carml --connect 9051 or carml --connect unix:/var/run/tor/control. You may need to enable the control-port in the configuration and re-load (or re-start) Tor. More details are in the documentation.

    Start Exploring


    The most interesting general purpose command is probably carml monitor -- try running it for a while and you can see what your Tor client is doing. This gives some good insight into Tor behavior.

    [​IMG]

    A (very basic) usage graph is available via carml graph to see what bandwidth you're using (this needs work on the scaling -- PRs welcome!)

    Explicit Circuits


    Sometimes, you want to use a particular circuit. For example, you're trying to confirm some possibly-nefarious activity of an Exit. We can combine the carml circ and carml stream commands:


    carml circ --build "*,*,4D08D29FDE23E75493E4942BAFDFFB90430A81D2"


    This means make a 3-hop circuit through any entry-guard, any middle and then one particular exit (identified by ID). You can*= identify via name (only if it's unique!) but hashes are highly recommended. Of course, you could explicitly choose the other hops as well. Note that the stars still leave the selection up to carml / txtorcon which cannot (and does not) use Tor's exact selection algorithm.

    Next, you'll want to actually attach circuits to that stream. It will have printed out something like "Circuit ID 1234". Now we can use carml stream:


    carml stream --attach 1234


    This will cause all new streams to be attached to circuit 1234 (until we exit the carml stream command). In another terminal, try torsocks curl https://www.torproject.org to visit Tor Project's web site via your new circuit. Once you kill the above carml stream command, Tor will select circuits via its normal algorithm once again.

    Note that it's not currently possible to attach streams destined for onion services (this is a Tor limitation, see connection_edge.c).

    Debugging Tor


    The control protocol reveals all Tor events, which includes INFO and DEBUG logging events. This allows you to easily turn on DEBUG and INFO logging via the carml events command:


    carml events INFO DEBUG


    This can of course be piped through grep or anything else. You can give a --count to carml events, which is useful for some of the other events.

    For example, if you want to "do something" every time a new consensus document is published, you could do this:


    carml events --once NEWCONSENSUS


    This will wait until exactly one NEWCONSENSUS event is produced, dump the contents of it to stdout (which will be the new consensus) and exit. Using a bash script that runs the above (maybe piped to /dev/null) you can ensure a new consensus is available before continuing.

    Events that Tor emits are documented in torspec section 4.1. You can use carml to list them, with carml events --list.

    Another example might be that you want to ensure your relay is still listed in the consensus every hour. One way would be to schedule a cron-job shortly before the top of each hour which does something like:


    carml events --once NEWCONSENSUS | grep
    # log something useful if grep didn't find anything

    Raw Commands


    You can issue a raw control-port command to Tor via the carml cmd sub-command. This takes care of authentication, etc. and exits when the command succeeds (or errors). This can be useful to test out new commands under development etc (as the inputs / outputs are not in any way validated).

    Every argument after cmd is joined back together with spaces before being sent to Tor so you don't have to quote things.


    carml cmd getinfo info/names
    carml cmd ADD_ONION NEW:BEST Port=1234

    End-User Commands


    Briefly, the commands intended to be "end-user useful" are:

    carml pastebin: create a new hidden service and serve a directory, single file, or stdin at it. You can combine with carml copybin or simply torsocks curl ... on the other side. Still an "exercise to the reader" to securely distribute the address.

    [​IMG]

    carml tbb: download, verify and run a new Tor Browser Bundle. This pins the public-key of torproject.org and bundles the keys of likely suspects that sign the bundles. It is less useful now that TBB auto-updates.

    carml newid: sends the NEWNYM signal, which clears the DNS cache and causes Tor to not re-use any existing circuits for new requests.

    carml monitor shows you what Tor is doing currently. Similarly, carml graph shows you just the current in/out bandwidth.

    Pure Entertainment


    Commands that can provide hours of entertainment include:

    • carml xplanet
    • carml tmux

    I hope you find carml useful. Suggestions, bugs, and fixes all welcome on carml's GitHub page.

    See Also


    There is also a curses-based Tor tool called ARM (blog post). This is being re-written as "Nyx" currently.

    Continue reading...
     
survivalmonkey SSL seal        survivalmonkey.com warrant canary
17282WuJHksJ9798f34razfKbPATqTq9E7