-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
41 lines (34 loc) · 1.05 KB
/
README
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
FTP/SSH Honeypot
Created by Dominika Regeciova, xregec00
ISA course project, 2015/2016
Description:
The simulation of the real FTP and SSH server, which is collecting information
about users logging activity.
Usage: ./fakesrv -m mode -a address -p port -l logfile
[-r rsakey] [-c max_clients] [-t max_attempts]
Required arguments:
-m mode Mode name (ftp or ssh)
-a address IPv4 or IPv6 address
-p port Port number
-l logfile Logfile
Optional arguments:
-r rsakey Private RSA key, REQUIRED in ssh mode
-c number Maximal number of connected users (default 10)
-t number Maximal number of login tries (default 3) in ssh mode
Generation of rsa key:
ssh-keygen -t rsa -f my.key
Examples of use:
-ftp: ./fakesrv -m ftp -a 127.0.0.1 -p 2345 -l logfile
-ssh: ./fakesrv -m ssh -a 127.0.0.1 -p 23456 -l logfile -r ~/my.key -t 2
Files:
README
manual.pdf
Makefile
fakesrv.cpp
fakesrv.hpp
logging.cpp
logging.hpp
ftp.cpp
ftp.hpp
ssh.cpp
ssh.hpp