From ba76403abc739074a6452cef82b261c8adbb5dab Mon Sep 17 00:00:00 2001 From: perp Date: Tue, 1 Aug 2023 01:16:15 +0100 Subject: [PATCH] Signatures --- Cargo.lock | 190 +- Cargo.toml | 5 +- config.json | 54 - signatures.txt | 8964 ++++++++++++++++++++++++++++++++++++++++++++++++ src/cli.rs | 10 +- src/config.rs | 18 +- src/main.rs | 42 +- 7 files changed, 9158 insertions(+), 125 deletions(-) delete mode 100644 config.json create mode 100644 signatures.txt diff --git a/Cargo.lock b/Cargo.lock index 9d90e11..cc93fb5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -191,15 +191,27 @@ dependencies = [ "libc", ] +[[package]] +name = "getrandom" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + [[package]] name = "ghostport" version = "0.1.0" dependencies = [ "anyhow", "clap", - "serde", - "serde_json", + "rand", "tokio", + "tracing", + "tracing-subscriber", ] [[package]] @@ -232,10 +244,10 @@ dependencies = [ ] [[package]] -name = "itoa" -version = "1.0.9" +name = "lazy_static" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" @@ -259,6 +271,12 @@ dependencies = [ "scopeguard", ] +[[package]] +name = "log" +version = "0.4.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" + [[package]] name = "memchr" version = "2.5.0" @@ -285,6 +303,16 @@ dependencies = [ "windows-sys", ] +[[package]] +name = "nu-ansi-term" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" +dependencies = [ + "overload", + "winapi", +] + [[package]] name = "num_cpus" version = "1.16.0" @@ -310,6 +338,12 @@ version = "1.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" +[[package]] +name = "overload" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" + [[package]] name = "parking_lot" version = "0.12.1" @@ -339,6 +373,12 @@ version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" +[[package]] +name = "ppv-lite86" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" + [[package]] name = "proc-macro2" version = "1.0.66" @@ -357,6 +397,36 @@ dependencies = [ "proc-macro2", ] +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom", +] + [[package]] name = "redox_syscall" version = "0.3.5" @@ -385,12 +455,6 @@ dependencies = [ "windows-sys", ] -[[package]] -name = "ryu" -version = "1.0.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" - [[package]] name = "scopeguard" version = "1.2.0" @@ -398,34 +462,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] -name = "serde" -version = "1.0.176" +name = "sharded-slab" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76dc28c9523c5d70816e393136b86d48909cfb27cecaa902d338c19ed47164dc" +checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" dependencies = [ - "serde_derive", -] - -[[package]] -name = "serde_derive" -version = "1.0.176" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4e7b8c5dc823e3b90651ff1d3808419cd14e5ad76de04feaf37da114e7a306f" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "serde_json" -version = "1.0.104" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" -dependencies = [ - "itoa", - "ryu", - "serde", + "lazy_static", ] [[package]] @@ -470,6 +512,16 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "thread_local" +version = "1.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" +dependencies = [ + "cfg-if", + "once_cell", +] + [[package]] name = "tokio" version = "1.29.1" @@ -501,6 +553,64 @@ dependencies = [ "syn", ] +[[package]] +name = "tracing" +version = "0.1.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" +dependencies = [ + "cfg-if", + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tracing-core" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" +dependencies = [ + "once_cell", + "valuable", +] + +[[package]] +name = "tracing-log" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" +dependencies = [ + "lazy_static", + "log", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" +dependencies = [ + "nu-ansi-term", + "sharded-slab", + "smallvec", + "thread_local", + "tracing-core", + "tracing-log", +] + [[package]] name = "unicode-ident" version = "1.0.11" @@ -513,6 +623,12 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" +[[package]] +name = "valuable" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" + [[package]] name = "wasi" version = "0.11.0+wasi-snapshot-preview1" diff --git a/Cargo.toml b/Cargo.toml index 2b4960d..a8da4c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,7 @@ edition = "2021" [dependencies] anyhow = "1.0.72" clap = { version = "4.3.19", features = ["derive"] } -serde = { version = "1.0.176", features = ["derive"] } -serde_json = "1.0.104" +rand = "0.8.5" tokio = { version = "1", features = ["full"] } +tracing = "0.1.37" +tracing-subscriber = "0.3.17" diff --git a/config.json b/config.json deleted file mode 100644 index 8e440a0..0000000 --- a/config.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "payloads": [ - "1 550 12345 0000000000000000000000000000000000000000000000000000000", - "2 550 12345 0000000000000000000000000000000000000000000000000000000", - "3 550 12345 0000000000000000000000000000000000000000000000000000000", - "4 550 12345 0000000000000000000000000000000000000000000000000000000", - "5 550 12345 0000000000000000000000000000000000000000000000000000000", - "6 550 12345 0ffffffffffffffffffffffffffffffffffffffffffffffffffff00", - "7 550 12345 0fffffffffffff777778887777777777cffffffffffffffffffff00", - "8 550 12345 0fffffffffff8000000000000000008888887cfcfffffffffffff00", - "9 550 12345 0ffffffffff80000088808000000888800000008887ffffffffff00", - "10 550 12345 0fffffffff70000088800888800088888800008800007ffffffff00", - "11 550 12345 0fffffffff000088808880000000000000088800000008fffffff000", - "12 550 12345 0ffffffff80008808880000000880000008880088800008ffffff000", - "13 550 12345 0ffffffff000000888000000000800000080000008800007fffff000", - "14 550 12345 0fffffff8000000000008888000000000080000000000007fffff000", - "15 550 12345 0ffffff70000000008cffffffc0000000080000000000008fffff000", - "16 550 12345 0ffffff8000000008ffffff007f8000000007cf7c80000007ffff000", - "17 550 12345 0fffff7880000780f7cffff7800f8000008fffffff80808807fff000", - "18 550 12345 0fff78000878000077800887fc8f80007fffc7778800000880cff000", - "19 550 12345 0ff70008fc77f7000000f80008f8000007f0000000000000888ff000", - "20 550 12345 0ff0008f00008ffc787f70000000000008f000000087fff8088cf000", - "21 550 12345 0f7000f800770008777000000000000000f80008f7f70088000cf000", - "22 550 12345 0f8008c008fff8000000000000780000007f800087708000800ff000", - "23 550 12345 0f8008707ff07ff8000008088ff800000000f7000000f800808ff000", - "24 550 12345 0f7000f888f8007ff7800000770877800000cf780000ff00807ff000", - "25 550 12345 0ff0808800cf0000ffff70000f877f70000c70008008ff8088fff000", - "26 550 12345 0ff70800008ff800f007fff70880000087f70000007fcf7007fff000", - "27 550 12345 0fff70000007fffcf700008ffc778000078000087ff87f700ffff000", - "28 550 12345 0ffffc000000f80fff700007787cfffc7787fffff0788f708ffff000", - "29 550 12345 0fffff7000008f00fffff78f800008f887ff880770778f708ffff000", - "30 550 12345 0ffffff8000007f0780cffff700000c000870008f07fff707ffff000", - "31 550 12345 0ffffcf7000000cfc00008fffff777f7777f777fffffff707ffff000", - "32 550 12345 0cccccff0000000ff000008c8cffffffffffffffffffff807ffff000", - "33 550 12345 0fffffff70000000ff8000c700087fffffffffffffffcf808ffff000", - "34 550 12345 0ffffffff800000007f708f000000c0888ff78f78f777c008ffff000", - "35 550 12345 0fffffffff800000008fff7000008f0000f808f0870cf7008ffff000", - "36 550 12345 0ffffffffff7088808008fff80008f0008c00770f78ff0008ffff000", - "37 550 12345 0fffffffffffc8088888008cffffff7887f87ffffff800000ffff000", - "38 550 12345 0fffffffffffff7088888800008777ccf77fc777800000000ffff000", - "39 550 12345 0fffffffffffffff800888880000000000000000000800800cfff000", - "40 550 12345 0fffffffffffffffff70008878800000000000008878008007fff000", - "41 550 12345 0fffffffffffffffffff700008888800000000088000080007fff000", - "42 550 12345 0fffffffffffffffffffffc800000000000000000088800007fff000", - "43 550 12345 0fffffffffffffffffffffff7800000000000008888000008ffff000", - "44 550 12345 0fffffffffffffffffffffffff7878000000000000000000cffff000", - "45 550 12345 0ffffffffffffffffffffffffffffffc880000000000008ffffff000", - "46 550 12345 0ffffffffffffffffffffffffffffffffff7788888887ffffffff000", - "47 550 12345 0ffffffffffffffffffffffffffffffffffffffffffffffffffff000", - "48 550 12345 00000000000000000000000000000000000000000000000000000000", - "49 550 12345 00000000000000000000000000000000000000000000000000000000", - "50 550 12345 00000000000000000000000000000000000000000000000000000000" - ] -} diff --git a/signatures.txt b/signatures.txt new file mode 100644 index 0000000..4b0454c --- /dev/null +++ b/signatures.txt @@ -0,0 +1,8964 @@ +S\xf5\xc6\x1a{ +\0\0\0H\0\0\0\x02.[^\0]*\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\* ACAP \(IMPLEMENTATION \"CommuniGate Pro ACAP (\d[-.\w]+)\"\) +g\0\0\0\x1b\0\0\0\0\0\0\0acarsd\t([\w._-]+)\tAPI-([\w._-]+)\)\0\0\0\x06\x05\0\0\0\0\0\0<\?xml +ACMP Server Version ([\w._-]+)\r\n +\0\0\0.\x01ActiveMQ\0\0\0 +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\(\0\0\0\x02\0\0\0\x03\0\0\0\+\0\0\x003\0\0\0\0\0\0\0\x04\0\0`\x01\0\0\xff\0\0\0\0\0\0\0\0\0\0\0 +Adabas D Remote Control Server Version ([\d.]+) Date [\d-]+ \(key is [0-9a-f]+\)\r\nOK> +\0 + +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +<\0r\0e\0s\0p\0o\0n\0s\0e\0>\0C\0o\0n\0n\0e\0c\0t\0e\0d\0 \0t\0o\0 [\0\d.]*<\0/\0r\0e\0s\0p\0o\0n\0s\0e\0>\0 +220 ([-.\w]+) AMANDA index server \((\d[-.\w ]+)\) ready\.\r\n +501 Could not read config file [^!\r\n]+!\r\n220 ([-.\w]+) AMANDA index server \(([-\w_.]+)\) ready\.\r\n +ld\.so\.1: amandad: fatal: (libsunmath\.so\.1): open failed: No such file or directory\n +AMServer +220 Symantec AntiVirus Scan Engine ready\.\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n +Set\(icons,M,6,forward,7,prev,8,stop,9,next,\*,question,0,pause,#,no\);Set\(font,small\);Set\(menu,replace,Playlist,Toggle Shuffle,Toggle Repeat\);Set\(icons,MPD,1,vol_down,2,mute,3,vol_up,4,rewind,5,play,6,forward,7,prev,8,stop,9,next,\*,question,0,pause,#,no\);Set\(font,small\);Set\(menu,replace,Playlist,Toggle Shuffle,Toggle Repeat\); + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\0\x01\0\x08\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0\x02 +\x80\x01\0\x80\0\x80\0\0\xe5az\xcb\0\0\0\0J...............\x02\0\x01\0\0<\x01,.......\0...\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\x01\x04\0.\0\x80\x08 +\0`\0\x04\0\0\0\x1810\x000\x000\x00852224\0\0\0\0\0\0\0\0\0\0\0 +\0`\0\x03\0\0\0\x1810\x000\x000\x00852224\0\0\0\0\0\0\0\0\0\0\0 +MCOP\0\0\0.\0\0\0\x01\0\0\0\x10aRts/MCOP-([\d.]+)\0\0\0\0 +Asterisk Call Manager/([\d.]+)\r\n +Response: Follows\r\nPrivilege: Command\r\n--END COMMAND--\r\n +Visionsoft Audit on Demand Service\r\nVersion: ([\d.]+)\r\n\r\n +([\w._-]+)\nListener for [\w._-]+ AutoSysAdapter\nEOS\nExit Code = 1001\nIP <[\d.]+> is not authorized for this request\. Please contact your Web Administrator\.\nEOS\n +220-AVG7 Anti-Virus daemon mode scanner\r\n220-Program version ([\d.]+), engine (\d+)\r\n220-Virus Database: Version ([\d/.]+) [-\d]+\r\n +220-AVG daemon mode scanner \((?:AVG|SMTP)\)\r\n220-Program version ([\w._-]+)\r\n220-Virus Database: Version ([\w._/ -]+)\r\n220 Ready\r\n +afbackup ([\d.]+)\n\nAF's backup server ready\.\n +.*, Warning on encryption key file `/etc/afbackup/cryptkey': File not readable\.\n.*, Warning: Ignoring file `/etc/afbackup/cryptkey', using compiled-in key\.\nafbackup 3\.4\n\nAF's backup server ready\.\n\x9d\x84\x0bZ +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord + \r\n +echo o [\d.]+ \d+ >s\r\necho common>> s\r\necho common>> s\r\necho bin>> s\r\necho get m220\.exe +220 Bot Server \(Win32\)\r\n +PWD +\r\n\[RPL\]002\r\n +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +Zadej heslo: +220 Reptile welcomes you\.\.\r\n +Sifre_EDIT +MZ\x90\0\x03\0\0\0\x04\0\0\0\xff\xff\0\0\xb8\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0fn\0\0\xd0\0\0\0\x0e\x1f\xba\x0e\0\xb4\t\xcd!\xb8\x01L\xcd!This program cannot be run in DOS mode\. +\xfa\xcb\xd9\xd9\xdd\xc5\xd8\xce\xd6 +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +220 CAFEiNi [-\w_.]+ FTP server\r\n +220 (?:Stny|fuck)Ftpd 0wns j0\r?\n +220 [Sf.][tu.][nc.][yk.][F.][t.][p.][d.] [0.][w.][n.][s.] [j.][0.]\r?\n +(?:ba|)sh-([\d.]+)\$ +exec .* failed : No such file or directory\n +220-Welcome!\r\n220-\x1b\[30m/\x1b\[31m#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4#\xa4# \r\n220-\x1b\[30m\| Current Time: \x1b\[35m[^\r\n]*\r\n220-\x1b\[30m\| Current Date: \x1b\[35m[^\r\n]*\r\n220-\x1b\[30m\\\r\n +\x01\0\0\0 +Invalid Client IP\0\0 +\0\0\0\x1e\xffV\x92l\xfbUL\x87\xabw\x1f\xb2\n\xd8\xef/\0\0\0\x05Alive\0\0\0\x011 +### Battlefield 2 ModManager Rcon v([\d.]+)\.\n### Digest seed: \w+\n\n +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x51\0\0\0\xc8\0\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\0 +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\x2c\x01\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\0.... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x57\0\0\0\x36\x01\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\0.... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x57\0\0\0\x36\x01\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\x02(\..).... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\xd4\x7b\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\0.... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\xd4\x7b\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\x02(\..).... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\x38\x7c\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\0.... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\x38\x7c\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\x02(\..).... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\x9c\x7c\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\0.... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\x9c\x7c\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\x02(\..).... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\x00\x7d\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\0.... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\x00\x7d\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\x02(\..).... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\x01\x7d\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\0.... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\x02\x7d\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\0.... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\x64\x7d\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\0.... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\x64\x7d\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\x02(\..).... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\xc8\x7d\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\0.... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\xc8\x7d\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\x02(\..).... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\x2c\x7e\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\0.... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\x2c\x7e\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\x02(\..).... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\x90\x7e\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\0.... +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0\x90\x7e\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\x02(\..).... +\xf9\xbe\xb4\xd9version\0\0\0\0\0.\0\0\0....\x71\x11\x01\0\0\0\0\0\0\0\0\0........\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff.............../Bitpeer:([\w._-]+)/\0\0\0\0\x01 +\xf9\xbe\xb4\xd9version\0\0\0\0\0\x55\0\0\0..\0\0\x01\0\0\0\0\0\0\0........\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff......\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff..............\0.... +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc/([\w._-]+)\r\n +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +\x13BitTorrent protocol\0\0\0\0\0\0\0\0 +\0\0\0\x17i\x02\x03..\0\x05\x02\0\x04\x02\x04\x03..\0\x03\x04\0\0\0|s p|BMC/HP Software Patrol Agent +SCMBUG-SERVER RELEASE_([-\w_.]+) \d+\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +200 HELLO - BuildForge Agent v([\w._-]+)\n +\$\0\0\0\$\0\0\x000RAR\0 \0\0.\xe2\x02\0\xc4G\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x19\0\0\0\0\0\x0f\xbeB!\x012\x02\xd1\x02\x032\x02p\0\x062\x02\x80\0 +BZFS\d\d\d\d\0 +BZFS\d\d\d\d\r\n\r\n +ACK\x01 +\x8d\0\0\0\x8d\0\0\0\x100\x81\x89\x02\x81\x81\0.*\x02\x03\x01\0\x01\0 +\x02\x07\x04\0\xe0\0\0\0\0\0\0\0\0\0\0\0\x02\0\0\0\0\0\0\0\x04\x03\x02\x010\0\0\0\0\0\0\0\x01\0\0\0\x01\0\0\0\xe0\0\0\0\0\0\0\0\0\x80\0\0\0\x80\0\0\0ems-p-sp\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\x12\x01\0\0EMS-P-SPO-01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0EMS-P-SPO-01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +Welcome to the CCcam information client\.\n +\x02\x07\x04\0\xe0\0\0\0\0\0\0\0\0\0\0\0\x02\0\0\0\0\0\0\0\x04\x03\x02\x010\0\0\0\0\0\0\0\x01\0\0\0\x01\0\0\0\xe0\0\0\0\0\0\0\0\0\x80\0\0\0\x80\0\0\0hfnapp04\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\x02\0\0\0HFNAPP04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0HFNAPP04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +201 ([-\w_.]+) CDDBP server v([-\w.]+) ready at .*\r\n +ceph v([\w._-]+)\0\0\0\0\x1c\"\0\0\0\x02\x1a\x91\xac\x10#\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x02\xddA\xac\x10,,\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +!"#\$%\&'\(\)\*\+,-\./0123456789:;<=>\?\@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\\\]\^_`abcdefgh\r\n"#\$%\&'\(\)\*\+,-\./0123456789:;<=>\?\@ABCDEF +\*\+,-\./0123456789:;<=>\?@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\\\]\^_`abcdefghijklmnopq\r\n\+,-\./ +\ !"#\$%&'\(\)\*\+,-\./0123456789:;<=>\?@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\\\]\^_ +NOPQRSTUVWXYZ\[\\\]\^_`abcdefghijklm +\*\*\* Port V([\d.]+) !\"#\$%&'\(\)\*\+,-\./0123456789: +The quick brown fox jumps over the lazy dog\. 1234567890\r\n +WebStart Chat Service Established\.\.\.\r\n\(C\) 2000-\d+ R Gabriel all Rights Reserved\r\n +\*\x01..\0\x04\0\0\0\x01 +InfoChat Server v([\d.]+) Remote Control ready\n\r +<<>>\nVersion: ([\w._-]+)\n +\n\r _ __ __ __ \n\r \| \| / /__ / /________ ____ ___ ___ / /_____ \n\r \| \| /\| / / _ \\/ / ___/ __ \\/ __ `__ \\/ _ \\ / __/ __ \\\n\r +ChilliSVC ([\d.]+)\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +Cirrato Client ([\w._-]+)\0 +200.*Citadel(?:/UX)? +\x7f\x7fICA\0\x7f\x7fICA\0 +.\0\0\0\x81\0\0\0\x01 +\0\0\0\x10ClsBoolVersion 1 +CFMSERV\(1\)\n +Concerto Software\r\n\r\nEnsemblePro SendLog Server - Version (\d[-.\w]+)\r\n\r\nEnter Telnet Password\r\n#> +Concerto Software\r\n\r\nContactPro TimeSync Server - Version (\d[-.\w]+)\r\n\r\nEnter Telnet Password\r\n#> +Conference, V([\d.]+)\r\n +\x06\x07\xd0\0\x01\0\0\0\x01\0\x02\x07\xd0\0\x01\0\0\x01\x0f\x01\xf4\0\0\0\0HP +LTO ULTRIUM +\0\0\0\t\0\0\0\|\0\0\0 +Hello, I don't understand your request\. Good bye\.\.\.\. +\x10\x06[\x80-\xff].......\x0b\x01([\w._-]+)\0 +Crestron Terminal Protocol Console opened\r\n +\r\nCrestron Terminal Protocol Console Opened\r\n\r\n +\x0f\0\x01\x02 +\* OK ([-.\w]+) Cyrus sync server v([-.\w]+) +no repository configured in / +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\n +Unknown command: `pserver'\n\nCVS commands are:\n +OK \d+ \d+ ([-.\w]+) CVSup server ready\n +0\x11\0\0...........@.........\0\0\0\x01\0\0\0\0\0\0\0.\0\0\0 +[0-3]\d [A-Z][A-Z][A-Z] (?:19|20)\d\d \d\d:\d\d:\d\d \S+\r\n +[A-Z][a-z]{2} [A-Z][a-z]{2} +\d{1,2} +\d\d:\d\d:\d\d (?:19|20)\d\d\r\n +[A-Z][a-z]{2} [A-Z][a-z]{2} +\d{1,2} +\d\d:\d\d:\d\d (?:19|20)\d\d\n\r +\d+:\d\d:\d\d [AP]M \d+/\d+/(?:19|20)\d\d\n +\d\d:\d\d:\d\d \d\d?.\d\d?.(?:19|20)\d\d\n +.... \d{1,2}:\d{1,2}:\d{1,2} (?:19|20)\d\d-\d{1,2}-\d{1,2}\n +[A-Z][a-z]+day, [A-Z][a-z]+ \d{1,2}, (?:19|20)\d\d \d{1,2}:\d\d:\d\d\n\0 +[A-Z][a-z][a-z] [A-Z][a-z][a-z] \d{1,2} \d{1,2}:\d{1,2}:\d{1,2} (?:19|20)\d\d\n +\d{1,2}\.\d{1,2}\.\d{1,2} \d\d/\d\d/(?:19|20)\d\d\n +\d{1,2}:\d\d:\d\d \d{1,2}[/.]\d{1,2}[/.]\d{4}\n +\d{1,2}:\d\d:\d\d [ap]m \d{4}/\d\d/\d\d\n +\d{1,2}:\d\d:\d\d [ap]m \d{1,2}/\d{1,2}/\d{4}\n +\d\d:\d\d:\d\d [AP]M \d\d\d\d/\d\d/\d\d\n +\d\d:\d\d:\d\d \d\d.\d\d.20\d\d\n +[01]\d:\d\d:\d\d [AP]M [0-3]\d/[01]\d/0\d\n +[A-Z][a-z]{2} [A-Z][a-z]{2} +\d{1,2} \d\d:\d\d:\d\d [A-Z]+ 20\d\d\r\n +[A-Z][a-z]{2} [A-Z][a-z]{2} +\d{1,2} \d\d:\d\d:\d\d 20\d\d +\d+ \d\d-\d\d-\d\d \d\d:\d\d:\d\d 50 0 4 \d+\.0 UTC\(NIST\) \*\r\n +[A-Z][a-z]{2}, [A-Z][a-z]{2} \d{1,2}, 20\d\d, \d\d:\d\d:\d\d-UTC +[A-Z][a-z]+day, [A-Z][a-z]+ \d{1,2}, \d{4} \d\d:\d\d:\d\d-\w\w\w(?:-DST)?\r\n +\w+, +\d+ +\w+ +\d+ +\d+:\d+:\d+ [+-]\d+\r\n([\w:._ /\\-]+\\ats\.exe)\r\n +\d\d\d\d/\d\d/\d\d \d\d:\d\d:\d\d\r\n +\xe6\x01\0\0\0\0\0\0bplist00\xd4\x01\x02\x03\x04\x05\x06\x1e\x1fX\$versionX\$objectsY\$archiverT\$top\x12\0\x01\x86\xa0\xa5\x07\x08\x0f\x13\x1aU\$null\xd3\t\n\x0b\x0c\r\x0eStag\[dataContentV\$class\x10\x01\x80\x02\x80\x04\xd2\x10\x0b\x11\x12WNS\.dataO\x10\x98bplist00\xd2\x01\x02\x03\x04_\x10\x16ComputerIdentificationZPINCodeKey_\x10:([\w._-]+)\x08 +[\xae\xaf]\x01 +530 access denied\r\n +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +220 hello <> msg\r\n +acam_bitmask\[0\]=1,2,4,8,16,32,64,128,256,512,1024,2048,4096,8192,16384,32768,1,2,4,8,16,32,64,128,256,512,1024,2048,4096,8192,16384,32768\r\nact_actions\[0\]=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1\r\nact_buzzer=0\r\n +\xd1Q\xf0'\0\0\0;\x01\x05LOGIN\0\0\0\x30\x01\x01\0\0\0\x05NONCE\x08 \0\0\0[0-9A-F]{32} +\xd1Q\xf0'\0\0\0A\x01\x15CMD_ANALYTICS_VERSION\0\0\0&\x01\x01\0\0\0\x07Version\x08\x14\0\0\0DIGIFORT ([\w._ -]+)\xd1Q\xf0'\0\0\0I\x01\x13CMD_ANALYTICS_NONCE\0\0\0\x30\x01\x01\0\0\0\x05NOnce\x08 \0\0\0\x30CD6DD9A883431A881BC14DE48F0F892\xd1Q\xf0'\0\0\0\x18\x01\x12CMD_ANALYTICS_PING\0\0\0\0\xd1Q\xf0'\0\0\0\x18\x01\x12CMD_ANALYTICS_PING\0\0\0\0 +\xd1Q\xf0'\0\0\0;\x01\x0fCMD_LPR_VERSION\0\0\0&\x01\x01\0\0\0\x07Version\x08\x14\0\0\0DIGIFORT ([\w._ -]+)\xd1Q\xf0'\0\0\0C\x01\rCMD_LPR_NONCE\0\0\0\x30\x01\x01\0\0\0\x05NOnce\x08 \0\0\0\x332DA9B47DA082C982384782CEDFEE055\xd1Q\xf0'\0\0\0\x12\x01\x0cCMD_LPR_PING\0\0\0\0\xd1Q\xf0'\0\0\0\x12\x01\x0cCMD_LPR_PING\0\0\0\0 +\$MyNick ([-.\w]+)|\$Lock +\r\nDConnect Daemon v([\d.]+)\r\nlogin: + Your IP is temporarily banned for (\d+) minutes\.\| + You are being banned for (\d+) minutes \(by SDCH Anti Hammering\)\.\| + You are being redirected to ([\d.]+)\|\$ForceMove [\d.]+\| +server-version\$([\w._-]+)\|init-completion\$200\|port\$\d+\| +\r\nOpen DC Hub, version ([\d.]+), administrators port\.\r\nAll commands begin with '\$' and end with '\|'\.\r\nPlease supply administrators passord\.\r\n +OK Welcome <[\d.]+> on DirectUpdate server ([\d.]+)\r\n +OK Welcome <[\d.]+> on DirectUpdate engine VER=\[([\d.]+) \(Build (\d+)\)\]-0x\w+\r\n +000001a2[0-9a-f]{410}\r\n +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +Durian Web Application Server III ([^<]+) for Win32\r +DNSIX +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +UNAUTHORIZED\n\r\n\r +DRINASD\0\x01\x01\0\0\0\0..<\?xml version=\"1\.0\" encoding=\"utf-8\"\?>\n\n\n ESAINFO\n \d+\n \d+\n \w+\n \w+\n Drobo(?:-FS)?\n ([][\w._ ]+)\n ([^<]+)\n +DRIDDSVC\x07\x01\0\0\0\0..\r\n\tESAINFO\r\n\t\d+\r\n\t\d+\r\n\t0db\d+\r\n\ttDB\d+\r\n\tDrobo(?:-FS)?\r\n\t([][\w._ ]+)\r\n\t([^<]+)\r\n +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +DYNAST server v(.*) \(Win32\) - Copyright\(c\) DYN +[0-9a-f]{8} +Welcome [\d.]+\. You have 15 seconds to identify\.\r\n +\?p\xf7/Zq\xa2\xf5\x03.......\xf4\xea.......B +\(m\xe9l@k\xb7\xf5\x03 +\(m\xe9l@k\xb3\xf7\x1e\xa5 +\(m\xe9l@k\xb1\xf1\x15\xa5 +\?\x008 \xc3p EFTSRV1 ([\d.]+) +Ericom GCS v([\d.]+)\0 +\r\n\r\n([-`|.\w]+) \(Eggdrop v(\d[-.\w+]+) +\([cC]\) *1997.*\r\n\r\n +\(Eggdrop v([\d.]+) \(C\) 1997 Robey Pointer.*Eggheads +\(Eggdrop v([\d.]+)\+ipv6 \(C\) 1997 Robey Pointer.*Eggheads +\(Eggdrop v([\d.]+)\+SSL \(C\) 1997 Robey Pointer.*Eggheads +\(Eggdrop v([\d.]+)\+rc(\d+) \(C\) 1997 Robey Pointer.*Eggheads +\(Eggdrop v([\d.]+)\+(?:STEALER\.net|Gentoo) \(C\) 1997 Robey Pointer.*Eggheads +Copyright \(C\) 1997 Robey Pointer\r\n.*Eggheads +WZ=AAAAAAAAAAByAAE=73\r0E0000000000cgAD83\r +xml/epp/epp-1\.0 epp-1\.0\.xsd\">\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)< +7\0\0\0~\0\0\0\0\x14\x06\x04\xe8\x99\x02\0\x05\xeb\0\x04\xdf\x92\0\0\n\xd7\xa3p=\n\xd7\x18@\x04\x95\xf1\x01\0\x13\x13EVE-EVE-RELEASE@ccp +:\0\0\0~\0\0\0\0\x14\x07\x04\xe8\x99\x02\0\x05\x3b\x01\x05\x03k\n333333\x1d@\x04\re\x05\0\x13\x17EVE-EVE-TRANQUILITY@ccp\x01 +8\0\0\0\x07\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0....\0\0\0\0....\0\0\0\0....\0\0\0\0 +\x01Where are you\?\n +\x04\x07\x08.. +2\0TY\xb8\xd5\xbbH:x\x03\^v\xd5\xdf\x15Rgc\xd7\x1a\x067\(/\xbf\xc73\t\?3\x85\x9d\x92ne\x0bh\xbe\x8a\]\xdf!\x14xA\xbc\xb6\xe9_ +\r\n {4}Line {5,8}User {6,8}Host\(s\) {13,18}Idle +Location\r\n +OpenLDAP Finger Service\.\.\.\r\n +No cfingerd\.conf file present\. Check your setup\.\n +Windows NT Version ([\d.]+) build (\d+), \d+ processors? \(.*\)\r\nFingerDW V([\d.]+) - Hummingbird Ltd\.\n +\r\nIntegrated port\r\nPrinter Type: Lexmark T642\r\nPrint Job Status: +Welcome to FreeVCS MSSQL NT Service\r\n +Welcome to FreeVCS DBISAM NT Service\r\n +Welcome to FreeVCS Test NT Service\r\n +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +>>\n\0\x0eFRP Node Ready>>\n\0\x0e +FreeDoko server\n\d+\.\d+: name: ([^\n]+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220 3Com FTP Server Version ([-\w_.]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +220-.*\r\n220 Please enter your name:\r\n +220 ([-/.+\w]+) FTP server \(Medusa Async V(\d[^\)]+)\) ready\.\r\n +220 ([-/.+\w]+)\((\d[-.\w]+)\) FTP server \(EPSON ([^\)]+)\) ready\.\r\n +220 ([-/.+\w]+) IBM TCP/IP for OS/2 - FTP Server [Vv]er \d+:\d+:\d+ on [A-Z]| p|IBM OS/2 ftpd| o|OS/2 +220 ([-/.+\w]+) IBM TCP/IP f\xfcr OS/2 - FTP-Server [Vv]er \d+:\d+:\d+ .* bereit\.\r\n| p|IBM OS/2 ftpd| i/German/ o|OS/2 +220 Internet Rex (\d[-.\w ]+) \(([-/.+\w]+)\) FTP server awaiting your command\.\r\n +220 ([-.+\w]+) FTP server \(Version (\d[-.\w]+)\([^\)]+\) [A-Z][a-z][a-z] [A-Z].*200\d\) ready\.\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\r\n +220 PizzaSwitch FTP server ready\r\n +220 ([-.+\w]+) IronPort FTP server \(V([-.\w]+)\) ready\.\r\n +220 ([-.+\w]+) IronPort FTP server \(V([-.\w]+)\) ready\.\r\n +220 ([-.+\w]+) IronPort FTP server \(V([-.\w]+)\) ready\r\n +220 WFTPD (\d[-.\w]+) service \(by Texas Imperial Software\) ready for new user\r\n +220.*\r\n220 WFTPD (\d[-.\w]+) service \(by Texas Imperial Software\) ready for new user\r\n +220 ([-.+\w]+) FTP server \(Version (MICRO-[-.\w:#+ ]+)\) ready\.\r\n +220 ([-.+\w]+) FTP server \(Digital UNIX Version (\d[-.\w]+)\) ready\.\r\n +220 ([-.+\w]+) FTP server \(Version [\d.]+\+Heimdal (\d[-+.\w ]+)\) ready\.\r\n +500 OOPS: (could not bind listening IPv4 socket)\r\n +500 OOPS: vsftpd: (.*)\r\n +220-QTCP at ([-.\w]+)\r\n220| p|IBM OS/400 FTPd| o|OS/400 +220[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\r\n +220 FTP Server - FileZilla\r\n +220-Welcome to ([A-Z]+) FTP Service\.\r\n220 All unauthorized access is logged\.\r\n +220.*\r\n220[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220-.*\r\n220-\r\n220 using FileZilla FileZilla Server version ([^\r\n]+)\r\n +220-FileZilla Server\r\n +431 Could not initialize SSL connection\r\n +550 No connections allowed from your IP\r\n +220 FTP version 1\.0 ready at +220 ([\w._-]+) FTP version 1\.0 ready at +220 \(none\) FTP server \(GNU inetutils ([\w._-]+)\) ready\.\r\n +220 ([-.\w]+) FTP server \(GNU inetutils (\d[-.\w ]+)\) ready\.\r\n +220 .* \(glftpd (\d[-.0-9a-zA-Z]+)_(\w+)(?:\+TLS)?\) ready\.\r\n +220 .* \(glFTPd (\d[-.0-9a-zA-Z]+)_(\w+) Linux\+TLS\) ready\.?\r\n +220 .* \(glFTPd (\d[-.0-9a-zA-Z]+) Linux\+TLS\) ready\.\r\n +220 .* \(glFTPd (\d[-.0-9a-zA-Z]+) FreeBSD\+TLS\) ready\.\r\n +220 ([-.\w]+) FTP server \(FirstClass v(\d[-.\w]+)\) ready\.\r\n +220 ([-.\w]+) FTP server \(Compaq Tru64 UNIX Version (\d[-.\w]+)\) ready\.\r\n +220 Axis ([\w._ -]+) Network Camera(?: version)? (\d\S+) \((.*)\) ready\.\r\n +220 Axis ([\w._ -]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) ready\.\r\n +220 AXIS ([\w._ -]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) ready\.\r\n +220 Axis ([\w._ -]+) Network Camera ([\w._-]+) \w+ \d+ \d+ ready\.\r\n +220 AXIS ([-.\w]+) FTP Network Print Server V(\d[-.\w]+) [A-Z][a-z] +220 AXIS ([\d\w]+)V(\d\S+) (.*?) ready\.\n +220 AXIS ([+\d]+) Video Server ?(\d\S+) (.*?) ready\. +220 AXIS (\w+) Video Server (\d\S+) \(.*\) ready\.\r\n +220 AXIS 205 version ([\d.]+) \(.*\) ready\.\r\n +220 AXIS 250S MPEG-2 Video Server ([\d.]+) \([^)]+\) ready\.\r\n +220 AXIS (\w+) Video Server ([\d.]+) \([^)]+\) ready\.\r\n +220 AXIS (\w+) Video Server Blade ([\w._-]+) \([^)]+\) ready\.\r\n +220 AXIS StorPoint CD E100 CD-ROM Server V([\d.]+) .* ready\.\r\n +220 AXIS (.+) FTP Network Print Server V([-\w_.]+) +220 AXIS ([\d/+]+) FTP Print Server V([-\w_.]+) +220 AXIS (\w+) Network Fixed Dome Camera (.*) ready\.\r\n +220-Cerberus FTP Server Personal Edition\r\n220-UNREGISTERED\r\n +220-Cerberus FTP Server - Personal Edition\r\n220-This is the UNLICENSED personal edition and may be used for home, personal use only\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Cerberus, LLC\r\n +220-Cerberus FTP Server - Personal Edition\r\n220-This is the UNLICENSED personal edition and may be used for home, personal use only\r\n220 Connected to Aurora FTP server\.\.\.\r\n +220-Cerberus FTP Server - Personal Edition\r\n220-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +421-Not currently accepting logins at this address\. Try back \r\n421 later\.\r\n +220 Welkom@([\w._-]+)\r\n521 Not logged in - Secure authentication required\r\n +220 FTP print service:V-(\d[-.\w]+)/Use the network password for the ID if updating\.\r\n| p|Brother/HP printer ftpd +220- APC FTP server ready\.\r\n220 \r\n +220 ([-\w]+) FTP server \(Version (\d[\w._-]+) [A-Z][a-z]{2} [A-Z][a-z]{2} .*\) ready\.\r\n +220[- ]Roxen FTP server running on Roxen (\d[-.\w]+)/Pike (\d[-.\w]+)\r\n +220 Service ready for new user\.\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220.*Microsoft FTP Service \(Version (\d[^)]+) +220[ -]Microsoft FTP Service\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220 Serv-U FTP-Server v([-\w_.]+ build \d+) for WinSock ready\.\.\.\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +220-SECURE FTP SERVER VERSION ([\d.]+) \(([-\w_.]+)\)\r\n +431 Unable to negotiate secure command connection\.\r\n +220-Sambar FTP Server Version (\d\S+)\x0d\x0a +220-FTP Server ready\r\n220-Use USER user@host for native FTP proxy\r\n220 Your FTP Session will expire after 300 seconds of inactivity\.\r\n +220 JD FTP Server Ready +220.*Check Point FireWall-1 Secure FTP server running on +220[- ].*FTP server \(Version (wu-[-.\w]+) +220-\r\n220 ([-.\w]+) FTP server \(Version ([-.+\w()]+)\) ready\.\r\n +220 ([-.\w]+) FTP server \(Revision ([\d.]+) Version wuftpd-([-.+\w()]+) [^)]*\) ready\.\r\n +220 ([-.\w]+) FTP server \(Version ([-.+\w()]+)\) ready\.\r\n +220 Server \(ProFTPD\) \[([-.\w]+)\]\r\n +220 ProFTPD (\d\S+) Server +220 FTP Server \[([-\w_.]+)\]\r\n +220 ([-\w_.]+) FTP server ready\r\n +220.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 ProFTP Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +220-.*\r\n220 ProFTPD ([\d.]+) Server +220 .* FTP Server \(ProFTPD ([\d.]+) on Red Hat linux ([\d.]+)\) ready\.\r\n +220 ProFTP-Server auf ([-\w_.]+)\r\n +220.*\r\n220 ProFTPD ([\w._-]+) Server \(ProFTPD\) +220 ([-\w_.]+) FTP server ready!\r\n +220 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 ([-\w_.]+) FTP server \(SunOS (\S+)\) ready +220-([-.\w]+) IBM FTP.*(V\d+R\d+)| p|IBM OS/390 ftpd| v/$2/ o|OS/390 +220-IBM FTP, .*\.\r\n220 Connection will close if idle for more than 120 minutes\.\r\n| p|IBM OS/390 ftpd| o|OS/390 +220 VxWorks \((\d[^)]+)\) FTP server ready +220 VxWorks \(VxWorks(\d[^)]+)\) FTP server ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +220 VxWorks \(VxWorks ([\w._-]+)\) FTP server ready\r\n| p|AMX NetLinx A/V control system ftpd +220 VxWorks FTP server \(VxWorks ?([\w._-]+)\) ready\.\r\n +220 ABB Robotics FTP server \(VxWorks ([\d.]+) rev ([\d.]+)\) ready\.\r\n +220.*Welcome to .*Pure-?FTPd (\d\S+\s*) +220.*Welcome to .*Pure-?FTPd[^(]+\r\n +220.*Bienvenue sur .*Pure-?FTPd.*\r\n +220.*Bienvenue sur .*Pure-?FTPd (\d[-.\w]+) +220.*Velkommen til .*Pure-?FTPd.*\r\n +220.*Bem-vindo.*Pure-?FTPd.*\r\n +220[- ]FTP server ready\.\r\n.*214 Pure-FTPd - http://pureftpd\.org/?\r\n +220---------- Welcome to Pure-FTPd \[privsep\] \[TLS\] ----------\r\n220-You are user number| p/Pure-FTPd/ i|with SSL/TLS +220---------- .* Pure-FTPd ----------\r\n220- +220.*214 Pure-FTPd - http://pureftpd\.org/?\r\n +220 vsFTPd (.*) ready\.\.\.\r\n +220 vsFTPd (.*) ready\.\.\. \[charset=\w+\]\r\n +220 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 \(vsFTPd ([-.\w]+)\)\r\n +220 Welcome to blah FTP service\.\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\r\n +220-MegaBit Gear (\S+).*FTP server ready +220.*WS_FTP Server (\d\S+) +220 Features: a p \.\r\n +220 ([-.\w]+) FTP server \(Version (\S+) VFTPD, based on Version (\S+)\) ready\.\r\n +220 ([-.\w]+) FTP server \(Version (\S+)/OpenBSD, linux port (\S+)\) ready\.\r\n +220 ([-.\w]+) FTP server \(Version (\S+)/OpenBSD/Linux-ftpd-([-.\w]+)\) ready.\r\n +220 Interscan Version ([-\w.]+) +220 InterScan FTP VirusWall NT (\d[-.\w]+) \(([-.\w]+) Mode\), Virus scan (\w+)\r\n +220 ([-.\w]+) FTP server \(Version ([-.\w]+)/OpenBSD\) ready\.\r\n +220 ([-.\w]+) FTP server \(Version (6.0\w+)\) ready.\r\n +220 FTP server \(Version ([\w.]+)\) ready\.\r\n +220-Setting memory limit to 1024\+1024kbytes\r\n220-Local time is now \d+:\d+ and the load is [\d.]+\.\r\n220 You will be disconnected after \d+ seconds of inactivity.\r\n +220 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version (7.1.0.0)\) ready\.\r\n +220 FTP server \(Hummingbird Communications Ltd\. \(HCLFTPD\) Version ([\d.]+)\) ready\.\r\n +220- .*\n220 ([-.\w]+) FTP server \(Version (.*)\) ready\.\r\n +220- \r\n.*www\.imatix\.com --\r\n +220- Welcome to this Xitami FTP server, running version ([\d\w.]+) of Xitami\. \n You are user number (\d+) of a permitted (\d+) users\.| p/Xitami ftpd/ v/$1/ i|$2/$3 users +220 Service Ready for new User\r\n +220-LRN\r\n220 Service Ready for new User\r\n +220 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) ready\.\r\n +220 FTP Server for NW 3.1x, 4.xx \((v1.10)\), \(c\) 199[0-9] HellSoft\.\r\n +220 ([-.\w]+) MultiNet FTP Server Process V(\S+) at .+\r\n +220-\r\n220 ([-.\w]+) FTP server \(NetBSD-ftpd ([-.\w]+)\) ready.\r\n +220 ([-.\w]+) Network Management Card AOS v([-.\w]+) FTP server ready.\r\n +220 FTP Server \(Version 1.0\) ready.\r\n +220 ([-.\w ]+) FTP server \(Version (1.1.2[\d.]+) [A-Z][a-z]{2} [A-Z][a-z]{2} .*\) ready.\r\n +220-.*\r\n(?:220-|) WarFTPd (\d[-.\w]+) \([\w ]+\) Ready\r\n +220 ([-.+\w]+) FTP SERVICE ready\r\n500 Please enter a command\. Dunno how to interperet empty lines\.\.\.\r\n500 Please enter a command\. Dunno how to interperet empty lines\.\.\.\r\n +220 Welcome to Windows FTP Server| p/Windows Ftp Server/ i|Not from Microsoft - http://srv.nease.net/ +220 ([-\w_.]+) FTP server \(BSDI Version ([\w.]+)\) ready\.\r\n| p|BSDI/Unixware ftpd +220 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) ready\.\r\n +220 OpenFTPD server ready\. .*\.\r\n +220 ([\w._-]+) FTP server \(NetBSD-ftpd 20\w+\) ready\.\r\n +220-\r\n Your connection logged!\r\n220 ([\w_.-]+) FTP server \(NetBSD-ftpd 200\d+\) ready\.\r\n +220 CommuniGate Pro FTP Server ([\d.]+) ready\r\n +220 CommuniGate Pro FTP Server ready\r\n +421 Sorry you are not welcomed on this server\.\r\n +220-BulletProof FTP Server ready \.\.\.\r\n +(?:220.*\r\n)?220 [Ee]valine FTP server \(Version: Mac OS X +220 WinGate Engine FTP Gateway ready\r\n +220 Welcome to Quick 'n Easy FTP Server\r\n +220 Welcome to Quick 'n Easy FTP Server DEMO\r\n +421 Too many connections for this IP address, please try again later\.\r\n +220 Tornado-vxWorks \(VxWorks([\d.]+)\) FTP server ready\r\n +220 [-\w_.]+ FTP server \(UNIX\(r\) System V Release 4\.0\) ready\.\r\n +(?:220-.*\r\n)?220 ([-\w_.]+) FTP Server \(Oracle XML DB/Oracle9i Enterprise Edition Release ([\d.]+) - Production\) ready\.\r\n +(?:200-.*\r\n)?220 ([-\w_.]+) FTP Server \(Oracle XML DB/Oracle9i Enterprise Edition Release ([\d.]+) - 64bit Production\) ready\.\r\n +(?:220-.*\r\n)?220 ([-\w_.]+) FTP Server \(Oracle XML DB/Oracle9i Release ([\d.]+) - Production\) ready\.\r\n +(?:220-.*\r\n)?220 ([-\w_.]+) FTP Server \(Oracle XML DB/Oracle Database 10g Enterprise Edition Release ([\d.]+) - Production\) ready\.\r\n +(?:220-.*\r\n)?220 ([-\w_.]+) FTP Server \(Oracle XML DB/Personal Oracle9i Release ([\d.]+) - Production\) ready\.\r\n +(?:220-.*\r\n)?220 ([\w._-]+) FTP Server \(Oracle XML DB/Oracle Database\) ready\.\r\n +(?:200-.*\r\n)?220 ([\w._-]+) FTP Server \(Oracle XML DB/\) ready\.\r\n +220 ([-\w_.]+) PacketShaper FTP server ready\.\r\n +220 WfFTP server\(([\w.]+)\) ready\.\r\n +220- (.*) WAR-FTPD ([-\w.]+) Ready\r\n220 Please enter your user name\.\r\n +220 Canon ([\w._-]+) FTP Print Server V([\w._-]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 FTP Version ([\d.]+) on MPS100\r\n +220.*bftpd ([\d.]+) at ([-\w_.]+) ready\.?\r\n +220 RICOH Aficio ([\w\d_ +-]+) FTP server \(([\d.]+)\w?\) ready\.\r\n +220 RICOH Pro (\d+[a-zA-Z]{0,3}) FTP server \(([\d+.]+)\) ready\.\r\n +220 LANIER ([\w\d /-]+) FTP server \(([\d+.]+)\) ready\.\r\n +220 Welcome to Code-Crafters Ability FTP Server\.\r\n +220 Welcome to Code-Crafters - Ability Server ([\d.]+)\. +220 ([-\w_.]+) FTP server \(ARM_BE - V([\w.]+)\) ready\.\r\n +220 MikroTik FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 (.+) FTP server \(MikroTik ([\w._-]+)\) ready\r\n +220 NetPresenz v([\d.]+) \(Unregistered\) awaits your command\.\r\n +220 LP-8900-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\r\n +220 StylusPhoto750-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\r\n +220 FTP Version ([\d.]+) on MSS100\r\n +220 Matrix FTP server \(Server \w+#\d\) ready\.\r\n +220 Titan FTP Server ([\d.]+) Ready\.\r\n +421-\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+=\+\r\n421-The evaluation period for this Titan FTP Server has expired\.\r\n +220 ioFTPD \[www: http://www\.ioftpd\.com\] - \[version: ([-\w_. ]+)\] server ready\.\r\n +220 CesarFTP ([\w.]+) Server Welcome !\r\n +220 CesarFTP ([\w.]+) \xb7\xfe\xce\xf1\xc6\xf7\xbb\xb6\xd3\xad !\r\n +220-This site is running the BisonWare BisonFTP server product V([\d.]+)\r\n +220-Welcome to XBOX FileZilla(?: \(XBMC\)|)\r\n220-version: XBFileZilla version ([\d.]+), \(based on FileZilla Server ([\d.]+)\)\r\n220 http://sourceforge\.net/projects/xbfilezilla\r\n +220-Welcome to XBOX FileZilla(?: \(XBMC\)|)\r\n220-version: XBMC:FileZilla version ([\d.]+), \(based on FileZilla Server ([\d.]+)\)\r\n220 http://sourceforge\.net/projects/xbfilezilla\r\n +220 Session will be terminated after 600 seconds of inactivity\.\r\n +220-SlimFTPd ([\d.]+), by WhitSoft Development \(www\.whitsoftdev\.com\)\r\n +220 BlackMoon FTP Server Version ([\d.]+ Release \d+) - Build \d+\. Free Edition\. Service Ready\r\n +220 BlackMoon FTP Server Version ([\d.]+ Release \d+) - Build \d+\. Chaos Edition\. Service Ready\r\n +220-BlackMoon FTP Server Version ([\d.]+ Release \d+) - Build \d+\r\n +220 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 Oracle Internet File System FTP Server ready\r\n +220 RICOH Aficio (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 NRG 2205/2238/2212 FTP server \(([\d.]+)\) ready\.\r\n| p|NRG 2205/2238/2212 copier ftpd +220 mandelbrot FTP server \(Version ([\d.]+) \(NeXT ([\d.]+)\) .*\) ready\.\r\n +220 Net Administration Divisions FTP Server Ready\.\.\.\r\n +220-\r\n220-\r\n220 Please enter your user name\.\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 $2 +220 Qtopia ([\d.]+) FTP Server\n +220[ -]Gene6 FTP Server v([\d.]+) +\(Build (\d+)\).* ready\.\.\.\r\n +220 G6 FTP Server v([\d.]+) \(beta (\d+)\) ready \.\.\.\r\n +220 ([-\w_.]+) by G6 FTP Server ready \.\.\.\r\n +220 .* by G6 FTP Server ready \.\.\.\r\n +220.*Hello! I'm Gene6 FTP Server v([-\w_.]+) \(Build (\d+)\)\.\r\n +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220 sftpd/([\d.]+) Server \[[-\w_.]+\]\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 Welcome to Pablo's FTP Server\r\n +220 PowerLogic FTP Server ready\.\r\n +220 INTERMEC 540\+/542\+ FTP Printer Server V([\d.]+) .* ready\.\r\n| p|Intermec 540+/542+ printer ftpd +220 EthernetBoard OkiLAN 8100e Ver ([\d.]+) FTP server\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) ready\.\r\n +220 VxWorks \(ENI-ftpd ([\d.]+)\) FTP server ready\r\n| p/SpeedStream 5660 ADSL router/ i|Runs ENI-ftpd/$1 on VxWorks +220--------------------------------------------------------------------------------\r\n220-This is the \"Banner\" message for the Mac OS X Server's FTP server process\.\r\n.*220 ([-\w_.]+) FTP server \(Version: Mac OS X Server ([\d.]+) - \+GSSAPI\) ready\.\r\n +220--------------------------------------------------------------------------------\r\n220-This is the \"Banner\" message for the Mac OS X Server's FTP server process\.\r\n +220 Welcome to U\.S\.Robotics SureConnect ADSL Ethernet/USB Router update FTP server v([\d.]+)\.\r\n +220-Welcome to Xerver Free FTP Server ([\d.]+)\.\r\n220-\r\n220-You can login below now\.\r\n220 Features: \.\r\n +220 ([-\w_.]+) FTP server \(tnftpd ([\w._+-]+)\) ready\.\r\n +220 ([-\w_.]+) FTP server \(LundFTPD ([\d.]+) .*\) ready\.\r\n +220 HD316\r FTP server\(Version([\d.]+)\) ready\.\r\n +220 ([\w._-]+)\r FTP server\(Version([\w._-]+)\) ready\.\r\n +220 (\w+) IBM Infoprint (Color |)(\d+) FTP Server ([\w.]+) ready\.\r\n +220 ([\w._-]+) IBM Infoprint (\w+) FTP Server ([\w.]+) ready\.\r\n +220 ShareIt FTP Server ([\d.]+) \(WINCE\) Ready\.\r\n +220 ShareIt FTP Pro ([\d.]+) \(WINCE\) Ready\.\r\n +220 ISOS FTP Server for Upgrade Purpose \(([\d.]+)\) ready\r\n +220 PV11 FTP Server ready\r\n +220 Alize Session Manager FTP Server\r\n +220-FTP Server ready\r\n220-Welcome to the Sambar FTP Server\r\r\n +220 SINA FTPD \(Version ([-\d.]+)\).*\r\n +220 DataHive FTP Server ([\d.]+) Ready\.\r\n +220--- AlterVista FTP, based on Pure-FTPd --\r\n +220 Welcome to the ADI Convergence Galaxy update FTP server v([\d.]+)\.\r\n +421 You are not permitted to make this connection\.\r\n +220 copier2FTP server ready\.\r\n +220 DrayTek FTP version ([\d.]+)\r\n +220 ([-\w_.]+) FTP server ready \(mod_ftpd/([\d.]+)\)\r\n +220 The Avalaunch FTP system -- enter user name\r\n +220 Server 47 FTP service\. Welcome\.\r\n +match ftp m%^220-loading\.\.\r\n220-\| W e L c O m E @ SFXP\|=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\|\r\n% p/SwiftFXP/ +220 Z-FTP\r\n +220 ([-/.+\w_]+) Dell ([-/.+\w ]+) FTP Server ([\w._-]+) ready\.\r\n +220 ([-/.+\w_]+) Dell Wireless Printer Adapter ([\w._-]+) FTP Server ready\.\r\n +220 ([-/.+\w_]+) Dell Laser Printer ([-/.+\w ]+) FTP Server ([\w._-]+) ready\.\r\n +220 Dell Laser Printer ([\w._-]+)\r\n +220 Dell Color Laser ([\w._-]+)\r\n +220 Dell ([\w._-]+) Color Laser\r\n +220 Dell MFP Laser ([\w._-]+)\r\n +220 Plan 9 FTP server ready\r\n +220-\+----------------------\[ UNREGISTERED VERSION \]-----------------------\+\r\n220-\| This site is running unregistered copy of RaidenFTPD ftp server \+\r\n +220 ([-\w_.]+) FTP server \(Version: Mac OS X Server ([\d.]+) - \+GSSAPI\) ready\.\r\n +220 Fastream NETFile FTP Server(?: Ready)?\r\n +220 FTP 9500 server \(Version ([\d.]+)\) ready\.\r\n| p|Nokia Smartphone 9300/9500 ftpd +220 [\d.]+ CVX FTP server \(([\d.]+)\) ready\.\r\n +220-\.:\.\r\n220-\.:+\r\n220-\.::::::::::\. e1137 FTP Server loading \.::::::::::::::\. WinSock ready \. +220 Connect\(active \d+, max active \d+\) session \d+ to RemoteScan Server ([\d.]+) on .*\r\n +220.ArGoSoft FTP Server for Windows NT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220.ArGoSoft FTP Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ArGoSoft FTP Server \.NET v\.([\d.]+) at [^\r\n]*\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220-\n220-Welcome to the HOME Edition of GlobalSCAPE CuteFTP Server, which limits\n +220 Gestetner DSm622 FTP server \(([\d.]+)\) ready\.\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220-\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\.\r\n +220 Intel NetportExpress\(tm\) 10/100 Single-port FTP server ready\.\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220- FTPshell Server Service \(Version ([-\w_.]+)\)\r\n220 \r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +220 ([-\w_.]+) FTP Server \(LiteServe\) Ready!\r\n +220 BetaFTPD ([-\w_.]+) ready\.\r\n +220 NET Disk FTP Server ready\.\r\n| p|NET Disk/NetStore ftpd +421 Service not available, closing control connection\.\r\n| p|NET Disk/NetStore ftpd +220 NETWORK HDD FTP Server ready\.\r\n +220 Blue Coat FTP Service\r\n +220 Homer Ftp Server\r\n +220 Personal FTP Server ready\r\n +220 Personal FTP Professional Server ready\r\n +220-InterVations FileCOPA FTP Server Version ([\d.]+) .*\r\n220 Trial Version\. (\d+) days remaining\r\n +220 cab Mach4/(\d+) FTP Server ready\.\r\n +220 cab A4\+/(\d+) FTP Server ready\.\r\n +220 (KM[\w+]+) FTP server \(KM FTPD version ([\d.]+)\) ready\.\r\n +220 Golden FTP Server ready v([\w._-]+)\r\n +220 Golden FTP Server Pro ready v([\w._-]+)\r\n +220 Golden FTP Server PRO ready v([\w._-]+)\r\n +220 ITC Version ([\d.]+) of [-\d]+ X Kyocera UIO UMC 10base OK \r\n +220 ActiveFax Version ([\d.]+) \(Build (\d+)\) - .*\r\n +220-Welcome to CrushFTP!\r\n220 CrushFTP Server Ready[!.]\r\n +220-Welcome to CrushFTP([\w._-]+)!\r\n220 CrushFTP Server Ready\.\r\n +220 DPO-7300 FTP Server ([\d.]+) ready\.\n +220 Welcome to WinFtp Server\.\r\n +220 IBM TCP/IP for OS/2 - FTP Server ver ([\d:.]+) on .* ready\.\r\n| p|IBM OS/2 ftpd| v/$1/ o|OS/2 +220 AudioVAULT FTP server\r\n +220 FTP/VPP Server ([\d.]+) / Current Date: [-\d]+ [\d:]+\r\n +220 Xerox WorkCentre (\w+) Ver ([\d.]+) FTP server\.\r\n +220 Xerox Phaser (\w+)\r\n +220 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220 Welcome to Network Camera FTP Server\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\r\n +220 WEB TLC FTP SERVER READY TYPE HELP FOR HELP \r\n +220 ([-/.+\w_]+) Lexmark ([-/.+\w ]+) FTP Server ([-.\w]+) ready\.\r\n +220 ([-/.+\w_]+) MarkNet ([-/.+\w ]+) FTP Server ([-.\w]+) ready\.\r\n +500 ([\w._-]+) FTP server shut down -- please try again later\.\r\n +220 \(Ver\. ([^)]+)\) [A-Z][a-z]{2} \d+ 20\d+ ready\.\r\n| p|Canon VB-C10/VB-C10R webcam ftpd +220 Cisco \(([\d.]+)\) FTP server ready\r\n +220 \"Global Site Selector FTP\"\r\n +220 ISOS FTP Server \(([\d.]+)\) ready\r\n +220- smallftpd ([\d.]+)\r\n220- check http://smallftpd\.free\.fr +220 ([-\w_.]+) GridFTP Server ([\w._-]+) \((gcc\w+), [-\d]+\) ready\.\r\n +220 ([\w._-]+) GridFTP Server ([\w._-]+) \((gcc\w+), [-\d]+\) \[Globus Toolkit ([\w._-]+)\] ready\.\r\n +220 ([-\w_.]+) (?:[A-Z]+ )?GridFTP Server ([\d.]+) (GSSAPI type Globus/GSI wu-\S+) \(gcc\w+, [-\d]+\) ready\.\r\n +220 ([-\w_.]+) FTP server \(GridFTP Server ([\d.]+) \[(GSI patch v[\d\.]+)\] (wu-\S+) .+\) ready\.\r\n +220 Welcome to the OpenDreambox FTP service\.\r\n +220 Willkomen auf Ihrer Dreambox\.\r\n +220 Welcome to the PLi dreambox FTP server\r\n +220 Welcome to the Pli Jade Server >> OpenDreambox FTP service <<\.\r\n +220 ([-\w_.]+) FTP server \(KONICA FTPD version ([\d.]+)\) ready\.\r\n +220 KONICA MINOLTA FTP server ready\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +500 OOPS: cannot locate user entry:([-\w_]+)\r\n500 OOPS: child died\r\n +220 Welcome to Freebox FTP Server\.\r\n +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220- Novonyx FTP Server for NetWare, v([\d.]+) \( +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 Hello, I'm freeFTPd ([\d.]+)\r\n +220 PrNET FTP server \(PrNET FTP ([\d.]+)\) ready\.\r\n +220-Looking up your hostname\.\.\.\r\n220-Welcome to SimpleFTPd v([\w.]+) by MagicalTux +220 IB-21E Ver ([\d.]+) FTP server\.\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 SurgeFTP ([-\w_.]+) \(Version ([\w.]+)\)\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +220 FTP Merak ([\d.-]+)\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Ipswitch Notification Server +220-?\s+SSH-[\d.]+-([a-zA-Z]+) +220 Xlight FTP Server ([\d.]+) ready\.\.\.\r\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 NetTerm FTP server ready \r\n +220 SHARP ([\w-]+) FTP server ready\.\r\n +220 SHARP ([\w-]+) Ver ([\w._-]+) FTP server\.\r\n +220 (FS-\w+) FTP server\.?\r\n +220 Scala FTP \(\"Scala InfoChannel Player \d+\" ([\w/.]+)\)\r\n +220 RICOH Aficio MP C2500 FTP server \(([\d.]+)\) ready\.\r\n +220 FTP Services for ClearPath MCP: Server version ([\d.]+)\r\n +220 Nut/OS FTP ([\d.]+) beta ready at| p|Nut/OS Demo ftpd| v/$1/ o|Nut/OS +ftpd - accept the connection from [\d.]+\n220-eDVR FTP Server v([\d.]+) \(c\)Copyright WebGate Inc\. \w+-\w+\r\n220-Welcome to (DS\w+)\r\n220 You will be disconnected after 180 seconds of inactivity\.\r\n +220 FTP-Backupspace\r\n +220-.* \(([-\w_.]+)\)\r\n Synchronet FTP Server ([-\w_.]+)-Win32 Ready\r\n +220 Welcome to (DCS-\w+) FTP Server\r\n +220 X5 FTP server \(version ([\d.]+)\) ready\.\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +220 Welcome to zFTPServer\r\n +220 FRITZ!BoxWLAN(\d+)(?:\(UI\))? FTP server ready\.\r\n +220 FRITZ!BoxFonWLAN(\w+)(?:\(\w+\))? FTP server ready\.\r\n +220 FRITZ!Box Fon WLAN (\d+) FTP server ready\.\r\n +220 FRITZ!Box(\w+)Cable\(um\) FTP server ready\.\r\n +220 RICOH Aficio MP 2510 FTP server \(([-\w_.]+)\) ready\.\r\n +220 CompuMaster SRL, WT-6500 Ftp Server \(Version ([\d.]+)\)\.\r\n +211 Hello \[[-\w_.]+\], Secure/IP Authentication Server ([-\w_.]+) at your service\.\r\n| p|OpenVMS Secure/IP ftpd +220 HP166XC V([-\w_.]+) FUSION FTP server \(Version ([-\w_.]+)\) ready\.\r\n +220 FTP Server, type 'quote help' for help\r\n +550 no more people, max connections is reached\r\n +220 Fastream IQ FTP Server\r\n +220 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 HIOKI ftp service v([\d.]+)\r\n +220 Treck FTP server ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\n +220 FTP service \(Ftpd ([\d.]+)\) ready on ([\w._-]+) at +220 Cube Station FTP server at ([\w._-]+) ready\.\r\n +220 Xerox Phaser (\w+)\r\n421 Service not available, closing control connection\r\n +220 CrossFTP Server ready for new user\.\r\n +220 ATAboy2X-\d+ FTP V([\w._-]+) ready\n +220 Belkin Network USB Hub Ver ([\w._-]+) FTP server\.\r\n +220-TCP/IP for VSE FTP Daemon Version ([\w._-]+) +220 FTP server: Lexmark Optra LaserPrinter ready\r\n +220 NSE \(AG 5000 v([\w._-]+)\) FTP server ready\r\n +220 Welcome to Easy File Sharing FTP Server!\r\n +220- \*+\r\n220- \r\n220- Welcome to Dream FTP Server\r\n220- Copyright 2002 - 2004\r\n220- BolinTech Inc\.\r\n +220 Welcome to the Netburner FTP server\.\r\n +220 NetBotz FTP Server ([\w._-]+) ready\.\r\n +220 TOSHIBA e-STUDIO5500c FTP server \(([\w._-]+)\) ready\.\r\n +220 \(WJ-HD220 FTP Server version ([\w._-]+) Ready\)\r\n +220 ([\w._-]+) FTP server \(EMC-SNAS: ([\w._-]+)\) ready\.\r\n +220-CentOS release ([\w._-]+) .*\r\n220 ProFTPD ([\w._-]+) Server \(ProFTPD Default Installation\) +220 TCAdmin FTP Server\r\n +.* klogd: klogd started: BusyBox v([\w._-]+) \(.*\)\r\nDoing BRCTL \.\.\.\r\nsetfilter br0 0 \r\n/var/tmp/act_firewall: No such file or directory\r\n +220 .*BlackJumboDog Version ([^ ]+) +220[- ] ?[Cc]rob FTP [Ss]erver [Vv]?([-.\d\w]+) +220.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +220 GlobalSCAPE Secure FTP Server\r\n +220 Mollensoft FTP Server ([^ ]+) Ready\. +220 Welcome to Ocean FTP Server. +220 4dftp .* FTP Service \(Version ([^)]+)\) +220 IBM NPS 540\+/542\+ FTP Printer Server V([\w._-]+) | p|IBM NPS 540+/542+ print server ftpd +220 ([\w._-]+) FTP server \(mmftpd \(([\w._/-]+)\)\) ready\r\n +220 C500 FTP Server ([\w._-]+) ready\.\n +220-TiMOS-\w+-([\w._-]+) cpm/hops ALCATEL ESS 7450 Copyright \(c\) 2000-2007 Alcatel-Lucent\.\r\n +220 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +220 TANDBERG Satellite Modulator SM6600\r\n +220 SUN StorEdge 3511 RAID FTP server ready\.\r\n +220 IFT ([\w._-]+) RAID FTP server ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \r\n +220-Sami FTP Server ([\w._-]+)\r\n +220 DrFTPD ([\w._-]+) http://drftpd\.org\r\n +220 DrFTPD\+ ([\w._-]+) \(\+STABLE\+\) \$Revision: (\d+) \$ http://drftpd\.org\r\n +220 Conti FTP Server ready\r\n +220 Welcome to Mobile File Service\r\n\r\n| p|HTC P4000 PDA/Phone ftpd +220 Welcome to Topfield PVR FTP server\r\n +220 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220 ADH FTP SERVER READY TYPE HELP FOR HELP \r\n +220 TDS400 FTP Service \(Version ([\w._-]+)\)\.\r\n +220 ---freeFTPd 1\.0---warFTPd 1\.65---\r\n +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220-National Instruments FTP\r\n220 Service Ready \r\n +220- __ _ __ __ ___ __\r\n220- \|__ \|_\) \|__ \|__ \| /\r\n220- \| \|\\ \|__ \|__ \| /_\r\n220-\r\n220- The fun has just begun\.\.\.\r\n220 \r\n +Permission denied\.\(Please check access control list\)\r\nPermission denied\.\(Please check access control list\)\r\n\n\rSystem administrator is connecting from [\d.]+\n\rReject the connection request !!!\n\r\n\rSystem administrator is connecting from [\d.]+\n\rReject the connection request !!!\n\r +550 Permission denied\.\(Too many user login!!!\)\r\nPermission denied\.\(Please check access control list\)\r\n +220-FTPSERVE IBM VM Level (\d)(\d+) at ([\w._-]+), [^\r\n]*\r\n220 Connection will close if idle for more than 5 minutes\.\r\n| p/IBM FTPSERVE/ o|z/VM $1.$2 +220 MeritFTP ([\d.]+) at ([\d.]+) ready\.\r\n +220 NET\+OS ([\d.]+) FTP server ready\.\r\n503 Bad sequence of commands\r\n +220 Welcome to the NSLU2 vsftp daemon\.\r\n +220- Menuet FTP Server v([\d.]+)\r\n220 Username and Password required\r\n +220 Xyratex (\w+) RAID FTP server ready\.\r\n +220 MLT-57066 Version ([\w.]+) ready\.\r\n +220 tandem FTP SERVER \w+ \(Version ([\w.]+) TANDEM \w+\) ready\.\r\n +220 ZBR-(\d+) Version ([\d.]+) ready\.\r\n +220 ([\w._-]+) pSOSystem FTP server \(@\(#\)\(#\)pVER IA/MIPS, Version ([\w._ -]+), Built on ([\d/]+)\) ready\.\r\n +220 ([\w._-]+) pSOSystem FTP server \(@\(#\)\(#\)pVER IA/PPC, Version ([\w._ -]+), Built on ([\d/]+)\) ready\.\r\n +220 ([\w._-]+) pSOSystem FTP server \(Network Utilities for /68k-MRI/([\w._-]+) - Network Utility\) ready\.\r\n +220 Star IFBD-HE05/06 FTP Server\.\r\n +220 Welcome to Baby FTP Server\r\n +220 ([\w_.-]+) FTP server \(witelcom ([\d.]+)\) ready\r\n +220 SwiFTP ready\r\n +220 SwiFTP ([\w._-]+) ready\r\n +220 EFI FTP Print server ready\.\r\n +220 infotec IS (\d+) FTP server \(([\w.]+)\) ready\.\r\n +220- Print Server ([\d.]+ \([^)]*\))\r\n220 FTP server \(Version ([^)]*)\) ready\.\r\n +220 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 Connected to IndiFTPD\r\n +220 EasyCoder FTP Server v\.([\d.]+) ready\.\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 ftp server corona \(([\w._-]+)\)\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220-Welcome to the S60 Dumb FTP Server \(dftpd\)\r\n +220-Local time is now [\d:]+\r\n220 You will be disconnected after 300 seconds of inactivity\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 BCB1COOL Server \(Proftpd FTP Server\) \[([\w._-]+)\]\r\n +220 FTP version ([\w.]+)\r\n +220 FTP version ([\w.]+)\r\n331 Enter PASS command\r\n +220 Core FTP Server Version ([\w._-]+, build \d+), installed (\d+ days ago) Registered\r\n +220-.*\r\n220 ([\w._-]+) FTP Server \(Apache/([\w._-]+) \(Linux/SUSE\)\) ready\.\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 Simple FTP daemon coming up!\r\n +220 DiskStation FTP server ready\.\r\n +220 DiskStation-([\w._-]+) FTP server ready\.\r\n +220- Ftp Site Powerd by BigFoolCat Ftp Server 1\.0 \(meishu1981@(?:163\.com|gmail\.com)\)\r\n220- Welcome to my ftp server\r\n220 \r\n +220 <\w+> Tenor Multipath Switch FTP server \(Version VxWorks([\w._-]+)\) ready\.\r\n +220 Welcome to Tenor Multipath Switch\.\r\n +220 Imagistics ZB3500080 Ver ([\w._-]+) FTP server\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 iFTP server v([\w._-]+)\n +120 The user queue is full, please try again later\.\r\n +220 Mabry \(FtpServX COM Object\) server ready\.\r\n +220 ([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 FileApp - FTP Server\r\n +220 (?:SHARP|Sharp) ([\w._-]+) Ver ([\w._+-]+) FTP server\.\r\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 -= HyNetOS FTP Server =-\r\n500 Command \(null\) not understood\r\n +230 User logged in\.\r\n214-The following commands are recognized\.\r\n214-USER\r\n214-PASS\r\n214-XPWD\r\n214-PWD\r\n214-TYPE\r\n214-PORT\r\n214-EPRT\r\n214-PASV\r\n214-EPSV\r\n214-ALLO\r\n214-STOR\r\n214-APPE\r\n214-RETR\r\n214-LIST\r\n214-NLST\r\n214-SYST\r\n214-MDTM\r\n214-XCWD\r\n214-CWD\r\n214-XCUP\r\n214-CDUP\r\n214-DELE\r\n214-XMKD\r\n214-MKD\r\n214-XRMD\r\n214-RMD\r\n214-NOOP\r\n214-RNFR\r\n214-RNTO\r\n214-REST\r\n214-SIZE\r\n214-QUIT\r\n214-HELP\r\n214-STAT\r\n214-SITE\r\n214-FEAT\r\n214-ADMIN_LOGIN\r\n214-MGET\r\n214-MPUT\r\n214-OPTS\r\n214 End of help\r\n +220-\*{53}\r\n220-Welcome to FTP\r\n220-Please use your email address and password to login\.\r\n220-If you are registered for more than one site then your login name must be: yourcompany\.com/you@youremail\.com\.\r\n220-\*{53}\r\n220-\r\n220 FTP Server Ready\r\n +220 Welcome to the ftp service\r\n +220 silex ([\w._-]+) Ver ([\w._-]+) FTP server\.\r\n +220-Tracker RIA, 12090011\r\n220-Local time ([\d:]+)\r\n220 You will be disconnected after 180 seconds of inactivity\.\r\n +220 Comau ([\w._-]+) FTP server \(Version ([\w._-]+); Sys_id:([\w._-]+)\) [\d-]+ ready\.\r\n +220 CW([\w._-]+) FTP Service \(Version ([\w._-]+)\)\.\r\n +220 CONNECT:Enterprise Gateway ([\w._-]+)\. FTP Server ready\.\.\.\r\n +220-Playstation 3 FTP \r\n220 Copyleft \(c\) \d+ multiMAN \(login as anonymous\) \r\n +220 ([\w._-]+) (BV[\w._-]+) FTP server \(V([\w._-]+)\) ready\.\r\n +220 ([\w._-]+) \(Libra FTP daemon ([\w._ -]+)\)\r\n +220 (KM-[\w._-]+) FTP server\r\n +220 Welcome to Solar FTP Server \(http://solarftp\.com\)\r\n +220 Indy FTP-Server bereit\.\r\n +220-Welcome to the Ascotel FTP server\r\n220 \r\n +220 \(none\) FTP server \(Version ([\w._-]+/OpenBSD/Linux-ftpd-[\w._-]+)\) ready\.\r\n +220 EthernetBoard OkiLAN ([\w._-]+) Ver ([\w._-]+) FTP server\.\r\n +220 Comtrend FTP firmware update utility\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220-\xa1\xee Sonic FTP Server \(Version ([\w._-]+)\)\.\r\n220-\xa1\xee +220 Aos FTP Server ready\.\r\n +220 Serveur FTP ::ffff:[\d.]+ pr\xc3\xaat\r\n +220 FreeFloat Ftp Server \(Version ([\w._-]+)\)\.\r\n +220 FreeFlow Accxes FTP server ready\r\n +220 [\d.]+ FTP Server \(Apache/([\w._-]+) \(Ubuntu\) (.*)\) ready\.\r\n +220 Welcome to This FTP Server\. Service ready for new user\.\r\n214-The following commands are recognised:\r\nUSER\r\nPASS\r\nCWD\r\nQUIT\r\nTYPE\r\nPORT\r\nRETR\r\nSTOR\r\nSTOU\r\nAPPE\r\nRNFR\r\nRNTO\r\nABOR\r\nDELE\r\nCDUP\r\nRMD\r\nMKD\r\nPWD\r\nLIST\r\nNLST\r\nHELP\r\nNOOP\r\nXCUP\r\nXCWD\r\nXPWD\r\nXRMD\r\nXMKD\r\n214 List End\.\r\n +220 Wind River FTP server ([\w._-]+) ready\.\r\n +220 FTP Server \(ZyWALL (USG \w+)\) \[::ffff:[\d.]+\]\r\n +220 Authentication_Required\r\n +220 Ftp firmware update utility\r\n +550 Permission denied ,please check access control list\r\nPermission denied\.\(Please check access control list\)\r\n +220 RIEDEL Artist FTP Server\r\n +220 (ZXDSL [\w._-]+) FTP version ([\w._-]+) ready at .*\r\n + - error: no valid servers configured\n - Fatal: error processing configuration file '/etc/proftpd/proftpd\.conf'\n +220 SoftDataCable ([\w._-]+) ready\r\n +220 Operation successful\r\n +220-\*\*\* Running an unlicensed copy of TurboFTP Server \*\*\*\r\n220 TurboFTP Server ([\w._-]+) ready\.\r\n +200 Welcome to BarracudaBackupFTPd\.\r\n +220 awaiting Input\r\n +220 Welcome to the Cisco (TelePresence MCU [\w._-]+), version ([\w._()-]+)\r\n +220 Multicraft ([\w._-]+) FTP server\r\n +220 [\d.]+ BECO FTP server \(Version ([\w._-]+)\) ready\.\r\n +220-TiMOS-B-([\w._-]+) both/hops ALCATEL SR ([\w._-]+) Copyright \(c\) \d+-\d+ Alcatel-Lucent\.\r\n220-All rights reserved\. All use subject to applicable license agreements\.\r\n220-Built on (.*) by builder in /rel[\w._-]+/[\w._-]+/[\w._-]+/panos/main\r\n220-\r\n220-This is a Maxcom, system restricted to authorized individuals\. This system is subject to monitoring\. Unauthorized users, access, and/or modification will be prosecuted\.\r\n220 FTP server ready\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server ready\r\n +220 FTP Gateway at Jana Server ready\r\n +220 ([-.\w]+) FTP proxy \(Version (\d[-.\w]+)\) ready\.\r\n +220 Frox transparent ftp proxy\. Login with username\[@host\[:port\]\]\r\n +501 Proxy unable to contact ftp server\r\n +220 ([-.+\w]+) FTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 Secure Gateway FTP server +220-Sidewinder ftp proxy\. You must login to the proxy first +220-\r\x0a220-Sidewinder ftp proxy +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy FTP Gateway ready, enter username@host\[:port\]\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 Proxy602 Gateway ready, enter user@host\[:port\]\r\n +220 Java FTP Proxy Server \(usage: USERID=user@site\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 CoolProxy FTP server & firewall\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\r\n +220 ([-\w_.]+) \(NetCache\) .*\r\n +220 Welcome to ([-\w_.]+) Ftp Proxy Service\.\r\n +220 Hi! Welcome \w+ UserGate +220 Webwasher FTP Proxy ([\d.]+) build (\d+)\r\n +220- ([-\w_.]+) PROXY-FTP server \(DeleGate/([\d.]+)\) ready\.\r\n +500 WinGate Engine Access Denied\r\n +220 IWSS FTP proxy ready\r\n +220 ezProxy FTP Proxy Server Ready \r\n +220 FTP proxy \(v([\d.]+)\) ready\r\n530 Login incorrect\. Expected USER command\r\n +220-Welcome to SpoonProxy V([\w._-]+) by Pi-Soft Consulting, LLC\r\n +220-CCProxy FTP Service\(Unregistered\)\r\n +220-CCProxy FTP Service\r\n220-you need to input userid@site as login name\.\r\n220 Example: user anonymous@ftp\.netscape\.com\r\n +220 kingate\(([\w._-]+)-win32\) ftp proxy ready\r\n +220 FileCatalyst Server Enterprise v([^\r\n]*)\r\n +220 ([\w._-]+), KEN! DSL FTP-Gateway\r\n +220 ([\w._-]+), KEN! FTP-Gateway\r\n +220 server ready - login please\r\n +421 Proxy is closed \(unknown user location\)\r\n +220 Cleo VLProxy/([\w._-]+) FTP server ready\.\r\n +200 206 \n-----------------------------\nVarnish Cache CLI ([\w._-]+)\n-----------------------------\nLinux,([\w._-]+),([^\n]*)\n\nType 'help' for command list\.\nType 'quit' to close CLI session\.\n\n +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +Access denied!\n +220 Welcome to ([-.\w]+) FTP.*\r\n +220 ([-.\w]+) [-.\w ]+ftp.*\r\n +220-([-.\w]+) [-.\w ]+ftp.*\r\n220 +220 [-.\w ]+ftp.*\r\n +220-[-.\w ]+ftp.*\r\n220 +220[- ].*ftp server.*\r\n +220-\r?\n220 - ftp +Content-Type: auth/request\n\n +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0...\0\0\0\n\x10\x03\0\0\0.\0\0\0\x15\x11\x05FSAE server ([\w._-]+)\0\0\0\x16\x12\x01................\0\0\0\x17\x13\x01FSAE_SERVER_\d+ +\0Check Point FireWall-1 authenticated RLogin server running on ([-.\w]+)\r\n\r +220 Fyre rendering server ready\n +G15 daemon HELLO +\0\0\0\t\0\0\0\x80\0\0\0\0\0\0\0\0\0\0\x042\0\0\0\x01\0\0\t_\0\0\0h +HELLO_BOT\r\n +HELLO_CONTROL_SERVER\r\n +D3\x22\x11\0\0\0\0\xc6\x11\0\0\xae\x15\0\0 +200 ([-.\w]+) GNATS server (\d[-.\w]+) ready\.\r\n +<\?xml version=\"1\.0\".*.*\n \n +\xde\xad\xad\xdeZ\x03\0\0\x7e\x9bxeV\0e\0r\0s\0i\0o\0n\0\x7c\x001\x000\x002\x004\0\x7c\0<\0R\0S\0A\0K\0e\0y\0V\0a\0l\0u\0e\0>\0<\0M\0o\0d\0u\0l\0u\0s\0>\0(?:[\w/+=]\0)+<\0/\0M\0o\0d\0u\0l\0u\0s\0>\0<\0E\0x\0p\0o\0n\0e\0n\0t\0>\0(?:[\w/+=]\0)+<\0/\0E\0x\0p\0o\0n\0e\0n\0t\0>\0<\0/\0R\0S\0A\0K\0e\0y\0V\0a\0l\0u\0e\0>\0\x7c\0 +\xde\xad\xad\xde\0\x01\0\0\xd6\xa0L\xc2\x0b\0\r\xcf\x88\"\xf2\xb7\xc9D\x81\x08\xe3\"\x16\x9a\x86\xb9\r\xcf\x88\"\xf2\xb7\xc9D\x81\x08\xe3\"\x16\x9a\x86\xb9\x04\0\0\0\0\0\0\0\0\x01\0\0\r\xcf\x88\"\xf2\xb7\xc9D\x81\x08\xe3\"\x16\x9a\x86\xb9\0\x04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +Unknown option: --inetd\nusage: git \[--version\] \[--exec-path\[=GIT_EXEC_PATH\]\] \[--html-path\] \[-p\x7c--paginate\x7c--no-pager\] \[--bare\] \[--git-dir=GIT_DIR\] \[--work-tree=GIT_WORK_TREE\] \[--help\] COMMAND \[ARGS\]\n +\xff\xfe\x01Domain 2 \(STUDENT03\)\r\n\r\n\r\n\r\n\r\n======================\r\n Main menu\r\n======================\r\n\?\) Help\r\nx\) Exit\r\n +\xff\xfe\x01Genetec Synergis Access Manager \(STUDENT03\)\r\n\r\n\r\n\r\n\r\n======================\r\n Main menu \r\n======================\r\n1\) Status\r\n\?\) Help\r\nx\) Exit\r\n +\xff\xfe\x01Genetec Directory \(STUDENT03\)\r\n\r\n\r\n\r\n\r\n======================\r\n Main menu\r\n======================\r\n1\) Status\r\n\?\) Help\r\nx\) Exit\r\n +\xff\xfe\x01Genetec Integration Service \(STUDENT03\)\r\n\r\n\r\n\r\n========================================================================\r\n Integration Service Main Menu\r\n========================================================================\r\n\r\n 1\) CONFIG\r\n Displays the configuration settings for the service\r\n\r\n 2\) STATUS\r\n Displays the status of the external systems being run by this\r\n service\.\r\n\r\n \?\) Help\r\n\r\n x\) Exit\r\n========================================================================\r\n +%%QU%%QU%%QU +GBPK\xfb\xf7n\x93W\xaf\x86\x93x@\xa9\x0e\xca\*\x9bS\0 +\nClient limit exceeded\.\n +\nConnection not allowed from .*\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +200 1400\r\n +GIOP\x01...\0\0\0\0 +\x17\0\0\0\0\t\0\0\0Heartbeat \0\0\0\x046\0\0\0\0\n\0\0\0Compressed \0\0\0\x04\x1a +\x03\0\0.*@ +\xff\xfd\x03\xff\xfb\x05.*Version:\r\nGatekeeper\(GNU\) Version\(([\d.]+)\) Ext\(.*\) Build\(.*\) Sys\(Linux .*\)\r\n +\xff\xfd.$| p|GNU Gatekeeper +\xff\xfd\x03\xff\xfb\x05\xff\xfe\x01\r\nAccess forbidden!\r\n +\x03\0\0\.\x08\x02\0\0Z~\0\"\x05%\xc0\x06\0\x08\x91J\0\x02X\x08\x11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x02\x80\x01\0 +\|/dev/[hs]\w\w\| +\| +Helpdesk Advanced ([\d.]+) License Logging Service +\0\x10\x03\x0c +\(\0\0\0hpt_stor\x01..\xbf\0\0\0\0\0\0\0\0....\.\.\.E\0\0\0\0\0\0\0\0 +\(\0\0\0\0\0\0\0..`\0\x01\xff\xff\xff\xcc\xfa\x85\0C\x1d\xe6whfnk\.\.\.E\0\0\0\0\0\0\0\0 +msg=MessageError\nresult-code=5\n +HTTP/1\.1 200 OK\r\nContent-type: text/html\r\nExpires: .*\r\nDate: .*\r\nPragma: no-cache\r\nCache-Control: no-cache\r\n\r\nJAP\n +HTTP/1.0 500\r\nContent-type: text/plain\r\n\r\nNo Scan Capable Devices Found\r\n +HTTP/1\.0 301 Moved\r\nLocation: http://\d+\.\d+\.\d+\.\d+:88\r\n +HTTP/1\.0 \d\d\d .*\r\nServer: SonicWALL\r\n +HTTP/1\.0 500 Internal Server Error\r\nDate: .*\r\nContent-type: text/html\r\nExpires: .*\r\n\r\n

500 Internal Server Error

\r\n\r\n\r\n +HTTP/1\.1 200 OK\nMax-Age: 0\nExpires: 0\nCache-Control: no-cache\nCache-Control: private\nPragma: no-cache\nContent-type: multipart/x-mixed-replace;boundary=BoundaryString\n\n--BoundaryString\n +HTTP/1\.[01] 200 OK\r\nServer: Motion/([\d.]+)\r\n +HTTP/1\.1 200 OK\r\nServer: Motion-httpd/([\d.]+)\r\n +HTTP/1\.1 \d\d\d .*\nServer: Motion/([\d.]+)\n.*\nContent-type: image/jpeg\n +HTTP/1\.1 \d\d\d .*\r\nContent-Type: text/plain\r\nServer: WPA/([-\w_.]+)\r\n\r\n +HTTP/1\.0 503 R\r\nContent-Type: text/html\r\n\r\nBusy +501 Not Implemented\n

501 Not Implemented

\nThe server has not implemented your request type\.
\n\r\n +HTTP/1\.0 200 OK\r\nContent-Type: text/html\r\n\r\n\n\n