Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   [HELP!] a doubt about entering password in python (http://www.velocityreviews.com/forums/t956632-help-a-doubt-about-entering-password-in-python.html)

douxin 01-18-2013 02:49 AM

[HELP!] a doubt about entering password in python
 
Hi all:

i have some doubts in doing python programming

i wanted to execute a command "su -c 'fdisk -l'",and it needed a
password
so i wanted to write a python script to get this done.

i knew 'pexpect' would work fine,but i had to set a certain timeout
to take care of the real delay time which i probably didn't know

i tried to use 'subprocess' to do this,however,it did not work
well,and came the problem

i use Popen to execute "su -c 'fdisk -l'" in sub process,and
assigned subprocess.PIPE to stdin,stdout
i tried to enter password by doing "stdin.write("password"+"\n")"
and i expected i could get the output of "fdisk -l" by doing
"stdout.read()"
it didn't work.

will somebody tell me what is going on with that?
i'll appreciate i can learn from you

Dou



Steven D'Aprano 01-18-2013 03:12 AM

Re: [HELP!] a doubt about entering password in python
 
On Fri, 18 Jan 2013 10:49:30 +0800, douxin wrote:

> i use Popen to execute "su -c 'fdisk -l'" in sub process,and
> assigned subprocess.PIPE to stdin,stdout i tried to enter password
> by doing "stdin.write("password"+"\n")" and i expected i could get
> the output of "fdisk -l" by doing "stdout.read()"
> it didn't work.
>
> will somebody tell me what is going on with that?


Would you like us to guess what happened? I love guessing games!

My guess is that it output "su: incorrect password", which means you have
the wrong password. Is that it?

If not, my guess is that it output "fdisk: command not found", in which
case your system is broken and the fdisk binary is missing or not on the
PATH. Am I close?

Last guess: you got a Python traceback with an error:

NameError: name 'subprocess' is not defined

You need to import the subprocess first.


If none of my guesses are correct, could we have some hints? Perhaps show
us the actual code you are using, and the actual results, copied and
pasted exactly.

Thank you.


--
Steven

MRAB 01-18-2013 04:00 AM

Re: [HELP!] a doubt about entering password in python
 
On 2013-01-18 03:12, Steven D'Aprano wrote:
> On Fri, 18 Jan 2013 10:49:30 +0800, douxin wrote:
>
>> i use Popen to execute "su -c 'fdisk -l'" in sub process,and
>> assigned subprocess.PIPE to stdin,stdout i tried to enter password
>> by doing "stdin.write("password"+"\n")" and i expected i could get
>> the output of "fdisk -l" by doing "stdout.read()"
>> it didn't work.
>>
>> will somebody tell me what is going on with that?

>
> Would you like us to guess what happened? I love guessing games!
>
> My guess is that it output "su: incorrect password", which means you have
> the wrong password. Is that it?
>
> If not, my guess is that it output "fdisk: command not found", in which
> case your system is broken and the fdisk binary is missing or not on the
> PATH. Am I close?
>
> Last guess: you got a Python traceback with an error:
>
> NameError: name 'subprocess' is not defined
>
> You need to import the subprocess first.
>
>
> If none of my guesses are correct, could we have some hints? Perhaps show
> us the actual code you are using, and the actual results, copied and
> pasted exactly.
>

It may, of course, be that for security reasons it won't accept a
password from
whatever happens to be connected to stdin, but instead insists that it's
entered
directly from the keyboard, if you see what I mean.

Ramchandra Apte 01-18-2013 04:45 AM

Re: [HELP!] a doubt about entering password in python
 
On Friday, January 18, 2013 9:30:29 AM UTC+5:30, MRAB wrote:
> On 2013-01-18 03:12, Steven D'Aprano wrote:
>
> > On Fri, 18 Jan 2013 10:49:30 +0800, douxin wrote:

>
> >

>
> >> i use Popen to execute "su -c 'fdisk -l'" in sub process,and

>
> >> assigned subprocess.PIPE to stdin,stdout i tried to enter password

>
> >> by doing "stdin.write("password"+"\n")" and i expected i could get

>
> >> the output of "fdisk -l" by doing "stdout.read()"

>
> >> it didn't work.

>
> >>

>
> >> will somebody tell me what is going on with that?

>
> >

>
> > Would you like us to guess what happened? I love guessing games!

>
> >

>
> > My guess is that it output "su: incorrect password", which means you have

>
> > the wrong password. Is that it?

>
> >

>
> > If not, my guess is that it output "fdisk: command not found", in which

>
> > case your system is broken and the fdisk binary is missing or not on the

>
> > PATH. Am I close?

>
> >

>
> > Last guess: you got a Python traceback with an error:

>
> >

>
> > NameError: name 'subprocess' is not defined

>
> >

>
> > You need to import the subprocess first.

>
> >

>
> >

>
> > If none of my guesses are correct, could we have some hints? Perhaps show

>
> > us the actual code you are using, and the actual results, copied and

>
> > pasted exactly.

>
> >

>
> It may, of course, be that for security reasons it won't accept a
>
> password from
>
> whatever happens to be connected to stdin, but instead insists that it's
>
> entered
>
> directly from the keyboard, if you see what I mean.


I think you are correct - su uses some tty magic to stop ECHO and probably doesn't read the password from stdin.

Ramchandra Apte 01-18-2013 04:45 AM

Re: [HELP!] a doubt about entering password in python
 
On Friday, January 18, 2013 9:30:29 AM UTC+5:30, MRAB wrote:
> On 2013-01-18 03:12, Steven D'Aprano wrote:
>
> > On Fri, 18 Jan 2013 10:49:30 +0800, douxin wrote:

>
> >

>
> >> i use Popen to execute "su -c 'fdisk -l'" in sub process,and

>
> >> assigned subprocess.PIPE to stdin,stdout i tried to enter password

>
> >> by doing "stdin.write("password"+"\n")" and i expected i could get

>
> >> the output of "fdisk -l" by doing "stdout.read()"

>
> >> it didn't work.

>
> >>

>
> >> will somebody tell me what is going on with that?

>
> >

>
> > Would you like us to guess what happened? I love guessing games!

>
> >

>
> > My guess is that it output "su: incorrect password", which means you have

>
> > the wrong password. Is that it?

>
> >

>
> > If not, my guess is that it output "fdisk: command not found", in which

>
> > case your system is broken and the fdisk binary is missing or not on the

>
> > PATH. Am I close?

>
> >

>
> > Last guess: you got a Python traceback with an error:

>
> >

>
> > NameError: name 'subprocess' is not defined

>
> >

>
> > You need to import the subprocess first.

>
> >

>
> >

>
> > If none of my guesses are correct, could we have some hints? Perhaps show

>
> > us the actual code you are using, and the actual results, copied and

>
> > pasted exactly.

>
> >

>
> It may, of course, be that for security reasons it won't accept a
>
> password from
>
> whatever happens to be connected to stdin, but instead insists that it's
>
> entered
>
> directly from the keyboard, if you see what I mean.


I think you are correct - su uses some tty magic to stop ECHO and probably doesn't read the password from stdin.

Chris Angelico 01-18-2013 06:36 AM

Re: [HELP!] a doubt about entering password in python
 
On Fri, Jan 18, 2013 at 3:45 PM, Ramchandra Apte <maniandram01@gmail.com> wrote:
> I think you are correct - su uses some tty magic to stop ECHO and probably doesn't read the password from stdin.


I believe that's right, but the 'sudo' command - at least on my Debian
and Ubuntu systems - accepts a -S parameter to read from stdin instead
of the terminal. Actually, sudo might be better suited to the OP's
task anyway, if it's available.

ChrisA


All times are GMT. The time now is 05:39 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57