gitextract_2jzluwq6/ ├── .gitignore ├── Dockerfile ├── INSTALL.md ├── README.md ├── backend/ │ ├── __init__.py │ ├── additionalinfo.py │ ├── authcontroller.py │ ├── backend.py │ ├── clientcontroller.py │ ├── cuckoo.py │ ├── db.py │ ├── ipdb/ │ │ ├── .gitignore │ │ ├── __init__.py │ │ └── ipdb.py │ ├── virustotal.py │ ├── virustotal_fill_db.py │ └── webcontroller.py ├── backend.py ├── config.dist.yaml ├── create_config.sh ├── create_docker.sh ├── honeypot/ │ ├── __init__.py │ ├── __main__.py │ ├── client.py │ ├── sampledb_client.py │ ├── session.py │ ├── shell/ │ │ ├── __init__.py │ │ ├── commands/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── binary.py │ │ │ ├── cmd_util.py │ │ │ ├── shell.py │ │ │ ├── shellcode.py │ │ │ ├── tftp.py │ │ │ └── wget.py │ │ ├── grammar.peg │ │ ├── grammar.py │ │ ├── shell.py │ │ ├── test.sh │ │ └── test.txt │ └── telnet.py ├── honeypot.py ├── html/ │ ├── .gitignore │ ├── admin.html │ ├── asn.html │ ├── common.js │ ├── connection.html │ ├── connectionlist-embed.html │ ├── connectionlist.html │ ├── countries.js │ ├── fancy/ │ │ ├── connhash/ │ │ │ └── index.html │ │ └── graph/ │ │ └── index.html │ ├── img/ │ │ ├── LICENSE │ │ └── flags/ │ │ └── LICENSE │ ├── index.html │ ├── js/ │ │ └── angular-vis.js │ ├── network.html │ ├── networks.html │ ├── overview.html │ ├── sample.html │ ├── sample.js │ ├── samples.html │ ├── tag.html │ ├── tags.html │ ├── url.html │ └── urls.html ├── requirements.txt ├── tftpy/ │ ├── TftpClient.py │ ├── TftpContexts.py │ ├── TftpPacketFactory.py │ ├── TftpPacketTypes.py │ ├── TftpServer.py │ ├── TftpShared.py │ ├── TftpStates.py │ └── __init__.py ├── util/ │ ├── __init__.py │ ├── config.py │ └── dbg.py └── vagrant/ ├── .gitignore ├── mariadb/ │ ├── Vagrantfile │ └── mysql.sh └── sqlite/ └── Vagrantfile