Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > PocketBook > PocketBook Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 04-09-2026, 01:36 PM   #196
kakonema
Member
kakonema knows more than wikipediakakonema knows more than wikipediakakonema knows more than wikipediakakonema knows more than wikipediakakonema knows more than wikipediakakonema knows more than wikipediakakonema knows more than wikipediakakonema knows more than wikipediakakonema knows more than wikipediakakonema knows more than wikipediakakonema knows more than wikipedia
 
Posts: 16
Karma: 47542
Join Date: Aug 2019
Device: PB632 THD3
Quote:
Originally Posted by leomeyer View Post
Jailbreak apparently does not work on Verse Pro Color (U634k3.6.8.3806) with Linux kernel version 4.9.56 (this is the kernel version in the current SDK 6.8 for the B300 CPU).

Maybe the exploit in the old kernel (3.10.65 iirc) has been fixed so this tool will no longer work on newer devices.

Can anyone confirm this? Is someone already working on a fix?

Thanks, Leo
This jailbreak is based on the old linux kernel exploit that affects kernel versions ranging from 2.x to 4.8.2, so any device with kernel version 4.8.3 or newer is unaffected by this exploit.

Last edited by kakonema; 04-09-2026 at 05:59 PM.
kakonema is offline   Reply With Quote
Old 04-29-2026, 03:53 PM   #197
AlexPechkin
Junior Member
AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.
 
Posts: 2
Karma: 94996
Join Date: Apr 2026
Device: Pocketbook Verse Pro
Quote:
Originally Posted by Valwit View Post
Verse Pro still uses 3.10.65+
Does this jailbreak work on latest firmware on Verse Pro? For some reason I couldn't get FTP server to work. The same with HTTP server actually. But the root menu in settings indeed appears.
AlexPechkin is offline   Reply With Quote
Old 04-30-2026, 04:04 AM   #198
AlexPechkin
Junior Member
AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.AlexPechkin has top level security clearance to Area 51.
 
Posts: 2
Karma: 94996
Join Date: Apr 2026
Device: Pocketbook Verse Pro
How to fix FTP on rooted PocketBook with newer firmware

On newer PocketBook firmware, proftpd fails to start because libcrypt.so.1 is missing. The root cause is that pbjb binaries were compiled for armel (soft-float), but the library is not present on the device. Here's how to fix it.

Prerequisites
- pbjb installed (jailbreak + services): http://github.com/ezdiy/pbjb
- SSH enabled in Rooted device settings
- Phone and PocketBook on the same Wi-Fi network
- Termux installed on Android (from F-Droid or Play Store)

Step 1 - Connect via SSH

Standard Termux uses Dropbear as SSH client which is incompatible with the old algorithms on the PocketBook SSH server. Install OpenSSH first:

Code:
pkg install openssh
Then connect (replace IP with what you see in Rooted device settings → System status):

Code:
ssh -oHostKeyAlgorithms=+ssh-rsa root@192.168.x.x
Your password is stored in /mnt/ext1/password.txt — the value after password=.

Step 2 - Fix missing libcrypt.so.1

The key insight: PocketBook uses armel (soft-float ABI), so armhf packages from Debian will NOT work. You need the armel version of glibc.

Run these commands in your SSH session on the PocketBook:

Code:
# Remount /ebrmain as read-write
mount -o remount,rw /ebrmain

# Download correct glibc version (armel!)
curl -O http://archive.debian.org/debian/pool/main/g/glibc/libc6_2.19-18+deb8u10_armel.deb

# Extract
busybox ar x libc6_2.19-18+deb8u10_armel.deb
busybox tar xzf data.tar.gz

# Copy the library
cp ./lib/arm-linux-gnueabi/libcrypt-2.19.so /ebrmain/lib/libcrypt.so.1
Step 3 - Start FTP server

Code:
/mnt/secure/bin/proftpd
Now connect from any FTP client:
- Host: IP shown in System status
- Port: 21
- Username: root
- Password: value from password.txt

Notes
- proftpd starts automatically on reboot if FTP is enabled in Rooted device settings
- SFTP does not work even after this fix. sftp-server also requires a libcrypto symlink (ln -s /ebrmain/lib/libcrypto.so.3 /ebrmain/lib/libcrypto.so.1.0.0) but still fails due to further incompatibilities with newer firmware
- For file transfer from Termux you can also use SCP:
Code:
scp -oHostKeyAlgorithms=+ssh-rsa /path/to/file root@192.168.x.x:/mnt/ext1/
- Tested on PocketBook firmware 6.10.x with pbjb v8
AlexPechkin is offline   Reply With Quote
Old 05-02-2026, 03:37 AM   #199
nhedgehog
Guru
nhedgehog ought to be getting tired of karma fortunes by now.nhedgehog ought to be getting tired of karma fortunes by now.nhedgehog ought to be getting tired of karma fortunes by now.nhedgehog ought to be getting tired of karma fortunes by now.nhedgehog ought to be getting tired of karma fortunes by now.nhedgehog ought to be getting tired of karma fortunes by now.nhedgehog ought to be getting tired of karma fortunes by now.nhedgehog ought to be getting tired of karma fortunes by now.nhedgehog ought to be getting tired of karma fortunes by now.nhedgehog ought to be getting tired of karma fortunes by now.nhedgehog ought to be getting tired of karma fortunes by now.
 
Posts: 854
Karma: 694086
Join Date: Sep 2013
Device: EnergySistemEreaderPro, Nook STG, Pocketbook 622, Bookeen Cybooks ...
@AlexPechkin: Cool, thanks for sharing this. I think most of us are using SCP via KoReader, since it has an integrated SSH server option.
nhedgehog is offline   Reply With Quote
Reply

Tags
root


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Paperwhite 2 usbnet asks for root password cokolokolo Kindle Developer's Corner 2 09-07-2014 04:51 PM
/etc/sysconfig/iptables from 3.0.1 wahlis Amazon Kindle 1 08-14-2011 10:10 AM
iLiad Samba/smbd/shared folder access to iLiad ajnorth iRex Developer's Corner 12 02-29-2008 09:02 AM


All times are GMT -4. The time now is 02:13 AM.


MobileRead.com is a privately owned, operated and funded community.