💾 Archived View for gemini.circumlunar.space › users › shokara › articles › kobo-clara-nickel.gmi captured on 2023-12-28 at 16:23:00. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2021-12-03)
-=-=-=-=-=-=-
<h1 id="Kobo%20Clara%20Notes">Kobo Clara Notes</h1>
<p>Last Updated: 2021-02-15</p>
<p>My ereader of choice is the Kobo Clara HD and I particularly like it because my
eyes hurt less when reading for long periods of time compared to when I read on
my phone or when I still had my iPad. It also had much longer battery life and
only need to charge it about once every two weeks when I read for about 4 hours
on average daily.</p>
<p>However, the two notable things I don't like about it is it's included
telemetry, like using Google Analytics by default and keeping a unique salt</p>
<p>Spyware/Anti-Features:
* You may or may not like this, I personally hate it
* I don't like the new redesign in firmware v4.23.15505</p>
<p>I'm also assuming your Kobo reader and it's SD card's device file would be
would located at /dev/sdf and be mounted at /mnt/kobo.</p>
<h1 id="Upgrade&#47;Backup%20Included%20SD%20Card">Upgrade/Backup Included SD Card</h1>
<p>While the included 8GB microSD card is decent for storing your ebook library
that may not have a lot of images, that would likely not be enough if you were
aiming to read some comics on your ereader as they can be pretty big (quite a
few of mine are over a gigabyte, with some over 8). Luckily, you can replace
the microSD card with another one. </p>
<p>Before upgrading, you should backup the SD card to into an image file so the
filesystem would be preserved when putting the contents of the image on the new
SD card. I'm using the command <code>dd</code> but there might be another program doing
the same thing. Even if you're not going to upgrade, I still suggest to backup
the SD card in case something goes wrong.</p>
<pre><code class="language-sh">dd if=/dev/sdf of=kobo_sd.img conv=sync
</code></pre>
<p>After this is done, you can plug in your new SD card and reimage kobo_sd.img
onto it. With dd, you can do something like:</p>
<pre><code class="language-sh">dd if=kobo_sd.img of=/dev/sdf conv=sync
</code></pre>
<p>Checking it's partition table via <code>lsblk</code> or <code>fdisk -l</code> should show three
partitions. If you replaced the SD card with something bigger, than you should
resize the third partition.</p>
<h1 id="Bypassing%20Registration%20On%20Setup">Bypassing Registration On Setup</h1>
<p>When setting up your Kobo, you will be asked to sign into a Kobo account. There
are other options like logging in via Google, Walmart, and other stores, but I
don't like having to login to a device that would likely not be connected to
the public internet. Fortunately, you can bypass this by choosing that you
cannot connect to a Wi-Fi network and mount your Kobo to your computer. In,
<code>.kobo/KoboReader.sqlite</code>, you can run:</p>
<pre><code class="language-sh">echo "INSERT INTO user(UserID,UserKey) VALUES('1','');" \
| sqlite3 KoboReader.sqlite
</code></pre>
<p>This way you don't have to install their application just to be able to use
your device.</p>
<p>Note: Do not try doing this when you still have your SD card mounted before you
setup your device. The device's screen would likely not update, at least on an
early firmware version like v4.7.10733.</p>
<h1 id="Blocking%20Google%20Analytics%20and%20other%20Telemetry">Blocking Google Analytics and other Telemetry</h1>
<p>Just adding <code>0.0.0.0 analytics.google.com</code> to /etc/hosts may be enough to block
most of the telemetry from being sent. However, you can try intercepting what
connections your Kobo is making via mitmproxy set to transparent mode or using
a hosts file that blocks all connections to Google (but not necessarily to
Kobo's servers) like <a href="https://codeberg.org/baobab/hosts">Baobab's host file</a>
<a href="https://codeberg.org/baobab/hosts/raw/branch/master/hosts">(raw file here)</a>.</p>
<p>To put the hosts file without root (which will be detailed in another section),
you can make a directory called etc, put the hosts file in there, and tar it
into a file called KoboRoot.tgz.</p>
<pre><code class="language-sh">mkdir etc
wget -O etc/hosts https://codeberg.org/baobab/hosts/raw/branch/master/hosts
tar czvf KoboRoot.tgz etc
cp KoboRoot.tgz /mnt/kobo/.kobo/
</code></pre>
<p>When you move a tar file with that name into your Kobo's .kobo folder, it's
contents gets untarred into it's root at / when the device is turned on again,
which is usually done for their updates but can be used for custom files like
this and gaining root access.</p>
<h1 id="Gaining%20Root%20Access%20via%20Telnet">Gaining Root Access via Telnet</h1>
<p>To gain root access, we first need to get the <code>/etc/inittab</code> and
<code>/etc/inetd.conf</code> which you can get from mounting the SD card's first partition
into your computer (the second partition seems to be like a backup). You should
copy those two files into a folder called <code>etc</code> somewhere (probably not on the
SD card).</p>
<p>In the <code>etc/inittab</code> file, you should add these two lines:</p>
<pre><code>::sysinit:/etc/custominit.sh
::respawn:/usr/sbin/inetd -f /etc/inetd2.conf
</code></pre>
<p>You would want to rename the etc/inetd.conf file you copied into
etc/inetd2.conf (or whatever the custom inetd.conf's filename is) and when
editing that, you should add:</p>
<pre><code>23 stream tcp nowait root /bin/busybox telnetd -i
</code></pre>
<p>However, if there is already a commented line for root telnet in the
inetd2.conf, you should probably still add the above line and ignore the
commented line as that may or may not work (didn't for me).</p>
<p>After that, you just have to tar the <code>etc/</code> folder again and copy it to your
Kobo's onboard/third partition's <code>.kobo</code> folder.</p>
<pre><code class="language-sh">tar czvf KoboRoot.tgz etc
cp KoboRoot.tgz /mnt/kobo/.kobo/
</code></pre>
<p>Now you could put your SD card back into your Kobo provided that they are
already unmounted and turn your Kobo back on.</p>
<p>After connecting to the WiFi, simplying telnetting (?) into your Kobo and
logging in as root should give you a root shell. :D
<code>
telnet $KOBO_IP
</code></p>
<p>By default, root has no password so you should change it with <code>passwd</code>.</p>
<h1 id="Getting%20SSH%20and%20SFTP%20access%20via%20Dropbear">Getting SSH and SFTP access via Dropbear</h1>
<p>I'm using Dropbear instead of OpenSSH because it's better suited for embedded
hardware like the Kobo Clara HD. Obviously we can't copy a binary compiled for
amd64 or whatever architecture your compiling computer is running so we would
have to cross-compile for our ereader.</p>
<p>Fortunately, we are not required to cross-compile gcc/clang and friends as we
can simply download the linaro arm toolchain which has the binaries for gcc and
others included. You could get the toolchain <a href="https://releases.linaro.org/components/toolchain/binaries/latest-7/arm-linux-gnueabihf/">here</a>
and you should get the release that matches your host's architecture. After
untarring the file, you should also set your PATH variable to the toolchain's
bin/ folder so you don't have to manually set the CC and CXX variables when
building Dropbear.</p>
<pre><code>wget https://releases.linaro.org/components/toolchain/binaries/latest-7/arm-linux-gnueabihf/gcc-linaro-7.5.0-2019.12-x86_64_arm-linux-gnueabihf.tar.xz
tar xvf gcc-linaro-7.5.0-2019.12-x86_64_arm-linux-gnueabihf.tar.xz
export PATH=$(pwd)/gcc-linaro-7.5.0-2019.12-x86_64_arm-linux-gnueabihf/bin:$PATH
</code></pre>
<p>Now you could get the source for Dropbear and cross-compile it. The source can
be found on their <a href="https://matt.ucc.asn.au/dropbear/dropbear.html">homepage (cuckflared)</a> or <a href="https://github.com/mkj/dropbear/releases">github repo</a>.</p>
<pre><code>wget https://matt.ucc.asn.au/dropbear/releases/dropbear-2020.81.tar.bz2
tar xvf dropbear-2020.81.tar.bz2
cd dropbear-2020.81
./configure --enable-static --host=arm-linux-gnueabihf # these two are the important flags, but other flags can be enabled/disabled
make MULTI=1 PROGRAMS"dropbear dropbearkey" # MULTI=1 combines the binaries like busybox does and is also smaller in size
</code></pre>
<p>Now you only need to copy the <code>dropbearmulti</code> binary over to your Kobo. What
I've done is running <code>python3 -m http.server</code> and downloading the file onto my
Kobo but you could also just copy it onto the microSD card.</p>
<pre><code>wget your.computer.ip.or.fqdn:8000/dropbearmulti
chmod +x dropbearmulti
mv dropbearmulti /usr/bin
cd /usr/bin
ln -s dropbearmulti dropbear # optional but dropbear would be an argument for dropbearmulti
ln -s dropbearmulti dropbearkey # optional and similar to above comment
</code></pre>
<p>Now you only need to generate the host keys. My client key is ed25519 so I'm not
going to generate the others.</p>
<pre><code>mkdir /etc/dropbear
dropbearkey -t ed25519 -f /etc/dropbear/dropbear_ed25519_host_key # or just run include the -R flag when running dropbear
dropbear -F -r /etc/dropbear/dropbear_ed25519_key
</code></pre>
<p>Now you could ssh into your Kobo and login as root. Remember to change root's
password beforehand though if you haven't already! I suggest copying your
public key to your Kobo via ssh-copy-id so you don't have to enter root's
password all the time and so password-based logins can be disabled in dropbear.</p>
<p>To start it on boot, you could add the following line to <code>/etc/inetd2.conf</code>:</p>
<pre><code>22 stream tcp nowait root /usr/bin/dropbearmulti dropbear -i -r /etc/dropbear/dropbear_ed25519_key
</code></pre>
<p>For some reason, the symlink wasn't resolving for me inetd so I had to call the
multi-binary directly. You could also add the command/args into
/etc/custominit.sh.</p>
<h1 id="FTP%20Access">FTP Access</h1>
<p>If you don't or can't use sftp or scp for some reason, there's always ftp :D
There's a ftp daemon included in busybox so all we have to do is enable it in
<code>/etc/inetd2.conf</code>:</p>
<pre><code>21 stream tcp nowait root /bin/busybox ftpd -w -S /
</code></pre>
<p>This would share the entire filesystem so you may or may not want to restrict
the shared directory to maybe just your ebook directory (<code>/mnt/onboard</code>) and
move the files out via telnet or ssh.</p>
<h1 id="Monitoring%20Connections%20via%20mitmproxy">Monitoring Connections via mitmproxy</h1>
<p>TODO</p>
<h1 id="References%20and%20Other%20Links">References and Other Links</h1>
<p><a href="https://remy.grunblatt.org/kobo-aura-h2o-electronic-reader-hacking.html">0</a>
<a href="https://yingtongli.me/blog/2018/07/30/kobo-rego.html">1</a>
<a href="https://www.mobileread.com/forums/showthread.php?t=162713">2</a>
<a href="https://wiki.mobileread.com/wiki/Kobo_Touch_Hacking">3</a></p>