Reply
Visitor
ahmadha
Posts: 1
Registered: ‎07-19-2011
0

telnet credentials for goflex satellite

Does anyone know the username and password for the go flex satellite. the device responds to telnet; however i do not know what the default credentials are. I don't want to brute force the device.

Byte
nevdull
Posts: 19
Registered: ‎02-06-2008

Re: telnet credentials for goflex satellite

There's two accounts in the passwd file that have passwords set:

 

root:VruSTav0/g/yg:0:0:root:/home/root:/bin/sh
xoFaeS:QGd9zEjQYxxf2:500:500:Linux User,,,:/home/xoFaeS:/bin/sh


The "root" one was easily cracked with John The Ripper and is simply "goflex". The other account, "xoFaeS", was not found - but the root password works fine over telnet.

Byte
nevdull
Posts: 19
Registered: ‎02-06-2008

Re: telnet credentials for goflex satellite

This optware feed works fine with it:

 

http://ipkg.nslu2-linux.org/feeds/optware/cs08q1armel/cross/unstable/

 

Mirror all that to a folder called "optware" on the root of the hard drive via USB.

 

Log in via telnet with root, and run:

 

mkdir /satellite_app/www/satellite/media/optware

mount -o bind /media/sda1/optware /satellite_app/www/satellite/media/optware

cd /media/sda1/optware

tar -xOvzf ipkg-opt_0.99.163-10_arm.ipk ./data.tar.gz | tar -C / -xzvf -

# (replace the ipkg-opt with whatever version you downloaded)

vi /opt/etc/ipkg.conf

# add: "src/gz cs08q1armel http://192.168.0.1/media/optware"

# 192.168.0.1 is the local IP for the GoFlex Satellite box.

/opt/bin/ipkg update

/opt/bin/ipkg -t /media/sda1 install PACKAGENAME

# -t specifies an alternative tmp dir, use a folder on the hard drive to save space.

 

(YMMV, commands may contain typos, etc)

 

I suggest samba2 (not samba, as it's samba3 and installs a ton of other stuff with it), dropbear for SSH and nano if you're not as quick with vi.

 

 

Kilobyte
jocala
Posts: 28
Registered: ‎08-06-2011
0

Re: telnet credentials for goflex satellite

Great find. john gave me a password for user xoFaeS of etagknil which works. The password john generated for root was "shabbira" and incorrect. goflex works great :smileyhappy:

 

 

 




Megabyte
GTVEVO
Posts: 79
Registered: ‎08-01-2011
0

Re: telnet credentials for goflex satellite

[ Edited ]

With the user xoFaeS can you access the SSH or SMB services or are these something that still need to be installed via funplug or something of the sort utilizing telnet? I would really like to get SMB working, any help would be greatly appreciated.

Kilobyte
jocala
Posts: 28
Registered: ‎08-06-2011
0

Re: telnet credentials for goflex satellite

ssh and samba are not installed on the stock device. Hopefully, they can be added in w/o too much trouble.

 

Kilobyte
Lusid1
Posts: 58
Registered: ‎08-02-2011
0

Re: telnet credentials for goflex satellite

[ Edited ]

Thanks for the tips. I got samba2 installed and configured, and it's working great.

Now I'm trying to fix minidlna. They seem to be spawning it in rebuild mode, but can't find it. Still looking.

Megabyte
GTVEVO
Posts: 79
Registered: ‎08-01-2011
0

Re: telnet credentials for goflex satellite

Well I have samba installed and I can get it to start but I can't connect to anything "/opt/etc/init.d/S80samba start".

 

Mind If I post my configuration file?

Megabyte
GTVEVO
Posts: 79
Registered: ‎08-01-2011
0

Re: telnet credentials for goflex satellite

ok I was able to get this running finally but really a pain to map the drives in OSX Lion or Win7 either one. If I make them public it works on Win7 but OSX has had some sort of change with how it maps smb so no luck there yet.

Byte
Orphaned Gland
Posts: 5
Registered: ‎08-17-2011
0

Re: telnet credentials for goflex satellite

Great stuff nevdull, samba works like a charm!