maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Alternatives (https://talk.maemo.org/forumdisplay.php?f=36)
-   -   NeoPwn v2 = BackTrack Mobile! (https://talk.maemo.org/showthread.php?t=45472)

smithyduk 2010-10-02 22:05

Re: NeoPwn v2 = BackTrack Mobile!
 
Silly question but why are neopwn patching the wl1251's driver when the source is availible under GPL?

http://www.koders.com/c/fid6F7C1BB28...734.aspx?s=crc

Or am I missing somthing apart from sleep? :-)

dbrodie 2010-10-03 07:44

Re: NeoPwn v2 = BackTrack Mobile!
 
Quote:

Originally Posted by smithyduk (Post 831897)
Silly question but why are neopwn patching the wl1251's driver when the source is availible under GPL?

http://www.koders.com/c/fid6F7C1BB28...734.aspx?s=crc

Or am I missing somthing apart from sleep? :-)

I have a similar question. Since the original is under GPL, neopwn's author (distributor? let just call him neopwn), is required by the license (and moral obligation of free software), to (allow to) distribute the source to anyon he ships the binary to. Has anyone that bought the closed beta received the source of the patched driver?
This is critical! Since when (if?) the beta becomes open (or any other means of making the distribution bigger) we will need the source to make sure this lives on, for meego/android/titan's kernel/etc...

So, could anyone that is in the closed beta ask for the source? Don't (necessarily) distribute it, just make sure neopwn agrees to give it out so it will be available eventually.

lost_bro 2010-10-03 17:00

Re: NeoPwn v2 = BackTrack Mobile!
 
2 Attachment(s)
Good morning All

Quote:

Originally Posted by aureonfirewire (Post 831763)
i have problem with starting metasploit and set in neopwn ,other programs like grim wepa work pefect ,but when i start set ,or metasploit it starting ,and just exit,
tanks for any help

Yes, I experienced the same problem.
Running './msfconsole in the directory gave me a 'path' error apparently regarding the 'shebang' line in the 'msfconsole' file:
!/usr/bin/env ruby
It seems the 'env' 'program' is not providing the correct path to ruby.
When I edited the 'shebang' line on msfconsole to:
!/usr/bin/ruby1.8 without using the 'env' , I can now './msfconsole' in the directory and open a working metasploit console on xterm. See screenshot 02.
THE PROBLEM is this:
When I go to the Neopwn gui. and open metasploit, I get an 'stty' standard input: invalid argument error. See screenshot 04.
There was a bug #426 in the Metasploit archives earlier which gave the same output. The solution at the time was:
http://www.metasploit.com/redmine/issues/426
"The correct fix will be to check for stdin == tty and ignore readline entirely"
If someone with more experience in this can give any advice, Please don't hesitate to give input!

thanx for the input

lost_bro

joshv06 2010-10-04 14:18

Re: NeoPwn v2 = BackTrack Mobile!
 
What are you guys using to format the MicroSD to EXT3? Is there anyway I can have NitDroid and NeoPwn on the same MicroSD Card?

Thanks

OptX 2010-10-07 14:11

Re: NeoPwn v2 = BackTrack Mobile!
 
Quote:

Originally Posted by joshv06 (Post 833045)
What are you guys using to format the MicroSD to EXT3? Is there anyway I can have NitDroid and NeoPwn on the same MicroSD Card?

Thanks

I used gparted in ubuntu to format / partition the SD Card.
Here is a solution to use Multiboot : http://talk.maemo.org/showpost.php?p...&postcount=526

I have Neopwn, Nitdroid, and a native Debian on my 16GB SD :)

kamiwey 2010-10-08 10:34

Re: NeoPwn v2 = BackTrack Mobile!
 
Quote:

Originally Posted by OptX (Post 835447)
I used gparted in ubuntu to format / partition the SD Card.
Here is a solution to use Multiboot : http://talk.maemo.org/showpost.php?p...&postcount=526

I have Neopwn, Nitdroid, and a native Debian on my 16GB SD :)

hello man, can you please explain more how you have neopwn and nitdroid, i would like to have both in my sd card, i have neopwn already but went im afraid to use the autoinstall of nitdorid cuz i dont want lose the neopwn.
thanks in advance;)

aureonfirewire 2010-10-15 06:58

Re: NeoPwn v2 = BackTrack Mobile!
 
how can i use wl1251_io.h,and where to put that file ?

sake 2010-10-16 13:45

Re: NeoPwn v2 = BackTrack Mobile!
 
Quote:

Originally Posted by lost_bro (Post 832380)
Good morning All



Yes, I experienced the same problem.
Running './msfconsole in the directory gave me a 'path' error apparently regarding the 'shebang' line in the 'msfconsole' file:
!/usr/bin/env ruby
It seems the 'env' 'program' is not providing the correct path to ruby.
When I edited the 'shebang' line on msfconsole to:
!/usr/bin/ruby1.8 without using the 'env' , I can now './msfconsole' in the directory and open a working metasploit console on xterm. See screenshot 02.
THE PROBLEM is this:
When I go to the Neopwn gui. and open metasploit, I get an 'stty' standard input: invalid argument error. See screenshot 04.
There was a bug #426 in the Metasploit archives earlier which gave the same output. The solution at the time was:
http://www.metasploit.com/redmine/issues/426
"The correct fix will be to check for stdin == tty and ignore readline entirely"
If someone with more experience in this can give any advice, Please don't hesitate to give input!

thanx for the input

lost_bro

Neopwn ships with an old version of ruby, Metasploit will run much faster with the new one.
to upgrade (copy the following to neopwn terminal):
Code:

apt-get remove ruby ruby-full
cd && wget ftp://ftp.ruby-lang.org//pub/ruby/1.9/ruby-1.9.2-p0.tar.gz
tar xvf ruby-1.9.2-p0.tar.gz && cd ruby-1.9.2* && ./configure --prefix=/usr && make && make install
# install rubygems
cd && wget http://production.cf.rubygems.org/rubygems/rubygems-1.3.7.tgz && tar xvf rubygems-1.3.7.tgz && cd rubygems-1.3.7 && ruby setup.rb

to have database support:
Code:

apt-get install postgresql-server-9.0 libpq-dev
gem install pq
su postgres
#you will be prompted for a password. remember the pass
createuser -d -S -r -P msf3
createdb --owner=msf3 msf_db
exit
echo '
db_driver postgresql
sh -c "/etc/init.d/postgresql restart"
db_connect msf3:[password]@127.0.0.1/msf_db
db_workspace -a msf3' > ~/.msf3/msfconsole.rc


there you go....

jd4200 2010-10-18 18:07

Re: NeoPwn v2 = BackTrack Mobile!
 
When trying to set into monitor mode with airmon-ng, it complains that iw isn't installed.

Where can I obtain it?

I've tried compiling it on the phone but to no avail.

badabing 2010-10-20 02:15

Re: NeoPwn v2 = BackTrack Mobile!
 
Is there any way as European to get the beta release with paying? Can't pay with Amazon..


All times are GMT. The time now is 18:18.

vBulletin® Version 3.8.8