•  


GitHub - fofapro/fapro: Fake Protocol Server
Skip to content

fofapro/fapro

Folders and files

Name Name
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FaPro

Free,Cross-platform,Single-file mass network protocol server simulator

platform latest release version discord

Description

FaPro is a Fake Protocol Server tool, Can easily start or stop multiple network services.

The goal is to support as many protocols as possible, and support as many deep interactions as possible for each protocol.

Demo Site

Features

  • Supported Running Modes:

    • Local Machine
    • Virtual Network
  • Supported Protocols:

    • DNS
    • DCE/RPC
    • EIP
    • Elasticsearch
    • FTP
    • HTTP
    • IEC 104
    • Memcached
    • Modbus
    • MQTT
    • MySQL
    • RDP
    • Redis
    • S7
    • SMB
    • SMTP
    • SNMP
    • SSH
    • Telnet
    • VNC
    • IMAP
    • POP3
    • NTP
    • RTSP
    • PORTMAP
    • PostgreSQL
    • SIP
    • SSDP
    • BACnet
    • Oracle TNS
    • AMQP
    • NFS
    • COAP
    • WEMO
    • DHT
    • Ethereum
    • SOCKS5
    • EOS.IO
    • ONVIF
    • NetBIOS
    • WebLogic
    • ICAP
    • MSSQL
    • LDAP
    • IKE
    • Fox
    • DNP3
    • OMRON
    • GE-SRTP
    • MongoDB
    • Java-RMI
    • PCWorx
    • Cassandra
    • RedLion-Crimson3
    • PPTP
  • Use TcpForward to forward network traffic

  • Support tcp syn logging

  • Support icmp ping logging

  • Support udp packet logging

  • Support ja3 SSL Fingerprint

  • Support IP Limiter

Protocol simulation demos

Rdp

Support credssp ntlmv2 nla authentication.

Support to configure the image displayed when user login. RDP demo

SSH

Support user login.

Support fake terminal commands, such as id, uid, whoami, etc.

Account format: username:password:home:uid SSH demo

IMAP & SMTP

Support user login and interaction.

IMAP & SMTP demo

Mysql

Support sql statement query interaction

Mysql demo

FTP

Support user login and interaction.

Ftp demo

Oracle and BACnet

Currently only support nmap fingerprint spoofing

tns and BACnet demo

Telnet

Support login and interaction.

Telnet demo

Redis

Support login and interaction

Redis demo

Elasticsearch

Support basic info

Elasticsearch demo

AMQP

Support login and interaction

AMQP demo

COAP

Currently only support nmap fingerprint spoofing

COAP demo

HTTP

Support website clone, You need to install the chrome browser and chrome driver to work.

Quick Start

Generate Config

The configuration of all protocols and parameters is generated by genConfig subcommand.

Use 172.16.0.0/16 subnet to generate the configuration file:

fapro genConfig -n 172.16.0.0/16 
>
 fapro.json

Or use local address instead of the virtual network:

fapro genConfig 
>
 fapro.json

Only generate ssh protocol configuration:

./fapro genConfig -p ssh

Run the protocol simulator

Run FaPro in verbose mode and start the web service on port 8080:

fapro run -v -l :8080

Tcp syn logging

For windows users, please install winpcap or npcap .

Log analysis

Use ELK to analyze protocol logs: FaPro Kibana

Configuration

This section contains the sample configuration used by FaPro.

{
     
"version"
: 
"
0.65
"
,
     
"network"
: 
"
127.0.0.1/32
"
,
     
"network_build"
: 
"
localhost
"
,
     
"storage"
: 
null
,
     
"geo_db"
: 
"
/tmp/geoip_city.mmdb
"
,
     
"hostname"
: 
"
fapro1
"
,
     
"use_logq"
: 
true
,
     
"cert_name"
: 
"
unknown
"
,
     
"syn_dev"
: 
"
any
"
,
     
"udp_dev"
: 
"
any
"
,
     
"icmp_dev"
: 
"
any
"
,
     
"limiter"
: {
         
"period"
: 
10
,
         
"count"
: 
3
,
         
"block_period"
: 
20

     },
     
"exclusions"
: [],
     
"hosts"
: [
         {
             
"ip"
: 
"
127.0.0.1
"
,
             
"handlers"
: [
                 {
                     
"handler"
: 
"
dcerpc
"
,
                     
"port"
: 
135
,
                     
"params"
: {
                         
"accounts"
: [
                             
"
administrator:123456
"
,
                         ],
                         
"domain_name"
: 
"
DESKTOP-Q1Test
"

                     }
                 }
             ]
         }
     ]
}
  • version: Configuration version.
  • network: The subnet used by the virtual network or the address bound to the local machine(Local mode).
  • network_build: Network mode(supported value: localhost, all, userdef)
    • localhost: Local mode, all services are listening on the local machine
    • all: Create all hosts in the subnet(i.e., Can ping all the host in the subnet)
    • userdef: Create only the hosts specified in the hosts configuration.
  • storage: Specify the storage used for log collection, support sqlite, mysql, elasticsearch. e.g.
  • geo_db: MaxMind geoip2 database file path, used to generate ip geographic location information. if you use Elasticsearch storage, never need this field, it will be automatically generated using the geoip processor of Elasticsearch.
  • hostname: Specify the host field in the log.
  • use_logq: Use local disk message queue to save logs, and then send it to remote mysql or Elasticsearch to prevent remote log loss.
  • cert_name: Common name of the generated certificate.
  • syn_dev: Specify the network interface used to capture tcp syn packets. If it is empty, the tcp syn packet will not be recorded. On windows, the device name is like "\Device\NPF_{xxxx-xxxx}".
  • udp_dev: Same as syn_dev, but for udp packet.
  • icmp_dev: Same as syn_dev, but for icmp ping packet.
  • limiter: IP limiter configuration, in the specified time period (period) access more than times (count), then block specified time (block_period).
    • period: Time period for ip limiter (in minutes)
    • count: The maximum number of times the IP can be accessed within the specified time period
    • block_period: The ban time after exceeding the IP access limit (in minutes)
  • exclusions: Exclude remote ips from logs.
  • hosts: Each item is a host configuration.
  • handlers: Service configuration, the service configured on the host, each item is a service configuration.
  • handler: Service name (i.e., protocol name)
  • params: Set the parameters supported by the service.

