summaryrefslogtreecommitdiff
path: root/src/main/scala/com/tylerstonge/honeypot/ftp/FtpListener.scala
blob: b7ce337ebbf5d7a017b3d23613dc6cd72e8bfb81 (plain)
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
package com.tylerstonge.honeypot.ftp

import java.net.InetSocketAddress

import akka.actor.{Actor, Props}
import akka.event.{Logging, LoggingAdapter}
import akka.io.Tcp._
import akka.io.{IO, Tcp}
import akka.util.ByteString

object FtpListener {
  def props(port: Int): Props = Props(new FtpListener(port))
}

class FtpListener(port: Int) extends Actor {

  val log: LoggingAdapter = Logging(context.system, this)
  IO(Tcp)(context.system) ! Bind(self, new InetSocketAddress("localhost", port))

  override def receive: Receive = {
    case Bound(localAddress) =>
      log.info("listening on {}", localAddress)
    case CommandFailed(_: Bind) => context.stop(self)
    case Connected(_, _) =>
      val connection = sender()
      val handler = context.actorOf(FtpHandler.props(connection), name = "handler")
      connection ! Register(handler)
      connection ! Write(ByteString.apply("220 (vulnFTPd 2.0.1)\n"))
  }
}