Reply
Thread Tools
Posts: 1 | Thanked: 1 time | Joined on Oct 2010
#571
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? :-)
 

The Following User Says Thank You to smithyduk For This Useful Post:
Posts: 163 | Thanked: 96 times | Joined on Feb 2010 @ Israel
#572
Originally Posted by smithyduk View Post
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.
 
Posts: 10 | Thanked: 7 times | Joined on Sep 2010
#573
Good morning All

Originally Posted by aureonfirewire View Post
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
Attached Images
  
 
joshv06's Avatar
Posts: 346 | Thanked: 139 times | Joined on Jan 2008 @ Houston Texas
#574
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
__________________
Nokia N900
joshuavidana@gmail.com
 
OptX's Avatar
Posts: 293 | Thanked: 206 times | Joined on Oct 2009 @ Germnay
#575
Originally Posted by joshv06 View Post
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
 

The Following User Says Thank You to OptX For This Useful Post:
kamiwey's Avatar
Posts: 121 | Thanked: 100 times | Joined on Jun 2010
#576
Originally Posted by OptX View Post
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
 
Posts: 23 | Thanked: 0 times | Joined on Sep 2010
#577
how can i use wl1251_io.h,and where to put that file ?
 
Posts: 42 | Thanked: 13 times | Joined on Jun 2010 @ Netherlands
#578
Originally Posted by lost_bro View Post
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....
 

The Following 2 Users Say Thank You to sake For This Useful Post:
jd4200's Avatar
Posts: 451 | Thanked: 424 times | Joined on Apr 2010 @ England
#579
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.
__________________
BTC:
19ePiXZUdxqNAq9tStLzZV4dduSQeGPJzj
 
badabing's Avatar
Posts: 24 | Thanked: 4 times | Joined on May 2010 @ Groningen, The Netherlands
#580
Is there any way as European to get the beta release with paying? Can't pay with Amazon..
 
Reply


 
Forum Jump


All times are GMT. The time now is 23:55.