Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
routersploit
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
czos-dpend
routersploit
Commits
a5044a34
Commit
a5044a34
authored
Jul 25, 2016
by
fwkz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor refactor of ssh_interactive()
parent
a58e1983
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
utils.py
routersploit/utils.py
+6
-6
No files found.
routersploit/utils.py
View file @
a5044a34
...
@@ -446,23 +446,23 @@ def boolify(value):
...
@@ -446,23 +446,23 @@ def boolify(value):
def
ssh_interactive
(
ssh
):
def
ssh_interactive
(
ssh
):
chan
=
ssh
.
invoke_shell
()
chan
=
ssh
.
invoke_shell
()
try
:
if
os
.
name
==
'posix'
:
import
termios
import
tty
posix_shell
(
chan
)
posix_shell
(
chan
)
e
xcept
:
e
lse
:
windows_shell
(
chan
)
windows_shell
(
chan
)
def
posix_shell
(
chan
):
def
posix_shell
(
chan
):
import
termios
import
tty
oldtty
=
termios
.
tcgetattr
(
sys
.
stdin
)
oldtty
=
termios
.
tcgetattr
(
sys
.
stdin
)
try
:
try
:
tty
.
setraw
(
sys
.
stdin
.
fileno
())
tty
.
setraw
(
sys
.
stdin
.
fileno
())
tty
.
setcbreak
(
sys
.
stdin
.
fileno
())
tty
.
setcbreak
(
sys
.
stdin
.
fileno
())
chan
.
settimeout
(
0.0
)
chan
.
settimeout
(
0.0
)
while
(
True
)
:
while
True
:
r
,
w
,
e
=
select
.
select
([
chan
,
sys
.
stdin
],
[],
[])
r
,
w
,
e
=
select
.
select
([
chan
,
sys
.
stdin
],
[],
[])
if
chan
in
r
:
if
chan
in
r
:
try
:
try
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment