-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.txt
49 lines (34 loc) · 1.48 KB
/
README.txt
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
============================================
ABOUT
============================================
RSOD (Reverse SSH On Demand) is web-based solution for facilitating the use
of Reverse SSH.
============================================
INSTALL
============================================
--- (1) - [ install web.py (http://webpy.org) ]
RSOD is using the development version of web.py (which is 0.3), to get
the development version installed:
- wget http://github.com/webpy/webpy/tarball/master
- tar -zxvf webpy-*.tar.gz
- cd webpy-*
- sudo python setup.py install
--- (2) - [ install mako (http://makotemplates.org) ]
- sudo easy_install mako
- OR; sudo apt-get install python-mako
- The first is preferred as it usually provides a more recent version.
--- (3) - [ configuring ssh keys ]
RSOD requires that firewall-ed machine to be able to access the remote host
using SSH Keys (i.e. passwordless).
On the firewall-ed machine do the following:
- ssh-kegen
- Enter an empty passphrase (just hit Enter when it prompts)
- cat ~/.ssh/id_rsa.pub | ssh user@remotehost 'cat - >> ~/.ssh/authorized_keys'
--- (4) - [ starting rsod ]
- chmod +x rsod.py
- ./rsod.py localhost:8080
============================================
LICENSE
============================================
RSOD is licensed under GPL v3 or later. A copy of the license is included
in this package.