Comedy of Errors Scene 2, Act 2
Am I on earth, in heaven, or in hell? Asleep or awake? Crazy or sane? These people know me, but I don’t know myself! I’ll agree with them and keep with it, whatever happens. – ANTIPHOLUS OF SYRACUSE
I’ve used dropboxes in the past for penetration testing when onsite social engineering was allowed. The best thing about these were you could guarantee that they would be returned even if found and someone else paid for them.
I ended up with two Nexx WT3020H wireless NAS routers. Two you say? Yeah, comedy of errors act one. I went to Gearbest to order one. I’m not a huge fan of putting my credit card information into foreign sketchy website so I selected the paypal option. Then nothing … blank screen and a loading indicator. After a few minutes the page redirected back and a ‘Thank you for your order’ message appeared. I broke down and decided to order the same one from Amazon and pay the extra three dollars because there is no way that the other one would ship right? A week later the Amazon one shows up and a few days after that the Gearbest one is sitting in my mailbox. L33T H4x0R mode unlocked!
Act two, call up a few of the guys who I know that are interested in pen testing and meet at UNM. Nexx box will not power up when connect to the USB port on my laptop or the USB power port on the wall receptacle. No big deal I planned ahead and brought a wall adapter; still no luck. Time spent with friends is never a waste but no work got done. I honestly thought the device was a brick at this point but I tried a different USB cable later that night and BOOM back in business. So, the cable that ships with the device was junk.
Third act…Every write-up you see says you flash the device, opkg a few installs, scp the SWORD (https://github.com/zer0byte/
Act IV, this is the real deal we are going to get some stuff done! Flashing to OpenWRT is the first step.
The Nexx 3020 has its own entry on the OpenWRT forum making downloading the firmware super easy. The links on that page weren’t working though! I ended up pulling them down from (http://archive.openwrt.org/
Its possible to use the command line to install the firmware but why not use the web interface? Someone spent time coding it, might as well use it.
Following the wiki instructions I used the factory firmware to get from the OEM to OpenWRT (openwrt-15.05.1-ramips-
The device rebooted the LED went from flashing to solid. Good news!
The default OpenWRT IP is 192.168.1.1 and connecting to it gave me the default webpage. Twice this little beast didn’t turn into a brick!
Set a password for the root account and enable SSH on the interface you are using to administer the device. In a real world scenario you would probably enable SSH on the WiFi interface and disable it on the LAN interface. The usage scenario for this is to gain access to the device from the parking lot once it is deployed while leaving the fewest number of ports open on the LAN for detection.
This is where we are going to deviate from all of the simple tutorials. We need to do a exroot on the OpenWRT to get more space. In a real world scenario using a low profile 128GB USB drive would cost about twenty five dollars from Amazon. I used a 32GB one that I already had for this write-up but this doesn’t change the process.
Plug the USB drive into the router. SSH in using the root account, there are a few pieces of pre-work that we need to do. Ensure that the WAN ethernet port has internet access.
opkg update
opkg install fdisk opkg install block-mount
Enable USB support and ext4 file system
opkg install kmod-usb-storage opkg install kmod-fs-ext4 opkg install e2fsprogs
Set up the file system and exroot
fdisk -l
If everything installed correctly you should see your USB drive.
Delete old partition and create a new one, my USB was /dev/sda but your mileage may vary so change as required. I redacted some text, if you can do fdisk without using the help menu first you probably don’t need to be reading this part.
fdisk /dev/sda root@OpenWrt:~# fdisk /dev/sdaCommand (m for help): d Selected partition 1 Partition 1 has been deleted. Command (m for help): w The partition table has been altered. Calling ioctl() to re-read partition table. Syncing disks. Create the new partition, root@OpenWrt:~# fdisk /dev/sda Welcome to fdisk (util-linux 2.25.2). Changes will remain in memory only, until you decide to write them. Be careful before using the write command. Command (m for help): n Partition type p primary (0 primary, 0 extended, 4 free) e extended (container for logical partitions) Select (default p): p Partition number (1-4, default 1): First sector (2048-61489151, default 2048): Last sector, +sectors or +size{K,M,G,T,P} (2048-61489151, default 61489151): Created a new partition 1 of type 'Linux' and of size 29.3 GiB. Command (m for help): w The partition table has been altered. Calling ioctl() to re-read partition table. Syncing disks.
Now that we have a partition format it to ext4. If you want to use a different file system just add those packages instead of ext4.
Format the drive to ex4.
mkfs.ext4 /dev/sda1
Create a mount point and mount the partition you just created.
mkdir /mnt/sda1 mount /dev/sda1 /mnt/sda1
Copy the current file system to the USB stick partition.
mkdir -p /tmp/cproot mount --bind / /tmp/cproot tar -C /tmp/cproot -cvf - . | tar -C /mnt/sda1 -xf - umount /tmp/cproot
The file system is copied over to the USB drive.
Get out your torches, but I don’t like vi so I installed nano. If you like vi just skip this step.
opkg install nano
Next use fstab to mount the USB drive when it boots up and use it as root.
nano /etc/config/fstab
create the initial /etc/config/fstab file using the following.
block detect > /etc/config/fstab
Add the following to the text file.
config 'mount' option target / option device /dev/sda1 option fstype ext4 option options rw,sync option enabled 1 option enabled_fsck 0
Now is the moment of truth, time to reboot. If it doesn’t work you can always reflash it right?
With luck …lights blink …time passes…seasons change…then go solid! Not really it boots really fast. If it switches to a fast blink it came up in fail safe mode so try the ultimate IT hack, unplug it and plug it back in.
SSH to the router and see that all your hard work paid off:
mount
How much space do you have activities now? So much room.
df
Finally, and I do mean finally lets get to work on making this a dropbox. I really like zer0bytes work and might take a stab at building packages in the future to revive SWORD but for now these are what is in the repos. The nmap version is fairly old but should do most things you need that don’t include NSE.
opkg update opkg install bash --force-depends (this should already be installed) opkg install nmap opkg install tcpdump opkg install aircrack-ng
I’m going to spend some more time on this in the near future. Building Nmap to a newer version and adding masscan at the request of the brain trust I bounce all of my ideas off of. Having Responder on the internal network would be my next priority so look out for that also. I have no idea how to get these built on OpenWRT or into the repos but when I figure it out I will let everyone know. Brainstorming some other uses came up with another idea but it will require some additional knowledge on my part and will be slightly farther down the road.
Sources I used because we all stand on the shoulders of those who came before us.
https://samhobbs.co.uk/2013/
Just assume every OpenWRT page about USB storage, exroot, and I read through the repos to figure out why I couldn’t opkg install the SWORD packages.