Example

Create a virtual network, The subnet is 172.16.0.0/24, include 2 hosts,

172.16.0.3 run dns, ssh service,

and 172.16.0.5 run rpc, rdp service,

protocol access logs are saved to elasticsearch, exclude the access log of 127.0.0.1 and 8.8.8.8.

{
    
"version"
: 
"
0.65
"
,
    
"network"
: 
"
172.16.0.0/24
"
,
    
"network_build"
: 
"
userdef
"
,
    
"storage"
: 
"
es://http://127.0.0.1:9200
"
,
    
"use_logq"
: 
true
,
    
"cert_name"
: 
"
unknown
"
,
    
"syn_dev"
: 
"
any
"
,
    
"udp_dev"
: 
"
any
"
,
    
"icmp_dev"
: 
"
any
"
,
    
"limiter"
: {
         
"period"
: 
10
,
         
"count"
: 
3
,
         
"block_period"
: 
20

     },
    
"exclusions"
: [
"
127.0.0.1
"
, 
"
8.8.8.8
"
],
    
"geo_db"
: 
"
"
,
    
"hosts"
: [
        {
            
"ip"
: 
"
172.16.0.3
"
,
            
"handlers"
: [
               {
                    
"handler"
: 
"
dns
"
,
                    
"port"
: 
53
,
                    
"params"
: {
                        
"accounts"
: [
                            
"
admin:123456
"

                        ],
                        
"appname"
: 
"
domain
"

                    }
                },
                {
                    
"handler"
: 
"
ssh
"
,
                    
"port"
: 
22
,
                    
"params"
: {
                        
"accounts"
: [
                            
"
root:5555555:/root:0
"

                        ],
                        
"prompt"
: 
"
$ 
"
,
                        
"server_version"
: 
"
SSH-2.0-OpenSSH_7.4
"

                    }
                }
            ]
        },
        {
            
"ip"
: 
"
172.16.0.5
"
,
            
"handlers"
: [
                {
                    
"handler"
: 
"
dcerpc
"
,
                    
"port"
: 
135
,
                    
"params"
: {
                        
"accounts"
: [
                            
"
administrator:123456
"

                        ],
                        
"domain_name"
: 
"
DESKTOP-Q1Test
"

                    }
                },
                {
                    
"handler"
: 
"
rdp
"
,
                    
"port"
: 
3389
,
                    
"params"
: {
                        
"accounts"
: [  
                            
"
administrator:123456
"

                        ],
                        
"auth"
: 
false
,
                        
"domain_name"
: 
"
DESKTOP-Q1Test
"
,
                        
"image"
: 
"
rdp.jpg
"
,
                        
"sec_layer"
: 
"
auto
"

                    }
                }
            ]
        }
    ]
}

Automatically generate service configuration

Use the ipclone.py script in Scripts , You can clone the ip service configuration from fofa to quickly generate the service configuration of the real machine.

fofa_clone

Learn more

FAQ

We have collected some frequently asked questions . Before reporting an issue, please search if the FAQ has the answer to your problem.

Contributing

  • Issues are welcome.
- "漢字路" 한글한자자동변환 서비스는 교육부 고전문헌국역지원사업의 지원으로 구축되었습니다.
- "漢字路" 한글한자자동변환 서비스는 전통문화연구회 "울산대학교한국어처리연구실 옥철영(IT융합전공)교수팀"에서 개발한 한글한자자동변환기를 바탕하여 지속적으로 공동 연구 개발하고 있는 서비스입니다.
- 현재 고유명사(인명, 지명등)을 비롯한 여러 변환오류가 있으며 이를 해결하고자 많은 연구 개발을 진행하고자 하고 있습니다. 이를 인지하시고 다른 곳에서 인용시 한자 변환 결과를 한번 더 검토하시고 사용해 주시기 바랍니다.
- 변환오류 및 건의,문의사항은 juntong@juntong.or.kr로 메일로 보내주시면 감사하겠습니다. .
Copyright ⓒ 2020 By '전통문화연구회(傳統文化硏究會)' All Rights reserved.
 한국   대만   중국   일본